Skip to content

Commit 23ee595

Browse files
author
SDKAuto
committed
CodeGen from PR 19389 in Azure/azure-rest-api-specs
Merge a3e44e3b559225047402a24b10fba1bc5a7d9737 into 4124b7c2773a714303299f0cfd742b0d26d3bb5d
1 parent 6d22152 commit 23ee595

File tree

17 files changed

+1215
-1442
lines changed

17 files changed

+1215
-1442
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"autorest": "3.4.5",
2+
"autorest": "3.7.2",
33
"use": [
4-
"@autorest/python@5.8.4",
5-
"@autorest/[email protected].2"
4+
"@autorest/python@5.13.0",
5+
"@autorest/[email protected].3"
66
],
7-
"commit": "f7e5dc7bd9f9982c2044b176fe556982f7202c2b",
7+
"commit": "e88630e86bd039beb9ed632350e8802c70f68312",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
9-
"autorest_command": "autorest specification/resourceconnector/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/python@5.8.4 --use=@autorest/[email protected].2 --version=3.4.5",
9+
"autorest_command": "autorest specification/resourceconnector/resource-manager/readme.md --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --python3-only --use=@autorest/python@5.13.0 --use=@autorest/[email protected].3 --version=3.7.2",
1010
"readme": "specification/resourceconnector/resource-manager/readme.md"
1111
}

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
__version__ = VERSION
1313
__all__ = ['Appliances']
1414

15-
try:
16-
from ._patch import patch_sdk # type: ignore
17-
patch_sdk()
18-
except ImportError:
19-
pass
15+
# `._patch.py` is used for handwritten extensions to the generated code
16+
# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
17+
from ._patch import patch_sdk
18+
patch_sdk()

sdk/resourceconnector/azure-mgmt-resourceconnector/azure/mgmt/resourceconnector/_appliances.py

Lines changed: 46 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -6,74 +6,82 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
from typing import TYPE_CHECKING
9+
from copy import deepcopy
10+
from typing import Any, TYPE_CHECKING
1011

11-
from azure.mgmt.core import ARMPipelineClient
1212
from msrest import Deserializer, Serializer
1313

14-
if TYPE_CHECKING:
15-
# pylint: disable=unused-import,ungrouped-imports
16-
from typing import Any, Optional
17-
18-
from azure.core.credentials import TokenCredential
19-
from azure.core.pipeline.transport import HttpRequest, HttpResponse
14+
from azure.core.rest import HttpRequest, HttpResponse
15+
from azure.mgmt.core import ARMPipelineClient
2016

17+
from . import models
2118
from ._configuration import AppliancesConfiguration
2219
from .operations import AppliancesOperations
23-
from . import models
2420

21+
if TYPE_CHECKING:
22+
# pylint: disable=unused-import,ungrouped-imports
23+
from azure.core.credentials import TokenCredential
2524

26-
class Appliances(object):
25+
class Appliances:
2726
"""The appliances Rest API spec.
2827
2928
:ivar appliances: AppliancesOperations operations
30-
:vartype appliances: appliances.operations.AppliancesOperations
29+
:vartype appliances: azure.mgmt.resourceconnector.operations.AppliancesOperations
3130
:param credential: Credential needed for the client to connect to Azure.
3231
:type credential: ~azure.core.credentials.TokenCredential
3332
:param subscription_id: The ID of the target subscription.
3433
:type subscription_id: str
35-
:param str base_url: Service URL
36-
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
34+
:param base_url: Service URL. Default value is "https://management.azure.com".
35+
:type base_url: str
36+
:keyword api_version: Api Version. Default value is "2021-10-31-preview". Note that overriding
37+
this default value may result in unsupported behavior.
38+
:paramtype api_version: str
39+
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
40+
Retry-After header is present.
3741
"""
3842

3943
def __init__(
4044
self,
41-
credential, # type: "TokenCredential"
42-
subscription_id, # type: str
43-
base_url=None, # type: Optional[str]
44-
**kwargs # type: Any
45-
):
46-
# type: (...) -> None
47-
if not base_url:
48-
base_url = 'https://management.azure.com'
49-
self._config = AppliancesConfiguration(credential, subscription_id, **kwargs)
45+
credential: "TokenCredential",
46+
subscription_id: str,
47+
base_url: str = "https://management.azure.com",
48+
**kwargs: Any
49+
) -> None:
50+
self._config = AppliancesConfiguration(credential=credential, subscription_id=subscription_id, **kwargs)
5051
self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs)
5152

5253
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
5354
self._serialize = Serializer(client_models)
54-
self._serialize.client_side_validation = False
5555
self._deserialize = Deserializer(client_models)
56+
self._serialize.client_side_validation = False
57+
self.appliances = AppliancesOperations(self._client, self._config, self._serialize, self._deserialize)
5658

57-
self.appliances = AppliancesOperations(
58-
self._client, self._config, self._serialize, self._deserialize)
5959

60-
def _send_request(self, http_request, **kwargs):
61-
# type: (HttpRequest, Any) -> HttpResponse
60+
def _send_request(
61+
self,
62+
request: HttpRequest,
63+
**kwargs: Any
64+
) -> HttpResponse:
6265
"""Runs the network request through the client's chained policies.
6366
64-
:param http_request: The network request you want to make. Required.
65-
:type http_request: ~azure.core.pipeline.transport.HttpRequest
66-
:keyword bool stream: Whether the response payload will be streamed. Defaults to True.
67+
>>> from azure.core.rest import HttpRequest
68+
>>> request = HttpRequest("GET", "https://www.example.org/")
69+
<HttpRequest [GET], url: 'https://www.example.org/'>
70+
>>> response = client._send_request(request)
71+
<HttpResponse: 200 OK>
72+
73+
For more information on this code flow, see https://aka.ms/azsdk/python/protocol/quickstart
74+
75+
:param request: The network request you want to make. Required.
76+
:type request: ~azure.core.rest.HttpRequest
77+
:keyword bool stream: Whether the response payload will be streamed. Defaults to False.
6778
:return: The response of your network call. Does not do error handling on your response.
68-
:rtype: ~azure.core.pipeline.transport.HttpResponse
79+
:rtype: ~azure.core.rest.HttpResponse
6980
"""
70-
path_format_arguments = {
71-
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
72-
}
73-
http_request.url = self._client.format_url(http_request.url, **path_format_arguments)
74-
stream = kwargs.pop("stream", True)
75-
pipeline_response = self._client._pipeline.run(http_request, stream=stream, **kwargs)
76-
return pipeline_response.http_response
81+
82+
request_copy = deepcopy(request)
83+
request_copy.url = self._client.format_url(request_copy.url)
84+
return self._client.send_request(request_copy, **kwargs)
7785

7886
def close(self):
7987
# type: () -> None

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

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,20 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
from typing import TYPE_CHECKING
9+
from typing import Any, TYPE_CHECKING
1010

1111
from azure.core.configuration import Configuration
1212
from azure.core.pipeline import policies
13-
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
13+
from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy
1414

1515
from ._version import VERSION
1616

1717
if TYPE_CHECKING:
1818
# pylint: disable=unused-import,ungrouped-imports
19-
from typing import Any
20-
2119
from azure.core.credentials import TokenCredential
2220

2321

24-
class AppliancesConfiguration(Configuration):
22+
class AppliancesConfiguration(Configuration): # pylint: disable=too-many-instance-attributes
2523
"""Configuration for Appliances.
2624
2725
Note that all parameters used to create this instance are saved as instance
@@ -31,24 +29,28 @@ class AppliancesConfiguration(Configuration):
3129
:type credential: ~azure.core.credentials.TokenCredential
3230
:param subscription_id: The ID of the target subscription.
3331
:type subscription_id: str
32+
:keyword api_version: Api Version. Default value is "2021-10-31-preview". Note that overriding
33+
this default value may result in unsupported behavior.
34+
:paramtype api_version: str
3435
"""
3536

3637
def __init__(
3738
self,
38-
credential, # type: "TokenCredential"
39-
subscription_id, # type: str
40-
**kwargs # type: Any
41-
):
42-
# type: (...) -> None
39+
credential: "TokenCredential",
40+
subscription_id: str,
41+
**kwargs: Any
42+
) -> None:
43+
super(AppliancesConfiguration, self).__init__(**kwargs)
44+
api_version = kwargs.pop('api_version', "2021-10-31-preview") # type: str
45+
4346
if credential is None:
4447
raise ValueError("Parameter 'credential' must not be None.")
4548
if subscription_id is None:
4649
raise ValueError("Parameter 'subscription_id' must not be None.")
47-
super(AppliancesConfiguration, self).__init__(**kwargs)
4850

4951
self.credential = credential
5052
self.subscription_id = subscription_id
51-
self.api_version = "2021-10-31-preview"
53+
self.api_version = api_version
5254
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
5355
kwargs.setdefault('sdk_moniker', 'mgmt-resourceconnector/{}'.format(VERSION))
5456
self._configure(**kwargs)
@@ -68,4 +70,4 @@ def _configure(
6870
self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs)
6971
self.authentication_policy = kwargs.get('authentication_policy')
7072
if self.credential and not self.authentication_policy:
71-
self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
73+
self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)

sdk/resourceconnector/azure-mgmt-resourceconnector/azure/mgmt/resourceconnector/_metadata.json

Lines changed: 0 additions & 103 deletions
This file was deleted.
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# coding=utf-8
2+
# --------------------------------------------------------------------------
3+
#
4+
# Copyright (c) Microsoft Corporation. All rights reserved.
5+
#
6+
# The MIT License (MIT)
7+
#
8+
# Permission is hereby granted, free of charge, to any person obtaining a copy
9+
# of this software and associated documentation files (the ""Software""), to
10+
# deal in the Software without restriction, including without limitation the
11+
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12+
# sell copies of the Software, and to permit persons to whom the Software is
13+
# furnished to do so, subject to the following conditions:
14+
#
15+
# The above copyright notice and this permission notice shall be included in
16+
# all copies or substantial portions of the Software.
17+
#
18+
# THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23+
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24+
# IN THE SOFTWARE.
25+
#
26+
# --------------------------------------------------------------------------
27+
28+
# This file is used for handwritten extensions to the generated code. Example:
29+
# https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
30+
def patch_sdk():
31+
pass
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# --------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for license information.
4+
# Code generated by Microsoft (R) AutoRest Code Generator.
5+
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
6+
# --------------------------------------------------------------------------
7+
8+
from azure.core.pipeline.transport import HttpRequest
9+
10+
def _convert_request(request, files=None):
11+
data = request.content if not files else None
12+
request = HttpRequest(method=request.method, url=request.url, headers=request.headers, data=data)
13+
if files:
14+
request.set_formdata_body(files)
15+
return request
16+
17+
def _format_url_section(template, **kwargs):
18+
components = template.split("/")
19+
while components:
20+
try:
21+
return template.format(**kwargs)
22+
except KeyError as key:
23+
formatted_components = template.split("/")
24+
components = [
25+
c for c in formatted_components if "{}".format(key.args[0]) not in c
26+
]
27+
template = "/".join(components)

sdk/resourceconnector/azure-mgmt-resourceconnector/azure/mgmt/resourceconnector/aio/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,8 @@
88

99
from ._appliances import Appliances
1010
__all__ = ['Appliances']
11+
12+
# `._patch.py` is used for handwritten extensions to the generated code
13+
# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
14+
from ._patch import patch_sdk
15+
patch_sdk()

0 commit comments

Comments
 (0)