class Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogProperties
Attributes
details[RW]
@return [String] Details of the sync group log.
operation_status[RW]
@return [String] OperationStatus of the sync group log.
source[RW]
@return [String] Source of the sync group log.
timestamp[RW]
@return [DateTime] Timestamp of the sync group log.
tracing_id[RW]
@return TracingId of the sync group log.
type[RW]
@return [SyncGroupLogType] Type of the sync group log. Possible values include: 'All', 'Error', 'Warning', 'Success'
Private Class Methods
mapper()
click to toggle source
Mapper for SyncGroupLogProperties
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_group_log_properties.rb, line 39 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SyncGroupLogProperties', type: { name: 'Composite', class_name: 'SyncGroupLogProperties', model_properties: { timestamp: { client_side_validation: true, required: false, read_only: true, serialized_name: 'timestamp', type: { name: 'DateTime' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, source: { client_side_validation: true, required: false, read_only: true, serialized_name: 'source', type: { name: 'String' } }, details: { client_side_validation: true, required: false, read_only: true, serialized_name: 'details', type: { name: 'String' } }, tracing_id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'tracingId', type: { name: 'String' } }, operation_status: { client_side_validation: true, required: false, read_only: true, serialized_name: 'operationStatus', type: { name: 'String' } } } } } end