GoogleCloudAiplatformV1Probe.fromJson constructor
GoogleCloudAiplatformV1Probe.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1Probe.fromJson(core.Map json_)
: this(
exec: json_.containsKey('exec')
? GoogleCloudAiplatformV1ProbeExecAction.fromJson(
json_['exec'] as core.Map<core.String, core.dynamic>)
: null,
periodSeconds: json_.containsKey('periodSeconds')
? json_['periodSeconds'] as core.int
: null,
timeoutSeconds: json_.containsKey('timeoutSeconds')
? json_['timeoutSeconds'] as core.int
: null,
);