class Azure::Resources::Mgmt::V2016_06_01::Models::TenantIdDescription

Tenant Id information.

Attributes

id[RW]

@return [String] The fully qualified ID of the tenant. For example, /tenants/00000000-0000-0000-0000-000000000000.

tenant_id[RW]

@return [String] The tenant ID. For example, 00000000-0000-0000-0000-000000000000.

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-06-01/generated/azure_mgmt_resources/models/tenant_id_description.rb, line 28
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'TenantIdDescription',
    type: {
      name: 'Composite',
      class_name: 'TenantIdDescription',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        tenant_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'tenantId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end