GoogleCloudOsconfigV2PolicyOrchestrator.fromJson constructor
GoogleCloudOsconfigV2PolicyOrchestrator.fromJson(
- Map json_
Implementation
GoogleCloudOsconfigV2PolicyOrchestrator.fromJson(core.Map json_)
: this(
action: json_['action'] as core.String?,
createTime: json_['createTime'] as core.String?,
description: json_['description'] as core.String?,
etag: json_['etag'] as core.String?,
labels: (json_['labels'] as core.Map<core.String, core.dynamic>?)?.map(
(key, value) => core.MapEntry(key, value as core.String),
),
name: json_['name'] as core.String?,
orchestratedResource: json_.containsKey('orchestratedResource')
? GoogleCloudOsconfigV2OrchestratedResource.fromJson(
json_['orchestratedResource']
as core.Map<core.String, core.dynamic>,
)
: null,
orchestrationScope: json_.containsKey('orchestrationScope')
? GoogleCloudOsconfigV2OrchestrationScope.fromJson(
json_['orchestrationScope']
as core.Map<core.String, core.dynamic>,
)
: null,
orchestrationState: json_.containsKey('orchestrationState')
? GoogleCloudOsconfigV2PolicyOrchestratorOrchestrationState.fromJson(
json_['orchestrationState']
as core.Map<core.String, core.dynamic>,
)
: null,
reconciling: json_['reconciling'] as core.bool?,
state: json_['state'] as core.String?,
updateTime: json_['updateTime'] as core.String?,
);