66# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77# --------------------------------------------------------------------------
88
9+ from copy import deepcopy
910from typing import TYPE_CHECKING
1011
1112from azure .mgmt .core import ARMPipelineClient
1213from msrest import Deserializer , Serializer
1314
15+ from . import models
16+ from ._configuration import AppPlatformManagementClientConfiguration
17+ from .operations import AppsOperations , BindingsOperations , CertificatesOperations , CustomDomainsOperations , DeploymentsOperations , Operations , RuntimeVersionsOperations , ServicesOperations , SkuOperations
18+
1419if TYPE_CHECKING :
1520 # pylint: disable=unused-import,ungrouped-imports
1621 from typing import Any , Optional
1722
1823 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-
24+ from azure .core .rest import HttpRequest , HttpResponse
3325
3426class AppPlatformManagementClient (object ):
3527 """REST API for Azure Spring Cloud.
@@ -41,79 +33,84 @@ class AppPlatformManagementClient(object):
4133 :ivar bindings: BindingsOperations operations
4234 :vartype bindings: azure.mgmt.appplatform.v2019_05_01_preview.operations.BindingsOperations
4335 :ivar certificates: CertificatesOperations operations
44- :vartype certificates: azure.mgmt.appplatform.v2019_05_01_preview.operations.CertificatesOperations
36+ :vartype certificates:
37+ azure.mgmt.appplatform.v2019_05_01_preview.operations.CertificatesOperations
4538 :ivar custom_domains: CustomDomainsOperations operations
46- :vartype custom_domains: azure.mgmt.appplatform.v2019_05_01_preview.operations.CustomDomainsOperations
39+ :vartype custom_domains:
40+ azure.mgmt.appplatform.v2019_05_01_preview.operations.CustomDomainsOperations
4741 :ivar deployments: DeploymentsOperations operations
48- :vartype deployments: azure.mgmt.appplatform.v2019_05_01_preview.operations.DeploymentsOperations
42+ :vartype deployments:
43+ azure.mgmt.appplatform.v2019_05_01_preview.operations.DeploymentsOperations
4944 :ivar operations: Operations operations
5045 :vartype operations: azure.mgmt.appplatform.v2019_05_01_preview.operations.Operations
5146 :ivar runtime_versions: RuntimeVersionsOperations operations
52- :vartype runtime_versions: azure.mgmt.appplatform.v2019_05_01_preview.operations.RuntimeVersionsOperations
47+ :vartype runtime_versions:
48+ azure.mgmt.appplatform.v2019_05_01_preview.operations.RuntimeVersionsOperations
5349 :ivar sku: SkuOperations operations
5450 :vartype sku: azure.mgmt.appplatform.v2019_05_01_preview.operations.SkuOperations
5551 :param credential: Credential needed for the client to connect to Azure.
5652 :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.
53+ :param subscription_id: Gets subscription ID which uniquely identify the Microsoft Azure
54+ subscription. The subscription ID forms part of the URI for every service call.
5855 :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.
56+ :param base_url: Service URL. Default value is 'https://management.azure.com'.
57+ :type base_url: str
58+ :keyword int polling_interval: Default waiting time between two polls for LRO operations if no
59+ Retry-After header is present.
6160 """
6261
6362 def __init__ (
6463 self ,
6564 credential , # type: "TokenCredential"
6665 subscription_id , # type: str
67- base_url = None , # type: Optional[ str]
66+ base_url = "https://management.azure.com" , # type: str
6867 ** kwargs # type: Any
6968 ):
7069 # type: (...) -> None
71- if not base_url :
72- base_url = 'https://management.azure.com'
73- self ._config = AppPlatformManagementClientConfiguration (credential , subscription_id , ** kwargs )
70+ self ._config = AppPlatformManagementClientConfiguration (credential = credential , subscription_id = subscription_id , ** kwargs )
7471 self ._client = ARMPipelineClient (base_url = base_url , config = self ._config , ** kwargs )
7572
7673 client_models = {k : v for k , v in models .__dict__ .items () if isinstance (v , type )}
7774 self ._serialize = Serializer (client_models )
78- self ._serialize .client_side_validation = False
7975 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
76+ self ._serialize .client_side_validation = False
77+ self .services = ServicesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
78+ self .apps = AppsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
79+ self .bindings = BindingsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
80+ self .certificates = CertificatesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
81+ self .custom_domains = CustomDomainsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
82+ self .deployments = DeploymentsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
83+ self .operations = Operations (self ._client , self ._config , self ._serialize , self ._deserialize )
84+ self .runtime_versions = RuntimeVersionsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
85+ self .sku = SkuOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
86+
87+
88+ def _send_request (
89+ self ,
90+ request , # type: HttpRequest
91+ ** kwargs # type: Any
92+ ):
93+ # type: (...) -> HttpResponse
10294 """Runs the network request through the client's chained policies.
10395
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.
96+ >>> from azure.core.rest import HttpRequest
97+ >>> request = HttpRequest("GET", "https://www.example.org/")
98+ <HttpRequest [GET], url: 'https://www.example.org/'>
99+ >>> response = client._send_request(request)
100+ <HttpResponse: 200 OK>
101+
102+ For more information on this code flow, see https://aka.ms/azsdk/python/protocol/quickstart
103+
104+ :param request: The network request you want to make. Required.
105+ :type request: ~azure.core.rest.HttpRequest
106+ :keyword bool stream: Whether the response payload will be streamed. Defaults to False.
107107 :return: The response of your network call. Does not do error handling on your response.
108- :rtype: ~azure.core.pipeline.transport .HttpResponse
108+ :rtype: ~azure.core.rest .HttpResponse
109109 """
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
110+
111+ request_copy = deepcopy (request )
112+ request_copy .url = self ._client .format_url (request_copy .url )
113+ return self ._client .send_request (request_copy , ** kwargs )
117114
118115 def close (self ):
119116 # type: () -> None
0 commit comments