InlineCertificateIssuanceConfig.fromJson constructor
InlineCertificateIssuanceConfig.fromJson(
- Map json_
Implementation
InlineCertificateIssuanceConfig.fromJson(core.Map json_)
: this(
caPools: (json_['caPools'] as core.Map<core.String, core.dynamic>?)
?.map((key, value) => core.MapEntry(key, value as core.String)),
keyAlgorithm: json_['keyAlgorithm'] as core.String?,
lifetime: json_['lifetime'] as core.String?,
rotationWindowPercentage:
json_['rotationWindowPercentage'] as core.int?,
);