Skip to content

Commit 14caf29

Browse files
author
SDKAuto
committed
CodeGen from PR 17184 in Azure/azure-rest-api-specs
Merge 7b3d88167d6d81b23ddfb74821b4996973dfedd0 into 8253d07
1 parent 6b0495d commit 14caf29

File tree

249 files changed

+82199
-26443
lines changed

Some content is hidden

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

249 files changed

+82199
-26443
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.2",
2+
"autorest": "3.7.2",
33
"use": [
4-
"@autorest/python@5.8.1",
5-
"@autorest/modelerfour@4.19.2"
4+
"@autorest/python@5.12.0",
5+
"@autorest/modelerfour@4.19.3"
66
],
7-
"commit": "c803720c6bcfcb0fcf4c97f3463ec33a18f9e55c",
7+
"commit": "b950b9ddde4375b5786c72e8fe1677eb879bdf39",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
9-
"autorest_command": "autorest specification/appplatform/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.1 --use=@autorest/modelerfour@4.19.2 --version=3.4.2",
9+
"autorest_command": "autorest specification/appplatform/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/python@5.12.0 --use=@autorest/modelerfour@4.19.3 --version=3.7.2",
1010
"readme": "specification/appplatform/resource-manager/readme.md"
1111
}

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/_app_platform_management_client.py

Lines changed: 234 additions & 4 deletions
Large diffs are not rendered by default.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
from azure.core.configuration import Configuration
1414
from azure.core.pipeline import policies
15-
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
15+
from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy
1616

1717
from ._version import VERSION
1818

@@ -68,4 +68,4 @@ def _configure(
6868
self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs)
6969
self.authentication_policy = kwargs.get('authentication_policy')
7070
if self.credential and not self.authentication_policy:
71-
self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
71+
self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/aio/_app_platform_management_client.py

Lines changed: 235 additions & 4 deletions
Large diffs are not rendered by default.

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/aio/_configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
from azure.core.configuration import Configuration
1414
from azure.core.pipeline import policies
15-
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
15+
from azure.mgmt.core.policies import ARMHttpLoggingPolicy, AsyncARMChallengeAuthenticationPolicy
1616

1717
from .._version import VERSION
1818

@@ -64,4 +64,4 @@ def _configure(
6464
self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs)
6565
self.authentication_policy = kwargs.get('authentication_policy')
6666
if self.credential and not self.authentication_policy:
67-
self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
67+
self.authentication_policy = AsyncARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2019_05_01_preview/__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__ = ['AppPlatformManagementClient']
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/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2019_05_01_preview/_app_platform_management_client.py

Lines changed: 61 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -6,32 +6,22 @@
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, Optional, TYPE_CHECKING
1011

12+
from azure.core.rest import HttpRequest, HttpResponse
1113
from azure.mgmt.core import ARMPipelineClient
1214
from msrest import Deserializer, Serializer
1315

16+
from . import models
17+
from ._configuration import AppPlatformManagementClientConfiguration
18+
from .operations import AppsOperations, BindingsOperations, CertificatesOperations, CustomDomainsOperations, DeploymentsOperations, Operations, RuntimeVersionsOperations, ServicesOperations, SkuOperations
19+
1420
if TYPE_CHECKING:
1521
# pylint: disable=unused-import,ungrouped-imports
16-
from typing import Any, Optional
17-
1822
from azure.core.credentials import TokenCredential
19-
from azure.core.pipeline.transport import HttpRequest, HttpResponse
20-
21-
from ._configuration import AppPlatformManagementClientConfiguration
22-
from .operations import ServicesOperations
23-
from .operations import AppsOperations
24-
from .operations import BindingsOperations
25-
from .operations import CertificatesOperations
26-
from .operations import CustomDomainsOperations
27-
from .operations import DeploymentsOperations
28-
from .operations import Operations
29-
from .operations import RuntimeVersionsOperations
30-
from .operations import SkuOperations
31-
from . import models
32-
3323

34-
class AppPlatformManagementClient(object):
24+
class AppPlatformManagementClient:
3525
"""REST API for Azure Spring Cloud.
3626
3727
:ivar services: ServicesOperations operations
@@ -41,79 +31,82 @@ class AppPlatformManagementClient(object):
4131
:ivar bindings: BindingsOperations operations
4232
:vartype bindings: azure.mgmt.appplatform.v2019_05_01_preview.operations.BindingsOperations
4333
:ivar certificates: CertificatesOperations operations
44-
:vartype certificates: azure.mgmt.appplatform.v2019_05_01_preview.operations.CertificatesOperations
34+
:vartype certificates:
35+
azure.mgmt.appplatform.v2019_05_01_preview.operations.CertificatesOperations
4536
:ivar custom_domains: CustomDomainsOperations operations
46-
:vartype custom_domains: azure.mgmt.appplatform.v2019_05_01_preview.operations.CustomDomainsOperations
37+
:vartype custom_domains:
38+
azure.mgmt.appplatform.v2019_05_01_preview.operations.CustomDomainsOperations
4739
:ivar deployments: DeploymentsOperations operations
48-
:vartype deployments: azure.mgmt.appplatform.v2019_05_01_preview.operations.DeploymentsOperations
40+
:vartype deployments:
41+
azure.mgmt.appplatform.v2019_05_01_preview.operations.DeploymentsOperations
4942
:ivar operations: Operations operations
5043
:vartype operations: azure.mgmt.appplatform.v2019_05_01_preview.operations.Operations
5144
:ivar runtime_versions: RuntimeVersionsOperations operations
52-
:vartype runtime_versions: azure.mgmt.appplatform.v2019_05_01_preview.operations.RuntimeVersionsOperations
45+
:vartype runtime_versions:
46+
azure.mgmt.appplatform.v2019_05_01_preview.operations.RuntimeVersionsOperations
5347
:ivar sku: SkuOperations operations
5448
:vartype sku: azure.mgmt.appplatform.v2019_05_01_preview.operations.SkuOperations
5549
:param credential: Credential needed for the client to connect to Azure.
5650
:type credential: ~azure.core.credentials.TokenCredential
57-
:param subscription_id: Gets subscription ID which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
51+
:param subscription_id: Gets subscription ID which uniquely identify the Microsoft Azure
52+
subscription. The subscription ID forms part of the URI for every service call.
5853
:type subscription_id: str
59-
:param str base_url: Service URL
60-
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
54+
:param base_url: Service URL. Default value is 'https://management.azure.com'.
55+
:type base_url: str
56+
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
57+
Retry-After header is present.
6158
"""
6259

6360
def __init__(
6461
self,
65-
credential, # type: "TokenCredential"
66-
subscription_id, # type: str
67-
base_url=None, # type: Optional[str]
68-
**kwargs # type: Any
69-
):
70-
# type: (...) -> None
71-
if not base_url:
72-
base_url = 'https://management.azure.com'
73-
self._config = AppPlatformManagementClientConfiguration(credential, subscription_id, **kwargs)
62+
credential: "TokenCredential",
63+
subscription_id: str,
64+
base_url: str = "https://management.azure.com",
65+
**kwargs: Any
66+
) -> None:
67+
self._config = AppPlatformManagementClientConfiguration(credential=credential, subscription_id=subscription_id, **kwargs)
7468
self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs)
7569

7670
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
7771
self._serialize = Serializer(client_models)
78-
self._serialize.client_side_validation = False
7972
self._deserialize = Deserializer(client_models)
80-
81-
self.services = ServicesOperations(
82-
self._client, self._config, self._serialize, self._deserialize)
83-
self.apps = AppsOperations(
84-
self._client, self._config, self._serialize, self._deserialize)
85-
self.bindings = BindingsOperations(
86-
self._client, self._config, self._serialize, self._deserialize)
87-
self.certificates = CertificatesOperations(
88-
self._client, self._config, self._serialize, self._deserialize)
89-
self.custom_domains = CustomDomainsOperations(
90-
self._client, self._config, self._serialize, self._deserialize)
91-
self.deployments = DeploymentsOperations(
92-
self._client, self._config, self._serialize, self._deserialize)
93-
self.operations = Operations(
94-
self._client, self._config, self._serialize, self._deserialize)
95-
self.runtime_versions = RuntimeVersionsOperations(
96-
self._client, self._config, self._serialize, self._deserialize)
97-
self.sku = SkuOperations(
98-
self._client, self._config, self._serialize, self._deserialize)
99-
100-
def _send_request(self, http_request, **kwargs):
101-
# type: (HttpRequest, Any) -> HttpResponse
73+
self._serialize.client_side_validation = False
74+
self.services = ServicesOperations(self._client, self._config, self._serialize, self._deserialize)
75+
self.apps = AppsOperations(self._client, self._config, self._serialize, self._deserialize)
76+
self.bindings = BindingsOperations(self._client, self._config, self._serialize, self._deserialize)
77+
self.certificates = CertificatesOperations(self._client, self._config, self._serialize, self._deserialize)
78+
self.custom_domains = CustomDomainsOperations(self._client, self._config, self._serialize, self._deserialize)
79+
self.deployments = DeploymentsOperations(self._client, self._config, self._serialize, self._deserialize)
80+
self.operations = Operations(self._client, self._config, self._serialize, self._deserialize)
81+
self.runtime_versions = RuntimeVersionsOperations(self._client, self._config, self._serialize, self._deserialize)
82+
self.sku = SkuOperations(self._client, self._config, self._serialize, self._deserialize)
83+
84+
85+
def _send_request(
86+
self,
87+
request, # type: HttpRequest
88+
**kwargs: Any
89+
) -> HttpResponse:
10290
"""Runs the network request through the client's chained policies.
10391
104-
:param http_request: The network request you want to make. Required.
105-
:type http_request: ~azure.core.pipeline.transport.HttpRequest
106-
:keyword bool stream: Whether the response payload will be streamed. Defaults to True.
92+
>>> from azure.core.rest import HttpRequest
93+
>>> request = HttpRequest("GET", "https://www.example.org/")
94+
<HttpRequest [GET], url: 'https://www.example.org/'>
95+
>>> response = client._send_request(request)
96+
<HttpResponse: 200 OK>
97+
98+
For more information on this code flow, see https://aka.ms/azsdk/python/protocol/quickstart
99+
100+
:param request: The network request you want to make. Required.
101+
:type request: ~azure.core.rest.HttpRequest
102+
:keyword bool stream: Whether the response payload will be streamed. Defaults to False.
107103
:return: The response of your network call. Does not do error handling on your response.
108-
:rtype: ~azure.core.pipeline.transport.HttpResponse
104+
:rtype: ~azure.core.rest.HttpResponse
109105
"""
110-
path_format_arguments = {
111-
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'),
112-
}
113-
http_request.url = self._client.format_url(http_request.url, **path_format_arguments)
114-
stream = kwargs.pop("stream", True)
115-
pipeline_response = self._client._pipeline.run(http_request, stream=stream, **kwargs)
116-
return pipeline_response.http_response
106+
107+
request_copy = deepcopy(request)
108+
request_copy.url = self._client.format_url(request_copy.url)
109+
return self._client.send_request(request_copy, **kwargs)
117110

118111
def close(self):
119112
# type: () -> None

sdk/appplatform/azure-mgmt-appplatform/azure/mgmt/appplatform/v2019_05_01_preview/_configuration.py

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,16 @@
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

@@ -35,16 +33,15 @@ class AppPlatformManagementClientConfiguration(Configuration):
3533

3634
def __init__(
3735
self,
38-
credential, # type: "TokenCredential"
39-
subscription_id, # type: str
40-
**kwargs # type: Any
41-
):
42-
# type: (...) -> None
36+
credential: "TokenCredential",
37+
subscription_id: str,
38+
**kwargs: Any
39+
) -> None:
40+
super(AppPlatformManagementClientConfiguration, self).__init__(**kwargs)
4341
if credential is None:
4442
raise ValueError("Parameter 'credential' must not be None.")
4543
if subscription_id is None:
4644
raise ValueError("Parameter 'subscription_id' must not be None.")
47-
super(AppPlatformManagementClientConfiguration, self).__init__(**kwargs)
4845

4946
self.credential = credential
5047
self.subscription_id = subscription_id
@@ -68,4 +65,4 @@ def _configure(
6865
self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs)
6966
self.authentication_policy = kwargs.get('authentication_policy')
7067
if self.credential and not self.authentication_policy:
71-
self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
68+
self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)

0 commit comments

Comments
 (0)