class Azure::ServiceFabric::V7_0_0_42::Models::StoppedChaosEvent
Describes a Chaos
event that gets generated when Chaos
stops because either the user issued a stop or the time to run was up.
Attributes
Kind[RW]
reason[RW]
@return [String] Describes why Chaos
stopped. Chaos
can stop because of StopChaos API call or the timeToRun provided in ChaosParameters
is over.
Private Class Methods
mapper()
click to toggle source
Mapper for StoppedChaosEvent
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/7.0.0.42/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
new()
click to toggle source
# File lib/7.0.0.42/generated/azure_service_fabric/models/stopped_chaos_event.rb, line 17 def initialize @Kind = "Stopped" end