Class: Azure::Web::Mgmt::V2018_02_01::Models::DiagnosticData

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-02-01/generated/azure_mgmt_web/models/diagnostic_data.rb

Overview

Set of data with rendering instructions

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#rendering_propertiesRendering

rendered

Returns:

  • (Rendering)

    Properties that describe how the table should be



20
21
22
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/diagnostic_data.rb', line 20

def rendering_properties
  @rendering_properties
end

#tableDataTableResponseObject

Returns Data in table form.

Returns:



16
17
18
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/diagnostic_data.rb', line 16

def table
  @table
end

Class Method Details

.mapperObject

Mapper for DiagnosticData class as Ruby Hash. This will be used for serialization/deserialization.



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/diagnostic_data.rb', line 27

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'DiagnosticData',
    type: {
      name: 'Composite',
      class_name: 'DiagnosticData',
      model_properties: {
        table: {
          client_side_validation: true,
          required: false,
          serialized_name: 'table',
          type: {
            name: 'Composite',
            class_name: 'DataTableResponseObject'
          }
        },
        rendering_properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'renderingProperties',
          type: {
            name: 'Composite',
            class_name: 'Rendering'
          }
        }
      }
    }
  }
end