class Azure::NetApp::Mgmt::V2020_07_01::Models::Snapshot

Snapshot of a Volume

Attributes

created[RW]

@return [DateTime] name. The creation date of the snapshot

id[RW]

@return [String] Resource Id

location[RW]

@return [String] Resource location

name[RW]

@return [String] Resource name

provisioning_state[RW]

@return [String] Azure lifecycle management

snapshot_id[RW]

@return [String] snapshotId. UUID v4 used to identify the Snapshot

type[RW]

@return [String] Resource type

Public Class Methods

mapper() click to toggle source

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

# File lib/2020-07-01/generated/azure_mgmt_netapp/models/snapshot.rb, line 41
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'snapshot',
    type: {
      name: 'Composite',
      class_name: 'Snapshot',
      model_properties: {
        location: {
          client_side_validation: true,
          required: true,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        snapshot_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.snapshotId',
          constraints: {
            MaxLength: 36,
            MinLength: 36,
            Pattern: '^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'
          },
          type: {
            name: 'String'
          }
        },
        created: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.created',
          type: {
            name: 'DateTime'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end