GoogleCloudApigeeV1TargetServer.fromJson constructor

GoogleCloudApigeeV1TargetServer.fromJson(
  1. Map json_
)

Implementation

GoogleCloudApigeeV1TargetServer.fromJson(core.Map json_)
  : this(
      description: json_['description'] as core.String?,
      host: json_['host'] as core.String?,
      isEnabled: json_['isEnabled'] as core.bool?,
      name: json_['name'] as core.String?,
      port: json_['port'] as core.int?,
      protocol: json_['protocol'] as core.String?,
      sSLInfo:
          json_.containsKey('sSLInfo')
              ? GoogleCloudApigeeV1TlsInfo.fromJson(
                json_['sSLInfo'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );