Class: Azure::DataMigration::Mgmt::V2018_04_19::Models::AzureActiveDirectoryApp
- Inherits:
-
Object
- Object
- Azure::DataMigration::Mgmt::V2018_04_19::Models::AzureActiveDirectoryApp
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-19/generated/azure_mgmt_data_migration/models/azure_active_directory_app.rb
Overview
Azure Active Directory Application
Instance Attribute Summary collapse
-
#app_key ⇒ String
Application.
-
#application_id ⇒ String
Application.
-
#tenant_id ⇒ String
Tenant id of the customer.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureActiveDirectoryApp class as Ruby Hash.
Instance Attribute Details
#app_key ⇒ String
Application
21 22 23 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/azure_active_directory_app.rb', line 21 def app_key @app_key end |
#application_id ⇒ String
Application
17 18 19 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/azure_active_directory_app.rb', line 17 def application_id @application_id end |
#tenant_id ⇒ String
Returns Tenant id of the customer.
24 25 26 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/azure_active_directory_app.rb', line 24 def tenant_id @tenant_id end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureActiveDirectoryApp 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 |
# File 'lib/2018-04-19/generated/azure_mgmt_data_migration/models/azure_active_directory_app.rb', line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AzureActiveDirectoryApp', type: { name: 'Composite', class_name: 'AzureActiveDirectoryApp', model_properties: { application_id: { client_side_validation: true, required: true, serialized_name: 'applicationId', type: { name: 'String' } }, app_key: { client_side_validation: true, required: true, serialized_name: 'appKey', type: { name: 'String' } }, tenant_id: { client_side_validation: true, required: true, serialized_name: 'tenantId', type: { name: 'String' } } } } } end |