GoogleCloudAiplatformV1PscInterfaceConfig.fromJson constructor

GoogleCloudAiplatformV1PscInterfaceConfig.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1PscInterfaceConfig.fromJson(core.Map json_)
  : this(
      dnsPeeringConfigs: (json_['dnsPeeringConfigs'] as core.List?)
          ?.map(
            (value) => GoogleCloudAiplatformV1DnsPeeringConfig.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
      networkAttachment: json_['networkAttachment'] as core.String?,
    );