GoogleCloudAiplatformV1KeepAliveProbe.fromJson constructor
GoogleCloudAiplatformV1KeepAliveProbe.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1KeepAliveProbe.fromJson(core.Map json_)
: this(
httpGet: json_.containsKey('httpGet')
? GoogleCloudAiplatformV1KeepAliveProbeHttpGet.fromJson(
json_['httpGet'] as core.Map<core.String, core.dynamic>,
)
: null,
maxSeconds: json_['maxSeconds'] as core.int?,
);