class Azure::Consumption::Mgmt::V2018_01_31::Models::ReservationDetails

reservation details resource.

Attributes

instance_id[RW]

@return [String] This identifier is the name of the resource or the fully qualified Resource ID.

reservation_id[RW]

@return [String] The reservation ID is the identifier of a reservation within a reservation order. Each reservation is the grouping for applying the benefit scope and also specifies the number of instances to which the reservation benefit can be applied to.

reservation_order_id[RW]

@return [String] The reservation order ID is the identifier for a reservation purchase. Each reservation order ID represents a single purchase transaction. A reservation order contains reservations. The reservation order specifies the VM size and region for the reservations.

reserved_hours[RW]

@return This is the total hours reserved for the day. E.g. if reservation for 1 instance was made on 1 PM, this will be 11 hours for that day and 24 hours from subsequent days.

sku_name[RW]

@return [String] This is the ARM Sku name. It can be used to join with the servicetype field in additoinalinfo in usage records.

total_reserved_quantity[RW]

@return This is the total count of instances that are reserved for the reservationid.

usage_date[RW]

@return [DateTime] The date on which consumption occurred.

used_hours[RW]

@return This is the total hours used by the instance.

Public Class Methods

mapper() click to toggle source

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

# File lib/2018-01-31/generated/azure_mgmt_consumption/models/reservation_details.rb, line 56
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ReservationDetails',
    type: {
      name: 'Composite',
      class_name: 'ReservationDetails',
      model_properties: {
        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'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        reservation_order_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.reservationOrderId',
          type: {
            name: 'String'
          }
        },
        reservation_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.reservationId',
          type: {
            name: 'String'
          }
        },
        sku_name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.skuName',
          type: {
            name: 'String'
          }
        },
        reserved_hours: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.reservedHours',
          type: {
            name: 'Number'
          }
        },
        usage_date: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.usageDate',
          type: {
            name: 'DateTime'
          }
        },
        used_hours: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.usedHours',
          type: {
            name: 'Number'
          }
        },
        instance_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.instanceId',
          type: {
            name: 'String'
          }
        },
        total_reserved_quantity: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'properties.totalReservedQuantity',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end