Class: Azure::CognitiveServices::Mgmt::V2017_04_18::Models::UserAssignedIdentity
- Inherits:
-
Object
- Object
- Azure::CognitiveServices::Mgmt::V2017_04_18::Models::UserAssignedIdentity
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-04-18/generated/azure_mgmt_cognitive_services/models/user_assigned_identity.rb
Overview
User-assigned managed identity.
Instance Attribute Summary collapse
-
#client_id ⇒ String
Client App Id associated with this identity.
-
#principal_id ⇒ String
this Identity.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for UserAssignedIdentity class as Ruby Hash.
Instance Attribute Details
#client_id ⇒ String
Returns Client App Id associated with this identity.
20 21 22 |
# File 'lib/2017-04-18/generated/azure_mgmt_cognitive_services/models/user_assigned_identity.rb', line 20 def client_id @client_id end |
#principal_id ⇒ String
this Identity.
17 18 19 |
# File 'lib/2017-04-18/generated/azure_mgmt_cognitive_services/models/user_assigned_identity.rb', line 17 def principal_id @principal_id end |
Class Method Details
.mapper ⇒ Object
Mapper for UserAssignedIdentity class as Ruby Hash. This will be used for serialization/deserialization.
27 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 |
# File 'lib/2017-04-18/generated/azure_mgmt_cognitive_services/models/user_assigned_identity.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'UserAssignedIdentity', type: { name: 'Composite', class_name: 'UserAssignedIdentity', model_properties: { principal_id: { client_side_validation: true, required: false, serialized_name: 'principalId', type: { name: 'String' } }, client_id: { client_side_validation: true, required: false, serialized_name: 'clientId', type: { name: 'String' } } } } } end |