GoogleCloudApigeeV1InstanceDeploymentStatus.fromJson constructor

GoogleCloudApigeeV1InstanceDeploymentStatus.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1InstanceDeploymentStatus.fromJson(core.Map json_)
  : this(
      deployedRevisions: (json_['deployedRevisions'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRevision.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      deployedRoutes: (json_['deployedRoutes'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudApigeeV1InstanceDeploymentStatusDeployedRoute.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
      instance: json_['instance'] as core.String?,
    );