Class: Azure::ARM::DevTestLabs::Models::IdentityProperties

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

Overview

IdentityProperties

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#client_secret_urlString

Returns The client secret URL of the identity.

Returns:

  • (String)

    The client secret URL of the identity.



26
27
28
# File 'lib/generated/azure_mgmt_devtestlabs/models/identity_properties.rb', line 26

def client_secret_url
  @client_secret_url
end

#principal_idString

Returns The principal id of resource identity.

Returns:

  • (String)

    The principal id of resource identity.



20
21
22
# File 'lib/generated/azure_mgmt_devtestlabs/models/identity_properties.rb', line 20

def principal_id
  @principal_id
end

#tenant_idString

Returns The tenant identifier of resource.

Returns:

  • (String)

    The tenant identifier of resource.



23
24
25
# File 'lib/generated/azure_mgmt_devtestlabs/models/identity_properties.rb', line 23

def tenant_id
  @tenant_id
end

#typeString

Returns Managed identity.

Returns:

  • (String)

    Managed identity.



17
18
19
# File 'lib/generated/azure_mgmt_devtestlabs/models/identity_properties.rb', line 17

def type
  @type
end

Class Method Details

.mapperObject

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



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
70
71
72
# File 'lib/generated/azure_mgmt_devtestlabs/models/identity_properties.rb', line 33

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