Class: Azure::ARM::SQL::Models::SyncAgentKeyProperties
- Inherits:
-
Object
- Object
- Azure::ARM::SQL::Models::SyncAgentKeyProperties
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/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
Returns Key of sync agent.
17 18 19 |
# File 'lib/generated/azure_mgmt_sql/models/sync_agent_key_properties.rb', line 17 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.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/generated/azure_mgmt_sql/models/sync_agent_key_properties.rb', line 24 def self.mapper() { required: false, serialized_name: 'SyncAgentKeyProperties', type: { name: 'Composite', class_name: 'SyncAgentKeyProperties', model_properties: { sync_agent_key: { required: false, read_only: true, serialized_name: 'syncAgentKey', type: { name: 'String' } } } } } end |