SecondaryIpRangeSpec.fromJson constructor

SecondaryIpRangeSpec.fromJson(
  1. Map json_
)

Implementation

SecondaryIpRangeSpec.fromJson(core.Map json_)
    : this(
        ipPrefixLength: json_.containsKey('ipPrefixLength')
            ? json_['ipPrefixLength'] as core.int
            : null,
        outsideAllocationPublicIpRange:
            json_.containsKey('outsideAllocationPublicIpRange')
                ? json_['outsideAllocationPublicIpRange'] as core.String
                : null,
        rangeName: json_.containsKey('rangeName')
            ? json_['rangeName'] as core.String
            : null,
        requestedAddress: json_.containsKey('requestedAddress')
            ? json_['requestedAddress'] as core.String
            : null,
      );