Class: Azure::ARM::Web::Models::HostingEnvironmentDiagnostics

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/generated/azure_mgmt_web/models/hosting_environment_diagnostics.rb

Overview

Diagnostics for a hosting environment (App Service Environment)

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#diagnosics_outputString

Returns Diagnostics output.

Returns:

  • (String)

    Diagnostics output



19
20
21
# File 'lib/generated/azure_mgmt_web/models/hosting_environment_diagnostics.rb', line 19

def diagnosics_output
  @diagnosics_output
end

#nameString

Returns Name/identifier of the diagnostics.

Returns:

  • (String)

    Name/identifier of the diagnostics



16
17
18
# File 'lib/generated/azure_mgmt_web/models/hosting_environment_diagnostics.rb', line 16

def name
  @name
end

Class Method Details

.mapperObject

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



26
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
# File 'lib/generated/azure_mgmt_web/models/hosting_environment_diagnostics.rb', line 26

def self.mapper()
  {
    required: false,
    serialized_name: 'HostingEnvironmentDiagnostics',
    type: {
      name: 'Composite',
      class_name: 'HostingEnvironmentDiagnostics',
      model_properties: {
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        diagnosics_output: {
          required: false,
          serialized_name: 'diagnosicsOutput',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end