class Azure::Cosmosdb::Mgmt::V2019_08_01::Models::ARMProxyResource

The resource model definition for a ARM proxy resource. It will have everything other than required location and tags

Attributes

id[RW]

@return [String] The unique resource identifier of the database account.

name[RW]

@return [String] The name of the database account.

type[RW]

@return [String] The type of Azure resource.

Public Class Methods

mapper() click to toggle source

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

# File lib/2019-08-01/generated/azure_mgmt_cosmosdb/models/armproxy_resource.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ARMProxyResource',
    type: {
      name: 'Composite',
      class_name: 'ARMProxyResource',
      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'
          }
        }
      }
    }
  }
end