Source code for azure.servicefabric.models.replica_info_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 ReplicaInfo(Model): """Information about the identity, status, health, node name, uptime, and other details about the replica. You probably want to use the sub-classes and not this class directly. Known sub-classes are: StatefulServiceReplicaInfo, StatelessServiceInstanceInfo All required parameters must be populated in order to send to Azure. :param replica_status: The status of a replica of a service. Possible values include: 'Invalid', 'InBuild', 'Standby', 'Ready', 'Down', 'Dropped' :type replica_status: str or ~azure.servicefabric.models.ReplicaStatus :param health_state: The health state of a Service Fabric entity such as Cluster, Node, Application, Service, Partition, Replica etc. Possible values include: 'Invalid', 'Ok', 'Warning', 'Error', 'Unknown' :type health_state: str or ~azure.servicefabric.models.HealthState :param node_name: The name of a Service Fabric node. :type node_name: str :param address: The address the replica is listening on. :type address: str :param last_in_build_duration_in_seconds: The last in build duration of the replica in seconds. :type last_in_build_duration_in_seconds: str :param service_kind: Required. Constant filled by server. :type service_kind: str """ _validation = { 'service_kind': {'required': True}, } _attribute_map = { 'replica_status': {'key': 'ReplicaStatus', 'type': 'str'}, 'health_state': {'key': 'HealthState', 'type': 'str'}, 'node_name': {'key': 'NodeName', 'type': 'str'}, 'address': {'key': 'Address', 'type': 'str'}, 'last_in_build_duration_in_seconds': {'key': 'LastInBuildDurationInSeconds', 'type': 'str'}, 'service_kind': {'key': 'ServiceKind', 'type': 'str'}, } _subtype_map = { 'service_kind': {'Stateful': 'StatefulServiceReplicaInfo', 'Stateless': 'StatelessServiceInstanceInfo'} } def __init__(self, *, replica_status=None, health_state=None, node_name: str=None, address: str=None, last_in_build_duration_in_seconds: str=None, **kwargs) -> None: super(ReplicaInfo, self).__init__(**kwargs) self.replica_status = replica_status self.health_state = health_state self.node_name = node_name self.address = address self.last_in_build_duration_in_seconds = last_in_build_duration_in_seconds self.service_kind = None