Skip to content

Commit 32d96ac

Browse files
author
SDKAuto
committed
CodeGen from PR 33637 in Azure/azure-rest-api-specs
Merge 9962f7d3f790ec989f6462d3257898df90dfdbea into cb79e798e4d8f10c9cc2c9fe8a99e306a445d714
1 parent d7d04c0 commit 32d96ac

File tree

144 files changed

+7079
-1012
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+7079
-1012
lines changed

sdk/keyvault/azure-mgmt-keyvault/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Microsoft Azure SDK for Python
22

33
This is the Microsoft Azure Key Vault Management Client Library.
4-
This package has been tested with Python 3.8+.
4+
This package has been tested with Python 3.9+.
55
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
66

77
## _Disclaimer_
@@ -12,7 +12,7 @@ _Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For
1212

1313
### Prerequisites
1414

15-
- Python 3.8+ is required to use this package.
15+
- Python 3.9+ is required to use this package.
1616
- [Azure subscription](https://azure.microsoft.com/free/)
1717

1818
### Install the package
@@ -24,7 +24,7 @@ pip install azure-identity
2424

2525
### Authentication
2626

27-
By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.
27+
By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configuration of the following environment variables.
2828

2929
- `AZURE_CLIENT_ID` for Azure client ID.
3030
- `AZURE_TENANT_ID` for Azure tenant ID.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"commit": "8691e5081766c7ad602a9e55de841d07bed5196a",
2+
"commit": "b93217d3354e64909fa0ce6fb1b5fc6cf4ca8bb3",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
44
"autorest": "3.10.2",
55
"use": [
6-
"@autorest/python@6.27.4",
6+
"@autorest/python@6.34.1",
77
"@autorest/[email protected]"
88
],
9-
"autorest_command": "autorest specification/keyvault/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.27.4 --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
9+
"autorest_command": "autorest specification/keyvault/resource-manager/readme.md --generate-sample=True --generate-test=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --use=@autorest/python@6.34.1 --use=@autorest/[email protected] --version=3.10.2 --version-tolerant=False",
1010
"readme": "specification/keyvault/resource-manager/readme.md"
1111
}

sdk/keyvault/azure-mgmt-keyvault/azure/mgmt/keyvault/_key_vault_management_client.py

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,27 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
from typing import Any, Optional, TYPE_CHECKING
12+
from typing import Any, Optional, TYPE_CHECKING, cast
1313
from typing_extensions import Self
1414

1515
from azure.core.pipeline import policies
16+
from azure.core.settings import settings
1617
from azure.mgmt.core import ARMPipelineClient
1718
from azure.mgmt.core.policies import ARMAutoResourceProviderRegistrationPolicy
19+
from azure.mgmt.core.tools import get_arm_endpoints
1820
from azure.profiles import KnownProfiles, ProfileDefinition
1921
from azure.profiles.multiapiclient import MultiApiClientMixin
2022

2123
from ._configuration import KeyVaultManagementClientConfiguration
22-
from ._serialization import Deserializer, Serializer
24+
from ._utils.serialization import Deserializer, Serializer
2325

2426
if TYPE_CHECKING:
2527
# pylint: disable=unused-import,ungrouped-imports
2628
from azure.core.credentials import TokenCredential
2729

2830
class _SDKClient(object):
2931
def __init__(self, *args, **kwargs):
30-
"""This is a fake class to support current implemetation of MultiApiClientMixin."
32+
"""This is a fake class to support current implementation of MultiApiClientMixin."
3133
Will be removed in final version of multiapi azure-core based client
3234
"""
3335
pass
@@ -70,13 +72,18 @@ def __init__(
7072
credential: "TokenCredential",
7173
subscription_id: str,
7274
api_version: Optional[str]=None,
73-
base_url: str = "https://management.azure.com",
75+
base_url: Optional[str] = None,
7476
profile: KnownProfiles=KnownProfiles.default,
7577
**kwargs: Any
7678
):
7779
if api_version:
7880
kwargs.setdefault('api_version', api_version)
79-
self._config = KeyVaultManagementClientConfiguration(credential, subscription_id, **kwargs)
81+
_cloud = kwargs.pop("cloud_setting", None) or settings.current.azure_cloud # type: ignore
82+
_endpoints = get_arm_endpoints(_cloud)
83+
if not base_url:
84+
base_url = _endpoints["resource_manager"]
85+
credential_scopes = kwargs.pop("credential_scopes", _endpoints["credential_scopes"])
86+
self._config = KeyVaultManagementClientConfiguration(credential, subscription_id, credential_scopes=credential_scopes, **kwargs)
8087
_policies = kwargs.pop("policies", None)
8188
if _policies is None:
8289
_policies = [
@@ -95,7 +102,7 @@ def __init__(
95102
policies.SensitiveHeaderCleanupPolicy(**kwargs) if self._config.redirect_policy else None,
96103
self._config.http_logging_policy,
97104
]
98-
self._client: ARMPipelineClient = ARMPipelineClient(base_url=base_url, policies=_policies, **kwargs)
105+
self._client: ARMPipelineClient = ARMPipelineClient(base_url=cast(str, base_url), policies=_policies, **kwargs)
99106
super(KeyVaultManagementClient, self).__init__(
100107
api_version=api_version,
101108
profile=profile
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# coding=utf-8
2+
# --------------------------------------------------------------------------
3+
# Copyright (c) Microsoft Corporation. All rights reserved.
4+
# Licensed under the MIT License. See License.txt in the project root for
5+
# license information.
6+
#
7+
# Code generated by Microsoft (R) AutoRest Code Generator.
8+
# Changes may cause incorrect behavior and will be lost if the code is
9+
# regenerated.
10+
# --------------------------------------------------------------------------

0 commit comments

Comments
 (0)