class Azure::ServiceFabric::V6_3_0_9::Models::BackupSuspensionInfo

Describes the backup suspension details.

Attributes

is_suspended[RW]

@return [Boolean] Indicates whether periodic backup is suspended at this level or not.

suspension_inherited_from[RW]

@return [BackupSuspensionScope] Specifies the scope at which the backup suspension was applied. Possible values include: 'Invalid', 'Partition', 'Service', 'Application'

Public Class Methods

mapper() click to toggle source

Mapper for BackupSuspensionInfo class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/6.3.0.9/generated/azure_service_fabric/models/backup_suspension_info.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'BackupSuspensionInfo',
    type: {
      name: 'Composite',
      class_name: 'BackupSuspensionInfo',
      model_properties: {
        is_suspended: {
          client_side_validation: true,
          required: false,
          serialized_name: 'IsSuspended',
          type: {
            name: 'Boolean'
          }
        },
        suspension_inherited_from: {
          client_side_validation: true,
          required: false,
          serialized_name: 'SuspensionInheritedFrom',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end