Class: Azure::ARM::Resources::Models::Identity

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_resources/models/identity.rb

Overview

Identity for the resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#principal_idString

Returns The principal ID of resource identity.

Returns:

  • (String)

    The principal ID of resource identity.



17
18
19
# File 'lib/generated/azure_mgmt_resources/models/identity.rb', line 17

def principal_id
  @principal_id
end

#tenant_idString

Returns The tenant ID of resource.

Returns:

  • (String)

    The tenant ID of resource.



20
21
22
# File 'lib/generated/azure_mgmt_resources/models/identity.rb', line 20

def tenant_id
  @tenant_id
end

#typeResourceIdentityType

include: ‘SystemAssigned’

Returns:



24
25
26
# File 'lib/generated/azure_mgmt_resources/models/identity.rb', line 24

def type
  @type
end

Class Method Details

.mapperObject

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



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/generated/azure_mgmt_resources/models/identity.rb', line 31

def self.mapper()
  {
    required: false,
    serialized_name: 'Identity',
    type: {
      name: 'Composite',
      class_name: 'Identity',
      model_properties: {
        principal_id: {
          required: false,
          read_only: true,
          serialized_name: 'principalId',
          type: {
            name: 'String'
          }
        },
        tenant_id: {
          required: false,
          read_only: true,
          serialized_name: 'tenantId',
          type: {
            name: 'String'
          }
        },
        type: {
          required: false,
          serialized_name: 'type',
          type: {
            name: 'Enum',
            module: 'ResourceIdentityType'
          }
        }
      }
    }
  }
end