Class: Azure::ServiceFabric::Mgmt::V2018_02_01::Models::AzureActiveDirectory
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::Mgmt::V2018_02_01::Models::AzureActiveDirectory
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_service_fabric/models/azure_active_directory.rb
Overview
The settings to enable AAD authentication on the cluster.
Instance Attribute Summary collapse
-
#client_application ⇒ String
Azure active directory client application id.
-
#cluster_application ⇒ String
Azure active directory cluster application id.
-
#tenant_id ⇒ String
Azure active directory tenant id.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureActiveDirectory class as Ruby Hash.
Instance Attribute Details
#client_application ⇒ String
Returns Azure active directory client application id.
22 23 24 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/azure_active_directory.rb', line 22 def client_application @client_application end |
#cluster_application ⇒ String
Returns Azure active directory cluster application id.
19 20 21 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/azure_active_directory.rb', line 19 def cluster_application @cluster_application end |
#tenant_id ⇒ String
Returns Azure active directory tenant id.
16 17 18 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/azure_active_directory.rb', line 16 def tenant_id @tenant_id end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureActiveDirectory class as Ruby Hash. This will be used for serialization/deserialization.
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 59 60 61 62 63 64 65 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/azure_active_directory.rb', line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AzureActiveDirectory', type: { name: 'Composite', class_name: 'AzureActiveDirectory', model_properties: { tenant_id: { client_side_validation: true, required: false, serialized_name: 'tenantId', type: { name: 'String' } }, cluster_application: { client_side_validation: true, required: false, serialized_name: 'clusterApplication', type: { name: 'String' } }, client_application: { client_side_validation: true, required: false, serialized_name: 'clientApplication', type: { name: 'String' } } } } } end |