Class: Azure::ARM::SQL::Models::SyncGroupLogProperties

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Attribute Details

#detailsString

Returns Details of the sync group log.

Returns:

  • (String)

    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_statusString

Returns OperationStatus of the sync group log.

Returns:

  • (String)

    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

#sourceString

Returns Source of the sync group log.

Returns:

  • (String)

    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

#timestampDateTime

Returns Timestamp of the sync group log.

Returns:

  • (DateTime)

    Timestamp of the sync group log.



17
18
19
# File 'lib/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 17

def timestamp
  @timestamp
end

#tracing_idObject

Returns TracingId of the sync group log.

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

#typeSyncGroupLogType

include: ‘All’, ‘Error’, ‘Warning’, ‘Success’

Returns:



21
22
23
# File 'lib/generated/azure_mgmt_sql/models/sync_group_log_properties.rb', line 21

def type
  @type
end

Class Method Details

.mapperObject

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