GoogleCloudAiplatformV1DeployRequestEndpointConfig.fromJson constructor
GoogleCloudAiplatformV1DeployRequestEndpointConfig.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1DeployRequestEndpointConfig.fromJson(core.Map json_)
: this(
dedicatedEndpointDisabled:
json_['dedicatedEndpointDisabled'] as core.bool?,
dedicatedEndpointEnabled:
json_['dedicatedEndpointEnabled'] as core.bool?,
endpointDisplayName: json_['endpointDisplayName'] as core.String?,
endpointUserId: json_['endpointUserId'] as core.String?,
privateServiceConnectConfig:
json_.containsKey('privateServiceConnectConfig')
? GoogleCloudAiplatformV1PrivateServiceConnectConfig.fromJson(
json_['privateServiceConnectConfig']
as core.Map<core.String, core.dynamic>,
)
: null,
);