InlineCertificateIssuanceConfig.fromJson constructor

InlineCertificateIssuanceConfig.fromJson(
  1. 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?,
    );