Class: Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentKeyProperties
- Inherits:
-
Object
- Object
- Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentKeyProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_agent_key_properties.rb
Overview
Properties of an Azure SQL Database sync agent key.
Instance Attribute Summary collapse
-
#sync_agent_key ⇒ String
Key of sync agent.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SyncAgentKeyProperties class as Ruby Hash.
Instance Attribute Details
#sync_agent_key ⇒ String
16 17 18 |
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_agent_key_properties.rb', line 16 def sync_agent_key @sync_agent_key end |
Class Method Details
.mapper ⇒ Object
Mapper for SyncAgentKeyProperties class as Ruby Hash. This will be used for serialization/deserialization.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_agent_key_properties.rb', line 23 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SyncAgentKeyProperties', type: { name: 'Composite', class_name: 'SyncAgentKeyProperties', model_properties: { sync_agent_key: { client_side_validation: true, required: false, read_only: true, serialized_name: 'syncAgentKey', type: { name: 'String' } } } } } end |