Class: Azure::TimeSeriesInsights::Mgmt::V2017_11_15::Models::IngressEnvironmentStatus

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/ingress_environment_status.rb

Overview

An object that represents the status of ingress on an environment.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#stateIngressState

operations on an environment. It can be “Disabled”, “Ready”, “Running”, “Paused” or “Unknown”. Possible values include: ‘Disabled’, ‘Ready’, ‘Running’, ‘Paused’, ‘Unknown’

Returns:

  • (IngressState)

    This string represents the state of ingress



19
20
21
# File 'lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/ingress_environment_status.rb', line 19

def state
  @state
end

#state_detailsEnvironmentStateDetails

about an environment’s state.

Returns:



23
24
25
# File 'lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/ingress_environment_status.rb', line 23

def state_details
  @state_details
end

Class Method Details

.mapperObject

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



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
58
59
60
# File 'lib/2017-11-15/generated/azure_mgmt_time_series_insights/models/ingress_environment_status.rb', line 30

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IngressEnvironmentStatus',
    type: {
      name: 'Composite',
      class_name: 'IngressEnvironmentStatus',
      model_properties: {
        state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'state',
          type: {
            name: 'Enum',
            module: 'IngressState'
          }
        },
        state_details: {
          client_side_validation: true,
          required: false,
          serialized_name: 'stateDetails',
          type: {
            name: 'Composite',
            class_name: 'EnvironmentStateDetails'
          }
        }
      }
    }
  }
end