Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoRelease] t2-servicebus-2021-08-19-00756 #20350

Merged
merged 7 commits into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions sdk/servicebus/azure-mgmt-servicebus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# Release History

## 7.0.0 (2021-08-19)

**Features**

- Model Rule has a new parameter system_data
- Model SBNamespaceUpdateParameters has a new parameter private_endpoint_connections
- Model PrivateEndpointConnection has a new parameter system_data
- Model SBTopic has a new parameter system_data
- Model Identity has a new parameter user_assigned_identities
- Model SBNamespace has a new parameter system_data
- Model SBNamespace has a new parameter private_endpoint_connections
- Model Encryption has a new parameter require_infrastructure_encryption
- Model SBAuthorizationRule has a new parameter system_data
- Model SBSubscription has a new parameter system_data
- Model KeyVaultProperties has a new parameter key_version
- Model KeyVaultProperties has a new parameter identity
- Model ArmDisasterRecovery has a new parameter system_data
- Model NetworkRuleSet has a new parameter system_data
- Model SBQueue has a new parameter system_data
- Model MigrationConfigProperties has a new parameter system_data
- Added operation NamespacesOperations.list_network_rule_sets

**Breaking changes**

- Parameter id of model Subnet is now required
- Removed operation NamespacesOperations.list_virtual_network_rules
- Removed operation NamespacesOperations.migrate
- Removed operation NamespacesOperations.delete_ip_filter_rule
- Removed operation NamespacesOperations.get_virtual_network_rule
- Removed operation NamespacesOperations.create_or_update_ip_filter_rule
- Removed operation NamespacesOperations.delete_virtual_network_rule
- Removed operation NamespacesOperations.get_ip_filter_rule
- Removed operation NamespacesOperations.list_ip_filter_rules
- Removed operation NamespacesOperations.create_or_update_virtual_network_rule

## 6.0.0 (2020-11-23)

**Features**
Expand Down
1 change: 1 addition & 0 deletions sdk/servicebus/azure-mgmt-servicebus/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include _meta.json
recursive-include tests *.py *.yaml
include *.md
include azure/__init__.py
Expand Down
11 changes: 11 additions & 0 deletions sdk/servicebus/azure-mgmt-servicebus/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"autorest": "3.4.5",
"use": [
"@autorest/[email protected]",
"@autorest/[email protected]"
],
"commit": "45bf753575c080524ca3439441430eb47d8b982f",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/servicebus/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --track2 --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.4.5",
"readme": "specification/servicebus/resource-manager/readme.md"
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
# --------------------------------------------------------------------------

from ._service_bus_management_client import ServiceBusManagementClient
from ._version import VERSION

__version__ = VERSION
__all__ = ['ServiceBusManagementClient']

try:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# 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.
# 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.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from typing import TYPE_CHECKING

from azure.core.configuration import Configuration
Expand All @@ -20,7 +22,6 @@

from azure.core.credentials import TokenCredential


class ServiceBusManagementClientConfiguration(Configuration):
"""Configuration for ServiceBusManagementClient.

Expand Down Expand Up @@ -49,7 +50,7 @@ def __init__(
self.credential = credential
self.subscription_id = subscription_id
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
kwargs.setdefault('sdk_moniker', 'mgmt-servicebus/{}'.format(VERSION))
kwargs.setdefault('sdk_moniker', 'azure-mgmt-servicebus/{}'.format(VERSION))
self._configure(**kwargs)

def _configure(
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "6.0.0"
VERSION = "7.0.0"
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# 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.
# 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.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from typing import Any, TYPE_CHECKING

from azure.core.configuration import Configuration
Expand All @@ -18,7 +20,6 @@
# pylint: disable=unused-import,ungrouped-imports
from azure.core.credentials_async import AsyncTokenCredential


class ServiceBusManagementClientConfiguration(Configuration):
"""Configuration for ServiceBusManagementClient.

Expand All @@ -35,7 +36,7 @@ def __init__(
self,
credential: "AsyncTokenCredential",
subscription_id: str,
**kwargs: Any
**kwargs # type: Any
) -> None:
if credential is None:
raise ValueError("Parameter 'credential' must not be None.")
Expand All @@ -46,7 +47,7 @@ def __init__(
self.credential = credential
self.subscription_id = subscription_id
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
kwargs.setdefault('sdk_moniker', 'mgmt-servicebus/{}'.format(VERSION))
kwargs.setdefault('sdk_moniker', 'azure-mgmt-servicebus/{}'.format(VERSION))
self._configure(**kwargs)

def _configure(
Expand Down
Loading