Class: Azure::ServiceFabric::V6_4_0_36::Models::StoppedChaosEvent

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

Overview

Describes a Chaos event that gets generated when Chaos stops because either the user issued a stop or the time to run was up.

Instance Attribute Summary collapse

Attributes inherited from ChaosEvent

#time_stamp_utc

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeStoppedChaosEvent

Returns a new instance of StoppedChaosEvent.



17
18
19
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/stopped_chaos_event.rb', line 17

def initialize
  @Kind = "Stopped"
end

Instance Attribute Details

#KindObject

Returns the value of attribute Kind.



21
22
23
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/stopped_chaos_event.rb', line 21

def Kind
  @Kind
end

#reasonString

StopChaos API call or the timeToRun provided in ChaosParameters is over.

Returns:

  • (String)

    Describes why Chaos stopped. Chaos can stop because of



26
27
28
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/stopped_chaos_event.rb', line 26

def reason
  @reason
end

Class Method Details

.mapperObject

Mapper for StoppedChaosEvent 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.4.0.36/generated/azure_service_fabric/models/stopped_chaos_event.rb', line 33

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Stopped',
    type: {
      name: 'Composite',
      class_name: 'StoppedChaosEvent',
      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