Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::IntegrationRuntimeAuthKeys
- Inherits:
-
Object
- Object
- Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::IntegrationRuntimeAuthKeys
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/integration_runtime_auth_keys.rb
Overview
The integration runtime authentication keys.
Instance Attribute Summary collapse
-
#auth_key1 ⇒ String
The primary integration runtime authentication key.
-
#auth_key2 ⇒ String
The secondary integration runtime authentication key.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for IntegrationRuntimeAuthKeys class as Ruby Hash.
Instance Attribute Details
#auth_key1 ⇒ String
Returns The primary integration runtime authentication key.
16 17 18 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/integration_runtime_auth_keys.rb', line 16 def auth_key1 @auth_key1 end |
#auth_key2 ⇒ String
Returns The secondary integration runtime authentication key.
19 20 21 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/integration_runtime_auth_keys.rb', line 19 def auth_key2 @auth_key2 end |
Class Method Details
.mapper ⇒ Object
Mapper for IntegrationRuntimeAuthKeys class as Ruby Hash. This will be used for serialization/deserialization.
26 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 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/integration_runtime_auth_keys.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'IntegrationRuntimeAuthKeys', type: { name: 'Composite', class_name: 'IntegrationRuntimeAuthKeys', model_properties: { auth_key1: { client_side_validation: true, required: false, serialized_name: 'authKey1', type: { name: 'String' } }, auth_key2: { client_side_validation: true, required: false, serialized_name: 'authKey2', type: { name: 'String' } } } } } end |