# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
[docs]class ChaosEvent(Model):
"""Represents an event generated during a Chaos run.
You probably want to use the sub-classes and not this class directly. Known
sub-classes are: ExecutingFaultsChaosEvent, StartedChaosEvent,
StoppedChaosEvent, TestErrorChaosEvent, ValidationFailedChaosEvent,
WaitingChaosEvent
All required parameters must be populated in order to send to Azure.
:param time_stamp_utc: Required. The UTC timestamp when this Chaos event
was generated.
:type time_stamp_utc: datetime
:param kind: Required. Constant filled by server.
:type kind: str
"""
_validation = {
'time_stamp_utc': {'required': True},
'kind': {'required': True},
}
_attribute_map = {
'time_stamp_utc': {'key': 'TimeStampUtc', 'type': 'iso-8601'},
'kind': {'key': 'Kind', 'type': 'str'},
}
_subtype_map = {
'kind': {'ExecutingFaults': 'ExecutingFaultsChaosEvent', 'Started': 'StartedChaosEvent', 'Stopped': 'StoppedChaosEvent', 'TestError': 'TestErrorChaosEvent', 'ValidationFailed': 'ValidationFailedChaosEvent', 'Waiting': 'WaitingChaosEvent'}
}
def __init__(self, *, time_stamp_utc, **kwargs) -> None:
super(ChaosEvent, self).__init__(**kwargs)
self.time_stamp_utc = time_stamp_utc
self.kind = None