ManagementServer.fromJson constructor

ManagementServer.fromJson(
  1. Map json_
)

Implementation

ManagementServer.fromJson(core.Map json_)
    : this(
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        description: json_.containsKey('description')
            ? json_['description'] as core.String
            : null,
        etag: json_.containsKey('etag') ? json_['etag'] as core.String : null,
        labels: json_.containsKey('labels')
            ? (json_['labels'] as core.Map<core.String, core.dynamic>).map(
                (key, value) => core.MapEntry(
                  key,
                  value as core.String,
                ),
              )
            : null,
        managementUri: json_.containsKey('managementUri')
            ? ManagementURI.fromJson(
                json_['managementUri'] as core.Map<core.String, core.dynamic>)
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        networks: json_.containsKey('networks')
            ? (json_['networks'] as core.List)
                .map((value) => NetworkConfig.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        oauth2ClientId: json_.containsKey('oauth2ClientId')
            ? json_['oauth2ClientId'] as core.String
            : null,
        state:
            json_.containsKey('state') ? json_['state'] as core.String : null,
        type: json_.containsKey('type') ? json_['type'] as core.String : null,
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
        workforceIdentityBasedManagementUri:
            json_.containsKey('workforceIdentityBasedManagementUri')
                ? WorkforceIdentityBasedManagementURI.fromJson(
                    json_['workforceIdentityBasedManagementUri']
                        as core.Map<core.String, core.dynamic>)
                : null,
        workforceIdentityBasedOauth2ClientId:
            json_.containsKey('workforceIdentityBasedOauth2ClientId')
                ? WorkforceIdentityBasedOAuth2ClientID.fromJson(
                    json_['workforceIdentityBasedOauth2ClientId']
                        as core.Map<core.String, core.dynamic>)
                : null,
      );