Skip to content

Commit 10cdede

Browse files
author
SDKAuto
committed
CodeGen from PR 34028 in Azure/azure-rest-api-specs
Merge 8740af5cb34f9846553c9bf5b105b16fd93e915f into 9f69db7532b6706baedc004f2eda762196a3e1eb
1 parent d6612d0 commit 10cdede

File tree

364 files changed

+25796
-3527
lines changed

Some content is hidden

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

364 files changed

+25796
-3527
lines changed

sdk/eventhub/azure-mgmt-eventhub/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 Event Hub 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.

sdk/eventhub/azure-mgmt-eventhub/_meta.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"commit": "bb87821da87100719c7dc8a3ef6b89781813ed0a",
2+
"commit": "ca19003dc1218cdd2a485dab0419a43729f43849",
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/eventhub/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/eventhub/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/eventhub/resource-manager/readme.md",
1111
"package-2024-01": "2024-04-17 10:03:55 -0700 bcb917a6cf4a1e47544a3acd36779cfbd58a9899 Microsoft.EventHub/stable/2024-01-01/eventhubs.json",
1212
"package-2021-11": "2022-11-29 14:20:04 +0530 d85953a9cb1b464824fae7c1fd300a99d086c8e4 Microsoft.EventHub/stable/2021-11-01/namespaces-preview.json",

sdk/eventhub/azure-mgmt-eventhub/azure/mgmt/eventhub/_event_hub_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 EventHubManagementClientConfiguration
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
@@ -71,13 +73,18 @@ def __init__(
7173
credential: "TokenCredential",
7274
subscription_id: str,
7375
api_version: Optional[str]=None,
74-
base_url: str = "https://management.azure.com",
76+
base_url: Optional[str] = None,
7577
profile: KnownProfiles=KnownProfiles.default,
7678
**kwargs: Any
7779
):
7880
if api_version:
7981
kwargs.setdefault('api_version', api_version)
80-
self._config = EventHubManagementClientConfiguration(credential, subscription_id, **kwargs)
82+
_cloud = kwargs.pop("cloud_setting", None) or settings.current.azure_cloud # type: ignore
83+
_endpoints = get_arm_endpoints(_cloud)
84+
if not base_url:
85+
base_url = _endpoints["resource_manager"]
86+
credential_scopes = kwargs.pop("credential_scopes", _endpoints["credential_scopes"])
87+
self._config = EventHubManagementClientConfiguration(credential, subscription_id, credential_scopes=credential_scopes, **kwargs)
8188
_policies = kwargs.pop("policies", None)
8289
if _policies is None:
8390
_policies = [
@@ -96,7 +103,7 @@ def __init__(
96103
policies.SensitiveHeaderCleanupPolicy(**kwargs) if self._config.redirect_policy else None,
97104
self._config.http_logging_policy,
98105
]
99-
self._client: ARMPipelineClient = ARMPipelineClient(base_url=base_url, policies=_policies, **kwargs)
106+
self._client: ARMPipelineClient = ARMPipelineClient(base_url=cast(str, base_url), policies=_policies, **kwargs)
100107
super(EventHubManagementClient, self).__init__(
101108
api_version=api_version,
102109
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)