Class: Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogProperties
- Inherits:
-
Object
- Object
- Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_group_log_properties.rb
Overview
Properties of an Azure SQL Database sync group log.
Instance Attribute Summary collapse
-
#details ⇒ String
Details of the sync group log.
-
#operation_status ⇒ String
OperationStatus of the sync group log.
-
#source ⇒ String
Source of the sync group log.
-
#timestamp ⇒ DateTime
Timestamp of the sync group log.
-
#tracing_id ⇒ Object
TracingId of the sync group log.
-
#type ⇒ SyncGroupLogType
include: ‘All’, ‘Error’, ‘Warning’, ‘Success’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SyncGroupLogProperties class as Ruby Hash.
Instance Attribute Details
#details ⇒ String
Returns Details of the sync group log.
26 27 28 |
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 26 def details @details end |
#operation_status ⇒ String
Returns OperationStatus of the sync group log.
32 33 34 |
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 32 def operation_status @operation_status end |
#source ⇒ String
Returns Source of the sync group log.
23 24 25 |
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 23 def source @source end |
#timestamp ⇒ DateTime
Returns Timestamp of the sync group log.
16 17 18 |
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 16 def @timestamp end |
#tracing_id ⇒ Object
Returns TracingId of the sync group log.
29 30 31 |
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 29 def tracing_id @tracing_id end |
#type ⇒ SyncGroupLogType
include: ‘All’, ‘Error’, ‘Warning’, ‘Success’
20 21 22 |
# File 'lib/2015-05-01-preview/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 20 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for SyncGroupLogProperties class as Ruby Hash. This will be used for serialization/deserialization.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# 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 |