Class: Azure::ServiceFabric::V6_5_0_36::Models::WaitingChaosEvent

Inherits:
ChaosEvent
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.5.0.36/generated/azure_service_fabric/models/waiting_chaos_event.rb

Overview

Describes a Chaos event that gets generated when Chaos is waiting for the cluster to become ready for faulting, for example, Chaos may be waiting for the on-going upgrade to finish.

Instance Attribute Summary collapse

Attributes inherited from ChaosEvent

#time_stamp_utc

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeWaitingChaosEvent

Returns a new instance of WaitingChaosEvent.



18
19
20
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/waiting_chaos_event.rb', line 18

def initialize
  @Kind = "Waiting"
end

Instance Attribute Details

#KindObject

Returns the value of attribute Kind.



22
23
24
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/waiting_chaos_event.rb', line 22

def Kind
  @Kind
end

#reasonString

example, due to a cluster upgrade.

Returns:

  • (String)

    Describes why the WaitingChaosEvent was generated, for



26
27
28
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/waiting_chaos_event.rb', line 26

def reason
  @reason
end

Class Method Details

.mapperObject

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



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
61
62
63
64
65
66
67
68
69
# File 'lib/6.5.0.36/generated/azure_service_fabric/models/waiting_chaos_event.rb', line 33

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Waiting',
    type: {
      name: 'Composite',
      class_name: 'WaitingChaosEvent',
      model_properties: {
        time_stamp_utc: {
          client_side_validation: true,
          required: true,
          serialized_name: 'TimeStampUtc',
          type: {
            name: 'DateTime'
          }
        },
        Kind: {
          client_side_validation: true,
          required: true,
          serialized_name: 'Kind',
          type: {
            name: 'String'
          }
        },
        reason: {
          client_side_validation: true,
          required: false,
          serialized_name: 'Reason',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end