Source code for azure.mgmt.network.v2017_11_01.models.connection_state_snapshot_py3

# 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 ConnectionStateSnapshot(Model): """Connection state snapshot. Variables are only populated by the server, and will be ignored when sending a request. :param connection_state: The connection state. Possible values include: 'Reachable', 'Unreachable', 'Unknown' :type connection_state: str or ~azure.mgmt.network.v2017_11_01.models.ConnectionState :param start_time: The start time of the connection snapshot. :type start_time: datetime :param end_time: The end time of the connection snapshot. :type end_time: datetime :param evaluation_state: Connectivity analysis evaluation state. Possible values include: 'NotStarted', 'InProgress', 'Completed' :type evaluation_state: str or ~azure.mgmt.network.v2017_11_01.models.EvaluationState :ivar hops: List of hops between the source and the destination. :vartype hops: list[~azure.mgmt.network.v2017_11_01.models.ConnectivityHop] """ _validation = { 'hops': {'readonly': True}, } _attribute_map = { 'connection_state': {'key': 'connectionState', 'type': 'str'}, 'start_time': {'key': 'startTime', 'type': 'iso-8601'}, 'end_time': {'key': 'endTime', 'type': 'iso-8601'}, 'evaluation_state': {'key': 'evaluationState', 'type': 'str'}, 'hops': {'key': 'hops', 'type': '[ConnectivityHop]'}, } def __init__(self, *, connection_state=None, start_time=None, end_time=None, evaluation_state=None, **kwargs) -> None: super(ConnectionStateSnapshot, self).__init__(**kwargs) self.connection_state = connection_state self.start_time = start_time self.end_time = end_time self.evaluation_state = evaluation_state self.hops = None