Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterIdentityUserAssignedIdentitiesValue
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterIdentityUserAssignedIdentitiesValue
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_identity_user_assigned_identities_value.rb
Overview
Model object.
Instance Attribute Summary collapse
-
#client_id ⇒ String
The client id of user assigned identity.
-
#principal_id ⇒ String
The principal id of user assigned identity.
-
#tenant_id ⇒ String
The tenant id of user assigned identity.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ClusterIdentityUserAssignedIdentitiesValue class as Ruby Hash.
Instance Attribute Details
#client_id ⇒ String
Returns The client id of user assigned identity.
20 21 22 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_identity_user_assigned_identities_value.rb', line 20 def client_id @client_id end |
#principal_id ⇒ String
Returns The principal id of user assigned identity.
17 18 19 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_identity_user_assigned_identities_value.rb', line 17 def principal_id @principal_id end |
#tenant_id ⇒ String
Returns The tenant id of user assigned identity.
23 24 25 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_identity_user_assigned_identities_value.rb', line 23 def tenant_id @tenant_id end |
Class Method Details
.mapper ⇒ Object
Mapper for ClusterIdentityUserAssignedIdentitiesValue 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/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_identity_user_assigned_identities_value.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ClusterIdentity_userAssignedIdentitiesValue', type: { name: 'Composite', class_name: 'ClusterIdentityUserAssignedIdentitiesValue', 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' } }, tenant_id: { client_side_validation: true, required: false, serialized_name: 'tenantId', type: { name: 'String' } } } } } end |