GoogleCloudApigeeV1InstanceDeploymentStatus.fromJson constructor

GoogleCloudApigeeV1InstanceDeploymentStatus.fromJson(
  1. Map json_
)

Implementation

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