Class: Azure::ARM::SQL::Models::ResourceIdentity

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

Overview

Azure Active Directory identity configuration for a resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#principal_idObject

Returns The Azure Active Directory principal id.

Returns:

  • The Azure Active Directory principal id.



17
18
19
# File 'lib/generated/azure_mgmt_sql/models/resource_identity.rb', line 17

def principal_id
  @principal_id
end

#tenant_idObject

Returns The Azure Active Directory tenant id.

Returns:

  • The Azure Active Directory tenant id.



25
26
27
# File 'lib/generated/azure_mgmt_sql/models/resource_identity.rb', line 25

def tenant_id
  @tenant_id
end

#typeIdentityType

in order to automatically create and assign an Azure Active Directory principal for the resource. Possible values include: ‘SystemAssigned’

Returns:

  • (IdentityType)

    The identity type. Set this to ‘SystemAssigned’



22
23
24
# File 'lib/generated/azure_mgmt_sql/models/resource_identity.rb', line 22

def type
  @type
end

Class Method Details

.mapperObject

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



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_sql/models/resource_identity.rb', line 32

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