Class: Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogProperties

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

Class Method Summary collapse

Instance Attribute Details

#detailsString

Returns Details of the sync group log.

Returns:

  • (String)

    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_statusString

Returns OperationStatus of the sync group log.

Returns:

  • (String)

    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

#sourceString

Returns Source of the sync group log.

Returns:

  • (String)

    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

#timestampDateTime

Returns Timestamp of the sync group log.

Returns:

  • (DateTime)

    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
  @timestamp
end

#tracing_idObject

Returns TracingId of the sync group log.

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

#typeSyncGroupLogType

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

Returns:



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

.mapperObject

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