Class: Azure::SQL::Mgmt::V2015_05_01_preview::Models::ResourceIdentity

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2015-05-01-preview/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.



16
17
18
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/resource_identity.rb', line 16

def principal_id
  @principal_id
end

#tenant_idObject

Returns The Azure Active Directory tenant id.

Returns:

  • The Azure Active Directory tenant id.



24
25
26
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/resource_identity.rb', line 24

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’



21
22
23
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/resource_identity.rb', line 21

def type
  @type
end

Class Method Details

.mapperObject

Mapper for ResourceIdentity 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
67
68
69
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/resource_identity.rb', line 31

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