Class: Azure::ContainerService::Mgmt::V2020_09_01::Models::ManagedClusterIdentityUserAssignedIdentitiesValue

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-09-01/generated/azure_mgmt_container_service/models/managed_cluster_identity_user_assigned_identities_value.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#client_idString

Returns The client id of user assigned identity.

Returns:

  • (String)

    The client id of user assigned identity.



20
21
22
# File 'lib/2020-09-01/generated/azure_mgmt_container_service/models/managed_cluster_identity_user_assigned_identities_value.rb', line 20

def client_id
  @client_id
end

#principal_idString

Returns The principal id of user assigned identity.

Returns:

  • (String)

    The principal id of user assigned identity.



17
18
19
# File 'lib/2020-09-01/generated/azure_mgmt_container_service/models/managed_cluster_identity_user_assigned_identities_value.rb', line 17

def principal_id
  @principal_id
end

Class Method Details

.mapperObject

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



28
29
30
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
# File 'lib/2020-09-01/generated/azure_mgmt_container_service/models/managed_cluster_identity_user_assigned_identities_value.rb', line 28

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ManagedClusterIdentity_userAssignedIdentitiesValue',
    type: {
      name: 'Composite',
      class_name: 'ManagedClusterIdentityUserAssignedIdentitiesValue',
      model_properties: {
        principal_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'principalId',
          type: {
            name: 'String'
          }
        },
        client_id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'clientId',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end