From ff5761012ea2cc8595aeab011fcf02d211c3d88c Mon Sep 17 00:00:00 2001 From: Azure SDK for Python bot Date: Wed, 27 Jun 2018 23:19:59 +0000 Subject: [PATCH] Generated from 2342335ae929b3603e448161ab20e16c04ce4d61 revmoved zoneRedundant property --- .../azure/mgmt/servicebus/models/arm_disaster_recovery.py | 6 ++++++ .../mgmt/servicebus/models/arm_disaster_recovery_py3.py | 8 +++++++- .../azure/mgmt/servicebus/models/eventhub_py3.py | 2 +- .../mgmt/servicebus/models/migration_config_properties.py | 6 ++++++ .../servicebus/models/migration_config_properties_py3.py | 8 +++++++- .../servicebus/models/premium_messaging_regions_py3.py | 2 +- .../servicebus/models/resource_namespace_patch_py3.py | 2 +- .../azure/mgmt/servicebus/models/rule_py3.py | 2 +- .../mgmt/servicebus/models/sb_authorization_rule_py3.py | 2 +- .../azure/mgmt/servicebus/models/sb_namespace_py3.py | 2 +- .../models/sb_namespace_update_parameters_py3.py | 2 +- .../azure/mgmt/servicebus/models/sb_queue_py3.py | 2 +- .../azure/mgmt/servicebus/models/sb_subscription_py3.py | 2 +- .../azure/mgmt/servicebus/models/sb_topic_py3.py | 2 +- .../azure/mgmt/servicebus/models/sql_rule_action_py3.py | 2 +- .../azure/mgmt/servicebus/models/tracked_resource_py3.py | 2 +- 16 files changed, 38 insertions(+), 14 deletions(-) diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/arm_disaster_recovery.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/arm_disaster_recovery.py index 6fe549cab86e..8e698a8bf832 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/arm_disaster_recovery.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/arm_disaster_recovery.py @@ -30,6 +30,9 @@ class ArmDisasterRecovery(Resource): 'Failed'. Possible values include: 'Accepted', 'Succeeded', 'Failed' :vartype provisioning_state: str or ~azure.mgmt.servicebus.models.ProvisioningStateDR + :ivar pending_replication_operations_count: Number of entities pending to + be replicated. + :vartype pending_replication_operations_count: long :param partner_namespace: ARM Id of the Primary/Secondary eventhub namespace name, which is part of GEO DR pairning :type partner_namespace: str @@ -47,6 +50,7 @@ class ArmDisasterRecovery(Resource): 'name': {'readonly': True}, 'type': {'readonly': True}, 'provisioning_state': {'readonly': True}, + 'pending_replication_operations_count': {'readonly': True}, 'role': {'readonly': True}, } @@ -55,6 +59,7 @@ class ArmDisasterRecovery(Resource): 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'ProvisioningStateDR'}, + 'pending_replication_operations_count': {'key': 'properties.pendingReplicationOperationsCount ', 'type': 'long'}, 'partner_namespace': {'key': 'properties.partnerNamespace', 'type': 'str'}, 'alternate_name': {'key': 'properties.alternateName', 'type': 'str'}, 'role': {'key': 'properties.role', 'type': 'RoleDisasterRecovery'}, @@ -63,6 +68,7 @@ class ArmDisasterRecovery(Resource): def __init__(self, **kwargs): super(ArmDisasterRecovery, self).__init__(**kwargs) self.provisioning_state = None + self.pending_replication_operations_count = None self.partner_namespace = kwargs.get('partner_namespace', None) self.alternate_name = kwargs.get('alternate_name', None) self.role = None diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/arm_disaster_recovery_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/arm_disaster_recovery_py3.py index da8dd42bd676..a7d7cd82ec8c 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/arm_disaster_recovery_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/arm_disaster_recovery_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource import Resource +from .resource_py3 import Resource class ArmDisasterRecovery(Resource): @@ -30,6 +30,9 @@ class ArmDisasterRecovery(Resource): 'Failed'. Possible values include: 'Accepted', 'Succeeded', 'Failed' :vartype provisioning_state: str or ~azure.mgmt.servicebus.models.ProvisioningStateDR + :ivar pending_replication_operations_count: Number of entities pending to + be replicated. + :vartype pending_replication_operations_count: long :param partner_namespace: ARM Id of the Primary/Secondary eventhub namespace name, which is part of GEO DR pairning :type partner_namespace: str @@ -47,6 +50,7 @@ class ArmDisasterRecovery(Resource): 'name': {'readonly': True}, 'type': {'readonly': True}, 'provisioning_state': {'readonly': True}, + 'pending_replication_operations_count': {'readonly': True}, 'role': {'readonly': True}, } @@ -55,6 +59,7 @@ class ArmDisasterRecovery(Resource): 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'ProvisioningStateDR'}, + 'pending_replication_operations_count': {'key': 'properties.pendingReplicationOperationsCount ', 'type': 'long'}, 'partner_namespace': {'key': 'properties.partnerNamespace', 'type': 'str'}, 'alternate_name': {'key': 'properties.alternateName', 'type': 'str'}, 'role': {'key': 'properties.role', 'type': 'RoleDisasterRecovery'}, @@ -63,6 +68,7 @@ class ArmDisasterRecovery(Resource): def __init__(self, *, partner_namespace: str=None, alternate_name: str=None, **kwargs) -> None: super(ArmDisasterRecovery, self).__init__(**kwargs) self.provisioning_state = None + self.pending_replication_operations_count = None self.partner_namespace = partner_namespace self.alternate_name = alternate_name self.role = None diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/eventhub_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/eventhub_py3.py index 9d6e8c179ae0..a16b7f175a5f 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/eventhub_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/eventhub_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource import Resource +from .resource_py3 import Resource class Eventhub(Resource): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/migration_config_properties.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/migration_config_properties.py index 41e40e01db75..e35dc545fc95 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/migration_config_properties.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/migration_config_properties.py @@ -28,6 +28,9 @@ class MigrationConfigProperties(Resource): :vartype type: str :ivar provisioning_state: Provisioning state of Migration Configuration :vartype provisioning_state: str + :ivar pending_replication_operations_count: Number of entities pending to + be replicated. + :vartype pending_replication_operations_count: long :param target_namespace: Required. Existing premium Namespace ARM Id name which has no entities, will be used for migration :type target_namespace: str @@ -41,6 +44,7 @@ class MigrationConfigProperties(Resource): 'name': {'readonly': True}, 'type': {'readonly': True}, 'provisioning_state': {'readonly': True}, + 'pending_replication_operations_count': {'readonly': True}, 'target_namespace': {'required': True}, 'post_migration_name': {'required': True}, } @@ -50,6 +54,7 @@ class MigrationConfigProperties(Resource): 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'pending_replication_operations_count': {'key': 'properties.pendingReplicationOperationsCount ', 'type': 'long'}, 'target_namespace': {'key': 'properties.targetNamespace', 'type': 'str'}, 'post_migration_name': {'key': 'properties.postMigrationName', 'type': 'str'}, } @@ -57,5 +62,6 @@ class MigrationConfigProperties(Resource): def __init__(self, **kwargs): super(MigrationConfigProperties, self).__init__(**kwargs) self.provisioning_state = None + self.pending_replication_operations_count = None self.target_namespace = kwargs.get('target_namespace', None) self.post_migration_name = kwargs.get('post_migration_name', None) diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/migration_config_properties_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/migration_config_properties_py3.py index 69f12b76d433..65b5b0e30b0b 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/migration_config_properties_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/migration_config_properties_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource import Resource +from .resource_py3 import Resource class MigrationConfigProperties(Resource): @@ -28,6 +28,9 @@ class MigrationConfigProperties(Resource): :vartype type: str :ivar provisioning_state: Provisioning state of Migration Configuration :vartype provisioning_state: str + :ivar pending_replication_operations_count: Number of entities pending to + be replicated. + :vartype pending_replication_operations_count: long :param target_namespace: Required. Existing premium Namespace ARM Id name which has no entities, will be used for migration :type target_namespace: str @@ -41,6 +44,7 @@ class MigrationConfigProperties(Resource): 'name': {'readonly': True}, 'type': {'readonly': True}, 'provisioning_state': {'readonly': True}, + 'pending_replication_operations_count': {'readonly': True}, 'target_namespace': {'required': True}, 'post_migration_name': {'required': True}, } @@ -50,6 +54,7 @@ class MigrationConfigProperties(Resource): 'name': {'key': 'name', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'pending_replication_operations_count': {'key': 'properties.pendingReplicationOperationsCount ', 'type': 'long'}, 'target_namespace': {'key': 'properties.targetNamespace', 'type': 'str'}, 'post_migration_name': {'key': 'properties.postMigrationName', 'type': 'str'}, } @@ -57,5 +62,6 @@ class MigrationConfigProperties(Resource): def __init__(self, *, target_namespace: str, post_migration_name: str, **kwargs) -> None: super(MigrationConfigProperties, self).__init__(**kwargs) self.provisioning_state = None + self.pending_replication_operations_count = None self.target_namespace = target_namespace self.post_migration_name = post_migration_name diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/premium_messaging_regions_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/premium_messaging_regions_py3.py index f15b63b735c5..3c079ba666f3 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/premium_messaging_regions_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/premium_messaging_regions_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource_namespace_patch import ResourceNamespacePatch +from .resource_namespace_patch_py3 import ResourceNamespacePatch class PremiumMessagingRegions(ResourceNamespacePatch): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/resource_namespace_patch_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/resource_namespace_patch_py3.py index b3e16e7aefe3..937efe445588 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/resource_namespace_patch_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/resource_namespace_patch_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource import Resource +from .resource_py3 import Resource class ResourceNamespacePatch(Resource): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/rule_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/rule_py3.py index 1d8782b33615..89c536c57bdf 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/rule_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/rule_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource import Resource +from .resource_py3 import Resource class Rule(Resource): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_authorization_rule_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_authorization_rule_py3.py index b19b3f0b6293..bc56273b70c9 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_authorization_rule_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_authorization_rule_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource import Resource +from .resource_py3 import Resource class SBAuthorizationRule(Resource): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_namespace_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_namespace_py3.py index 4ee417397b37..d308e48b33a6 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_namespace_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_namespace_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .tracked_resource import TrackedResource +from .tracked_resource_py3 import TrackedResource class SBNamespace(TrackedResource): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_namespace_update_parameters_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_namespace_update_parameters_py3.py index 04cadaaeabc7..80ac2a2b3457 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_namespace_update_parameters_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_namespace_update_parameters_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource_namespace_patch import ResourceNamespacePatch +from .resource_namespace_patch_py3 import ResourceNamespacePatch class SBNamespaceUpdateParameters(ResourceNamespacePatch): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_queue_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_queue_py3.py index dd370f7146ae..44afe3abe826 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_queue_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_queue_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource import Resource +from .resource_py3 import Resource class SBQueue(Resource): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_subscription_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_subscription_py3.py index 2c730d0bdd68..e2f9351a6a0b 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_subscription_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_subscription_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource import Resource +from .resource_py3 import Resource class SBSubscription(Resource): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_topic_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_topic_py3.py index 36087b83451d..3f7e90ea3f9f 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_topic_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sb_topic_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource import Resource +from .resource_py3 import Resource class SBTopic(Resource): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sql_rule_action_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sql_rule_action_py3.py index 94786ea833d5..d9534e0211a3 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sql_rule_action_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/sql_rule_action_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .action import Action +from .action_py3 import Action class SqlRuleAction(Action): diff --git a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/tracked_resource_py3.py b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/tracked_resource_py3.py index 2caa0475de57..f55c922babff 100644 --- a/azure-mgmt-servicebus/azure/mgmt/servicebus/models/tracked_resource_py3.py +++ b/azure-mgmt-servicebus/azure/mgmt/servicebus/models/tracked_resource_py3.py @@ -9,7 +9,7 @@ # regenerated. # -------------------------------------------------------------------------- -from .resource import Resource +from .resource_py3 import Resource class TrackedResource(Resource):