Class: Azure::ARM::SQL::Models::ResourceIdentity
- Inherits:
-
Object
- Object
- Azure::ARM::SQL::Models::ResourceIdentity
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_sql/models/resource_identity.rb
Overview
Azure Active Directory identity configuration for a resource.
Instance Attribute Summary collapse
-
#principal_id ⇒ Object
The Azure Active Directory principal id.
-
#tenant_id ⇒ Object
The Azure Active Directory tenant id.
-
#type ⇒ IdentityType
in order to automatically create and assign an Azure Active Directory principal for the resource.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ResourceIdentity class as Ruby Hash.
Instance Attribute Details
#principal_id ⇒ Object
Returns The Azure Active Directory principal id.
17 18 19 |
# File 'lib/generated/azure_mgmt_sql/models/resource_identity.rb', line 17 def principal_id @principal_id end |
#tenant_id ⇒ Object
Returns The Azure Active Directory tenant id.
25 26 27 |
# File 'lib/generated/azure_mgmt_sql/models/resource_identity.rb', line 25 def tenant_id @tenant_id end |
#type ⇒ IdentityType
in order to automatically create and assign an Azure Active Directory principal for the resource. Possible values include: ‘SystemAssigned’
22 23 24 |
# File 'lib/generated/azure_mgmt_sql/models/resource_identity.rb', line 22 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ResourceIdentity class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_sql/models/resource_identity.rb', line 32 def self.mapper() { required: false, serialized_name: 'ResourceIdentity', type: { name: 'Composite', class_name: 'ResourceIdentity', model_properties: { principal_id: { required: false, read_only: true, serialized_name: 'principalId', type: { name: 'String' } }, type: { required: false, serialized_name: 'type', type: { name: 'String' } }, tenant_id: { required: false, read_only: true, serialized_name: 'tenantId', type: { name: 'String' } } } } } end |