class Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroup
Attributes
conflict_resolution_policy[RW]
@return [SyncConflictResolutionPolicy] Conflict resolution policy of the sync group. Possible values include: 'HubWin', 'MemberWin'
hub_database_password[RW]
@return [String] Password for the sync group hub database credential.
hub_database_user_name[RW]
@return [String] User name for the sync group hub database credential.
interval[RW]
@return [Integer] Sync interval of the sync group.
last_sync_time[RW]
@return [DateTime] Last sync time of the sync group.
schema[RW]
@return [SyncGroupSchema] Sync schema of the sync group.
sync_database_id[RW]
@return [String] ARM resource id of the sync database in the sync group.
sync_state[RW]
@return [SyncGroupState] Sync state of the sync group. Possible values include: 'NotReady', 'Error', 'Warning', 'Progressing', 'Good'
Private Class Methods
mapper()
click to toggle source
Mapper for SyncGroup
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_group.rb, line 47 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SyncGroup', type: { name: 'Composite', class_name: 'SyncGroup', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, interval: { client_side_validation: true, required: false, serialized_name: 'properties.interval', type: { name: 'Number' } }, last_sync_time: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.lastSyncTime', type: { name: 'DateTime' } }, conflict_resolution_policy: { client_side_validation: true, required: false, serialized_name: 'properties.conflictResolutionPolicy', type: { name: 'String' } }, sync_database_id: { client_side_validation: true, required: false, serialized_name: 'properties.syncDatabaseId', type: { name: 'String' } }, hub_database_user_name: { client_side_validation: true, required: false, serialized_name: 'properties.hubDatabaseUserName', type: { name: 'String' } }, hub_database_password: { client_side_validation: true, required: false, serialized_name: 'properties.hubDatabasePassword', type: { name: 'String' } }, sync_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.syncState', type: { name: 'String' } }, schema: { client_side_validation: true, required: false, serialized_name: 'properties.schema', type: { name: 'Composite', class_name: 'SyncGroupSchema' } } } } } end