ComputeInstanceBackupPlanProperties.fromJson constructor

ComputeInstanceBackupPlanProperties.fromJson(
  1. 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?,
    );