Class: Azure::ARM::SQL::Models::SyncGroupLogProperties
- Inherits:
-
Object
- Object
- Azure::ARM::SQL::Models::SyncGroupLogProperties
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/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.
27 28 29 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 27 def details @details end |
#operation_status ⇒ String
Returns OperationStatus of the sync group log.
33 34 35 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 33 def operation_status @operation_status end |
#source ⇒ String
Returns Source of the sync group log.
24 25 26 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 24 def source @source end |
#timestamp ⇒ DateTime
Returns Timestamp of the sync group log.
17 18 19 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 17 def end |
#tracing_id ⇒ Object
Returns TracingId of the sync group log.
30 31 32 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 30 def tracing_id @tracing_id end |
#type ⇒ SyncGroupLogType
include: ‘All’, ‘Error’, ‘Warning’, ‘Success’
21 22 23 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 21 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for SyncGroupLogProperties class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 40 def self.mapper() { required: false, serialized_name: 'SyncGroupLogProperties', type: { name: 'Composite', class_name: 'SyncGroupLogProperties', model_properties: { timestamp: { required: false, read_only: true, serialized_name: 'timestamp', type: { name: 'DateTime' } }, type: { required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } }, source: { required: false, read_only: true, serialized_name: 'source', type: { name: 'String' } }, details: { required: false, read_only: true, serialized_name: 'details', type: { name: 'String' } }, tracing_id: { required: false, read_only: true, serialized_name: 'tracingId', type: { name: 'String' } }, operation_status: { required: false, read_only: true, serialized_name: 'operationStatus', type: { name: 'String' } } } } } end |