GoogleCloudAiplatformV1ModelDeploymentMonitoringObjectiveConfig.fromJson constructor
GoogleCloudAiplatformV1ModelDeploymentMonitoringObjectiveConfig.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1ModelDeploymentMonitoringObjectiveConfig.fromJson(
core.Map json_)
: this(
deployedModelId: json_.containsKey('deployedModelId')
? json_['deployedModelId'] as core.String
: null,
objectiveConfig: json_.containsKey('objectiveConfig')
? GoogleCloudAiplatformV1ModelMonitoringObjectiveConfig.fromJson(
json_['objectiveConfig']
as core.Map<core.String, core.dynamic>)
: null,
);