1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
# 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 .proxy_resource_py3 import ProxyResource
class ReplicationLink(ProxyResource):
"""Represents a database replication link.
Variables are only populated by the server, and will be ignored when
sending a request.
:ivar id: Resource ID.
:vartype id: str
:ivar name: Resource name.
:vartype name: str
:ivar type: Resource type.
:vartype type: str
:ivar location: Location of the server that contains this firewall rule.
:vartype location: str
:ivar is_termination_allowed: Legacy value indicating whether termination
is allowed. Currently always returns true.
:vartype is_termination_allowed: bool
:ivar replication_mode: Replication mode of this replication link.
:vartype replication_mode: str
:ivar partner_server: The name of the server hosting the partner database.
:vartype partner_server: str
:ivar partner_database: The name of the partner database.
:vartype partner_database: str
:ivar partner_location: The Azure Region of the partner database.
:vartype partner_location: str
:ivar role: The role of the database in the replication link. Possible
values include: 'Primary', 'Secondary', 'NonReadableSecondary', 'Source',
'Copy'
:vartype role: str or ~azure.mgmt.sql.models.ReplicationRole
:ivar partner_role: The role of the partner database in the replication
link. Possible values include: 'Primary', 'Secondary',
'NonReadableSecondary', 'Source', 'Copy'
:vartype partner_role: str or ~azure.mgmt.sql.models.ReplicationRole
:ivar start_time: The start time for the replication link.
:vartype start_time: datetime
:ivar percent_complete: The percentage of seeding complete for the
replication link.
:vartype percent_complete: int
:ivar replication_state: The replication state for the replication link.
Possible values include: 'PENDING', 'SEEDING', 'CATCH_UP', 'SUSPENDED'
:vartype replication_state: str or ~azure.mgmt.sql.models.ReplicationState
"""
_validation = {
'id': {'readonly': True},
'name': {'readonly': True},
'type': {'readonly': True},
'location': {'readonly': True},
'is_termination_allowed': {'readonly': True},
'replication_mode': {'readonly': True},
'partner_server': {'readonly': True},
'partner_database': {'readonly': True},
'partner_location': {'readonly': True},
'role': {'readonly': True},
'partner_role': {'readonly': True},
'start_time': {'readonly': True},
'percent_complete': {'readonly': True},
'replication_state': {'readonly': True},
}
_attribute_map = {
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'location': {'key': 'location', 'type': 'str'},
'is_termination_allowed': {'key': 'properties.isTerminationAllowed', 'type': 'bool'},
'replication_mode': {'key': 'properties.replicationMode', 'type': 'str'},
'partner_server': {'key': 'properties.partnerServer', 'type': 'str'},
'partner_database': {'key': 'properties.partnerDatabase', 'type': 'str'},
'partner_location': {'key': 'properties.partnerLocation', 'type': 'str'},
'role': {'key': 'properties.role', 'type': 'ReplicationRole'},
'partner_role': {'key': 'properties.partnerRole', 'type': 'ReplicationRole'},
'start_time': {'key': 'properties.startTime', 'type': 'iso-8601'},
'percent_complete': {'key': 'properties.percentComplete', 'type': 'int'},
'replication_state': {'key': 'properties.replicationState', 'type': 'str'},
}
def __init__(self, **kwargs) -> None:
super(ReplicationLink, self).__init__(**kwargs)
self.location = None
self.is_termination_allowed = None
self.replication_mode = None
self.partner_server = None
self.partner_database = None
self.partner_location = None
self.role = None
self.partner_role = None
self.start_time = None
self.percent_complete = None
self.replication_state = None
|