Skip to content

Commit 166cae0

Browse files
author
SDKAuto
committed
CodeGen from PR 34659 in Azure/azure-rest-api-specs
Merge fff39c84516f040d6e6933f4fa4a78607c098bad into 778b6f8c84f4d62e66f054e3876acff30e5bd4f9
1 parent 67455e4 commit 166cae0

File tree

100 files changed

+20593
-16620
lines changed

Some content is hidden

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

100 files changed

+20593
-16620
lines changed

sdk/sphere/azure-mgmt-sphere/CHANGELOG.md

Lines changed: 132 additions & 0 deletions
Large diffs are not rendered by default.

sdk/sphere/azure-mgmt-sphere/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 Sphere 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 & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
{
2-
"commit": "09c37754dac91874ff689ed1e60effb4268c8669",
2+
"commit": "b9a8c9e8eb8998a222f126a005d1ab633f1daad9",
33
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
4-
"autorest": "3.9.7",
5-
"use": [
6-
"@autorest/[email protected]",
7-
"@autorest/[email protected]"
8-
],
9-
"autorest_command": "autorest specification/sphere/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.9.7 --version-tolerant=False",
10-
"readme": "specification/sphere/resource-manager/readme.md"
4+
"typespec_src": "specification/sphere/Sphere.Management",
5+
"@azure-tools/typespec-python": "0.44.2"
116
}

sdk/sphere/azure-mgmt-sphere/apiview-properties.json

Lines changed: 146 additions & 0 deletions
Large diffs are not rendered by default.

sdk/sphere/azure-mgmt-sphere/azure/mgmt/sphere/__init__.py

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,31 @@
22
# --------------------------------------------------------------------------
33
# Copyright (c) Microsoft Corporation. All rights reserved.
44
# Licensed under the MIT License. See License.txt in the project root for license information.
5-
# Code generated by Microsoft (R) AutoRest Code Generator.
5+
# Code generated by Microsoft (R) Python Code Generator.
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
8+
# pylint: disable=wrong-import-position
89

9-
from ._azure_sphere_mgmt_client import AzureSphereMgmtClient
10+
from typing import TYPE_CHECKING
11+
12+
if TYPE_CHECKING:
13+
from ._patch import * # pylint: disable=unused-wildcard-import
14+
15+
from ._client import AzureSphereMgmtClient # type: ignore
1016
from ._version import VERSION
1117

1218
__version__ = VERSION
1319

1420
try:
1521
from ._patch import __all__ as _patch_all
16-
from ._patch import * # pylint: disable=unused-wildcard-import
22+
from ._patch import *
1723
except ImportError:
1824
_patch_all = []
1925
from ._patch import patch_sdk as _patch_sdk
2026

2127
__all__ = [
2228
"AzureSphereMgmtClient",
2329
]
24-
__all__.extend([p for p in _patch_all if p not in __all__])
30+
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
2531

2632
_patch_sdk()

sdk/sphere/azure-mgmt-sphere/azure/mgmt/sphere/_azure_sphere_mgmt_client.py renamed to sdk/sphere/azure-mgmt-sphere/azure/mgmt/sphere/_client.py

Lines changed: 36 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@
22
# --------------------------------------------------------------------------
33
# Copyright (c) Microsoft Corporation. All rights reserved.
44
# Licensed under the MIT License. See License.txt in the project root for license information.
5-
# Code generated by Microsoft (R) AutoRest Code Generator.
5+
# Code generated by Microsoft (R) Python Code Generator.
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

99
from copy import deepcopy
10-
from typing import Any, TYPE_CHECKING
10+
from typing import Any, Optional, TYPE_CHECKING, cast
11+
from typing_extensions import Self
1112

1213
from azure.core.pipeline import policies
1314
from azure.core.rest import HttpRequest, HttpResponse
15+
from azure.core.settings import settings
1416
from azure.mgmt.core import ARMPipelineClient
1517
from azure.mgmt.core.policies import ARMAutoResourceProviderRegistrationPolicy
18+
from azure.mgmt.core.tools import get_arm_endpoints
1619

17-
from . import models as _models
1820
from ._configuration import AzureSphereMgmtClientConfiguration
19-
from ._serialization import Deserializer, Serializer
21+
from ._utils.serialization import Deserializer, Serializer
2022
from .operations import (
2123
CatalogsOperations,
2224
CertificatesOperations,
@@ -29,11 +31,10 @@
2931
)
3032

3133
if TYPE_CHECKING:
32-
# pylint: disable=unused-import,ungrouped-imports
3334
from azure.core.credentials import TokenCredential
3435

3536

36-
class AzureSphereMgmtClient: # pylint: disable=client-accepts-api-version-keyword,too-many-instance-attributes
37+
class AzureSphereMgmtClient: # pylint: disable=too-many-instance-attributes
3738
"""Azure Sphere resource management API.
3839
3940
:ivar operations: Operations operations
@@ -52,29 +53,36 @@ class AzureSphereMgmtClient: # pylint: disable=client-accepts-api-version-keywo
5253
:vartype deployments: azure.mgmt.sphere.operations.DeploymentsOperations
5354
:ivar devices: DevicesOperations operations
5455
:vartype devices: azure.mgmt.sphere.operations.DevicesOperations
55-
:param credential: Credential needed for the client to connect to Azure. Required.
56+
:param credential: Credential used to authenticate requests to the service. Required.
5657
:type credential: ~azure.core.credentials.TokenCredential
57-
:param subscription_id: The ID of the target subscription. Required.
58+
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
5859
:type subscription_id: str
59-
:param base_url: Service URL. Default value is "https://management.azure.com".
60+
:param base_url: Service host. Default value is None.
6061
:type base_url: str
61-
:keyword api_version: Api Version. Default value is "2024-04-01". Note that overriding this
62-
default value may result in unsupported behavior.
62+
:keyword api_version: The API version to use for this operation. Default value is "2024-04-01".
63+
Note that overriding this default value may result in unsupported behavior.
6364
:paramtype api_version: str
6465
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
6566
Retry-After header is present.
6667
"""
6768

6869
def __init__(
69-
self,
70-
credential: "TokenCredential",
71-
subscription_id: str,
72-
base_url: str = "https://management.azure.com",
73-
**kwargs: Any
70+
self, credential: "TokenCredential", subscription_id: str, base_url: Optional[str] = None, **kwargs: Any
7471
) -> None:
72+
_endpoint = "{endpoint}"
73+
_cloud = kwargs.pop("cloud_setting", None) or settings.current.azure_cloud # type: ignore
74+
_endpoints = get_arm_endpoints(_cloud)
75+
if not base_url:
76+
base_url = _endpoints["resource_manager"]
77+
credential_scopes = kwargs.pop("credential_scopes", _endpoints["credential_scopes"])
7578
self._config = AzureSphereMgmtClientConfiguration(
76-
credential=credential, subscription_id=subscription_id, **kwargs
79+
credential=credential,
80+
subscription_id=subscription_id,
81+
base_url=cast(str, base_url),
82+
credential_scopes=credential_scopes,
83+
**kwargs
7784
)
85+
7886
_policies = kwargs.pop("policies", None)
7987
if _policies is None:
8088
_policies = [
@@ -93,11 +101,10 @@ def __init__(
93101
policies.SensitiveHeaderCleanupPolicy(**kwargs) if self._config.redirect_policy else None,
94102
self._config.http_logging_policy,
95103
]
96-
self._client: ARMPipelineClient = ARMPipelineClient(base_url=base_url, policies=_policies, **kwargs)
104+
self._client: ARMPipelineClient = ARMPipelineClient(base_url=cast(str, _endpoint), policies=_policies, **kwargs)
97105

98-
client_models = {k: v for k, v in _models.__dict__.items() if isinstance(v, type)}
99-
self._serialize = Serializer(client_models)
100-
self._deserialize = Deserializer(client_models)
106+
self._serialize = Serializer()
107+
self._deserialize = Deserializer()
101108
self._serialize.client_side_validation = False
102109
self.operations = Operations(self._client, self._config, self._serialize, self._deserialize)
103110
self.catalogs = CatalogsOperations(self._client, self._config, self._serialize, self._deserialize)
@@ -108,13 +115,13 @@ def __init__(
108115
self.deployments = DeploymentsOperations(self._client, self._config, self._serialize, self._deserialize)
109116
self.devices = DevicesOperations(self._client, self._config, self._serialize, self._deserialize)
110117

111-
def _send_request(self, request: HttpRequest, *, stream: bool = False, **kwargs: Any) -> HttpResponse:
118+
def send_request(self, request: HttpRequest, *, stream: bool = False, **kwargs: Any) -> HttpResponse:
112119
"""Runs the network request through the client's chained policies.
113120
114121
>>> from azure.core.rest import HttpRequest
115122
>>> request = HttpRequest("GET", "https://www.example.org/")
116123
<HttpRequest [GET], url: 'https://www.example.org/'>
117-
>>> response = client._send_request(request)
124+
>>> response = client.send_request(request)
118125
<HttpResponse: 200 OK>
119126
120127
For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request
@@ -127,13 +134,17 @@ def _send_request(self, request: HttpRequest, *, stream: bool = False, **kwargs:
127134
"""
128135

129136
request_copy = deepcopy(request)
130-
request_copy.url = self._client.format_url(request_copy.url)
137+
path_format_arguments = {
138+
"endpoint": self._serialize.url("self._config.base_url", self._config.base_url, "str", skip_quote=True),
139+
}
140+
141+
request_copy.url = self._client.format_url(request_copy.url, **path_format_arguments)
131142
return self._client.send_request(request_copy, stream=stream, **kwargs) # type: ignore
132143

133144
def close(self) -> None:
134145
self._client.close()
135146

136-
def __enter__(self) -> "AzureSphereMgmtClient":
147+
def __enter__(self) -> Self:
137148
self._client.__enter__()
138149
return self
139150

sdk/sphere/azure-mgmt-sphere/azure/mgmt/sphere/_configuration.py

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# --------------------------------------------------------------------------
33
# Copyright (c) Microsoft Corporation. All rights reserved.
44
# Licensed under the MIT License. See License.txt in the project root for license information.
5-
# Code generated by Microsoft (R) AutoRest Code Generator.
5+
# Code generated by Microsoft (R) Python Code Generator.
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

@@ -14,26 +14,33 @@
1414
from ._version import VERSION
1515

1616
if TYPE_CHECKING:
17-
# pylint: disable=unused-import,ungrouped-imports
1817
from azure.core.credentials import TokenCredential
1918

2019

21-
class AzureSphereMgmtClientConfiguration: # pylint: disable=too-many-instance-attributes,name-too-long
20+
class AzureSphereMgmtClientConfiguration: # pylint: disable=too-many-instance-attributes
2221
"""Configuration for AzureSphereMgmtClient.
2322
2423
Note that all parameters used to create this instance are saved as instance
2524
attributes.
2625
27-
:param credential: Credential needed for the client to connect to Azure. Required.
26+
:param credential: Credential used to authenticate requests to the service. Required.
2827
:type credential: ~azure.core.credentials.TokenCredential
29-
:param subscription_id: The ID of the target subscription. Required.
28+
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
3029
:type subscription_id: str
31-
:keyword api_version: Api Version. Default value is "2024-04-01". Note that overriding this
32-
default value may result in unsupported behavior.
30+
:param base_url: Service host. Default value is "https://management.azure.com".
31+
:type base_url: str
32+
:keyword api_version: The API version to use for this operation. Default value is "2024-04-01".
33+
Note that overriding this default value may result in unsupported behavior.
3334
:paramtype api_version: str
3435
"""
3536

36-
def __init__(self, credential: "TokenCredential", subscription_id: str, **kwargs: Any) -> None:
37+
def __init__(
38+
self,
39+
credential: "TokenCredential",
40+
subscription_id: str,
41+
base_url: str = "https://management.azure.com",
42+
**kwargs: Any
43+
) -> None:
3744
api_version: str = kwargs.pop("api_version", "2024-04-01")
3845

3946
if credential is None:
@@ -43,6 +50,7 @@ def __init__(self, credential: "TokenCredential", subscription_id: str, **kwargs
4350

4451
self.credential = credential
4552
self.subscription_id = subscription_id
53+
self.base_url = base_url
4654
self.api_version = api_version
4755
self.credential_scopes = kwargs.pop("credential_scopes", ["https://management.azure.com/.default"])
4856
kwargs.setdefault("sdk_moniker", "mgmt-sphere/{}".format(VERSION))

sdk/sphere/azure-mgmt-sphere/azure/mgmt/sphere/_patch.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# ------------------------------------
2-
# Copyright (c) Microsoft Corporation.
3-
# Licensed under the MIT License.
4-
# ------------------------------------
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 license information.
5+
# --------------------------------------------------------------------------
56
"""Customize generated code here.
67
78
Follow our quickstart for examples: https://aka.ms/azsdk/python/dpcodegen/python/customize
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,6 @@
11
# --------------------------------------------------------------------------
22
# Copyright (c) Microsoft Corporation. All rights reserved.
33
# Licensed under the MIT License. See License.txt in the project root for license information.
4-
# Code generated by Microsoft (R) AutoRest Code Generator.
4+
# Code generated by Microsoft (R) Python Code Generator.
55
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
66
# --------------------------------------------------------------------------
7-
8-
from azure.core.pipeline.transport import HttpRequest
9-
10-
11-
def _convert_request(request, files=None):
12-
data = request.content if not files else None
13-
request = HttpRequest(method=request.method, url=request.url, headers=request.headers, data=data)
14-
if files:
15-
request.set_formdata_body(files)
16-
return request

0 commit comments

Comments
 (0)