IngressIpAllowlistConfig.fromJson constructor

IngressIpAllowlistConfig.fromJson(
  1. Map json_
)

Implementation

IngressIpAllowlistConfig.fromJson(core.Map json_)
  : this(
      allowlistRules: (json_['allowlistRules'] as core.List?)
          ?.map(
            (value) => IngressIpAllowlistRule.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      enabled: json_['enabled'] as core.bool?,
      googleServicesEnabled: json_['googleServicesEnabled'] as core.bool?,
    );