class Azure::ServiceFabric::V6_3_0_9::Models::BackupPartitionDescription

Describes the parameters for triggering partition's backup.

Attributes

backup_storage[RW]

@return [BackupStorageDescription] Specifies the details of the backup storage where to save the backup.

Public Class Methods

mapper() click to toggle source

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

# File lib/6.3.0.9/generated/azure_service_fabric/models/backup_partition_description.rb, line 24
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'BackupPartitionDescription',
    type: {
      name: 'Composite',
      class_name: 'BackupPartitionDescription',
      model_properties: {
        backup_storage: {
          client_side_validation: true,
          required: false,
          serialized_name: 'BackupStorage',
          type: {
            name: 'Composite',
            polymorphic_discriminator: 'StorageKind',
            uber_parent: 'BackupStorageDescription',
            class_name: 'BackupStorageDescription'
          }
        }
      }
    }
  }
end