ComputeInstanceBackupPlanProperties.fromJson constructor
ComputeInstanceBackupPlanProperties.fromJson(
- Map json_
Implementation
ComputeInstanceBackupPlanProperties.fromJson(core.Map json_)
: this(
bootDiskOnly: json_['bootDiskOnly'] as core.bool?,
diskExclusionLabels: json_.containsKey('diskExclusionLabels')
? DiskExclusionLabels.fromJson(
json_['diskExclusionLabels']
as core.Map<core.String, core.dynamic>,
)
: null,
guestFlush: json_['guestFlush'] as core.bool?,
);