88
99from copy import deepcopy
1010from typing import Any , TYPE_CHECKING
11+ from typing_extensions import Self
1112
13+ from azure .core .pipeline import policies
1214from azure .core .rest import HttpRequest , HttpResponse
1315from azure .mgmt .core import ARMPipelineClient
16+ from azure .mgmt .core .policies import ARMAutoResourceProviderRegistrationPolicy
1417
1518from . import models as _models
1619from ._configuration import ApiCenterMgmtClientConfiguration
1720from ._serialization import Deserializer , Serializer
1821from .operations import (
1922 ApiDefinitionsOperations ,
23+ ApiSourcesOperations ,
2024 ApiVersionsOperations ,
2125 ApisOperations ,
26+ DeletedServicesOperations ,
2227 DeploymentsOperations ,
2328 EnvironmentsOperations ,
2429 MetadataSchemasOperations ,
2833)
2934
3035if TYPE_CHECKING :
31- # pylint: disable=unused-import,ungrouped-imports
3236 from azure .core .credentials import TokenCredential
3337
3438
35- class ApiCenterMgmtClient : # pylint: disable=client-accepts-api-version-keyword, too-many-instance-attributes
39+ class ApiCenterMgmtClient : # pylint: disable=too-many-instance-attributes
3640 """Azure API Center Resource Provider.
3741
3842 :ivar operations: Operations operations
3943 :vartype operations: azure.mgmt.apicenter.operations.Operations
44+ :ivar deleted_services: DeletedServicesOperations operations
45+ :vartype deleted_services: azure.mgmt.apicenter.operations.DeletedServicesOperations
4046 :ivar services: ServicesOperations operations
4147 :vartype services: azure.mgmt.apicenter.operations.ServicesOperations
4248 :ivar metadata_schemas: MetadataSchemasOperations operations
4349 :vartype metadata_schemas: azure.mgmt.apicenter.operations.MetadataSchemasOperations
4450 :ivar workspaces: WorkspacesOperations operations
4551 :vartype workspaces: azure.mgmt.apicenter.operations.WorkspacesOperations
52+ :ivar api_sources: ApiSourcesOperations operations
53+ :vartype api_sources: azure.mgmt.apicenter.operations.ApiSourcesOperations
4654 :ivar apis: ApisOperations operations
4755 :vartype apis: azure.mgmt.apicenter.operations.ApisOperations
4856 :ivar deployments: DeploymentsOperations operations
@@ -59,8 +67,8 @@ class ApiCenterMgmtClient: # pylint: disable=client-accepts-api-version-keyword
5967 :type subscription_id: str
6068 :param base_url: Service URL. Default value is "https://management.azure.com".
6169 :type base_url: str
62- :keyword api_version: Api Version. Default value is "2024-03 -01". Note that overriding this
63- default value may result in unsupported behavior.
70+ :keyword api_version: Api Version. Default value is "2024-06 -01-preview ". Note that overriding
71+ this default value may result in unsupported behavior.
6472 :paramtype api_version: str
6573 :keyword int polling_interval: Default waiting time between two polls for LRO operations if no
6674 Retry-After header is present.
@@ -76,25 +84,47 @@ def __init__(
7684 self ._config = ApiCenterMgmtClientConfiguration (
7785 credential = credential , subscription_id = subscription_id , ** kwargs
7886 )
79- self ._client : ARMPipelineClient = ARMPipelineClient (base_url = base_url , config = self ._config , ** kwargs )
87+ _policies = kwargs .pop ("policies" , None )
88+ if _policies is None :
89+ _policies = [
90+ policies .RequestIdPolicy (** kwargs ),
91+ self ._config .headers_policy ,
92+ self ._config .user_agent_policy ,
93+ self ._config .proxy_policy ,
94+ policies .ContentDecodePolicy (** kwargs ),
95+ ARMAutoResourceProviderRegistrationPolicy (),
96+ self ._config .redirect_policy ,
97+ self ._config .retry_policy ,
98+ self ._config .authentication_policy ,
99+ self ._config .custom_hook_policy ,
100+ self ._config .logging_policy ,
101+ policies .DistributedTracingPolicy (** kwargs ),
102+ policies .SensitiveHeaderCleanupPolicy (** kwargs ) if self ._config .redirect_policy else None ,
103+ self ._config .http_logging_policy ,
104+ ]
105+ self ._client : ARMPipelineClient = ARMPipelineClient (base_url = base_url , policies = _policies , ** kwargs )
80106
81107 client_models = {k : v for k , v in _models .__dict__ .items () if isinstance (v , type )}
82108 self ._serialize = Serializer (client_models )
83109 self ._deserialize = Deserializer (client_models )
84110 self ._serialize .client_side_validation = False
85111 self .operations = Operations (self ._client , self ._config , self ._serialize , self ._deserialize )
112+ self .deleted_services = DeletedServicesOperations (
113+ self ._client , self ._config , self ._serialize , self ._deserialize
114+ )
86115 self .services = ServicesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
87116 self .metadata_schemas = MetadataSchemasOperations (
88117 self ._client , self ._config , self ._serialize , self ._deserialize
89118 )
90119 self .workspaces = WorkspacesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
120+ self .api_sources = ApiSourcesOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
91121 self .apis = ApisOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
92122 self .deployments = DeploymentsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
93123 self .api_versions = ApiVersionsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
94124 self .api_definitions = ApiDefinitionsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
95125 self .environments = EnvironmentsOperations (self ._client , self ._config , self ._serialize , self ._deserialize )
96126
97- def _send_request (self , request : HttpRequest , ** kwargs : Any ) -> HttpResponse :
127+ def _send_request (self , request : HttpRequest , * , stream : bool = False , * *kwargs : Any ) -> HttpResponse :
98128 """Runs the network request through the client's chained policies.
99129
100130 >>> from azure.core.rest import HttpRequest
@@ -114,12 +144,12 @@ def _send_request(self, request: HttpRequest, **kwargs: Any) -> HttpResponse:
114144
115145 request_copy = deepcopy (request )
116146 request_copy .url = self ._client .format_url (request_copy .url )
117- return self ._client .send_request (request_copy , ** kwargs )
147+ return self ._client .send_request (request_copy , stream = stream , ** kwargs ) # type: ignore
118148
119149 def close (self ) -> None :
120150 self ._client .close ()
121151
122- def __enter__ (self ) -> "ApiCenterMgmtClient" :
152+ def __enter__ (self ) -> Self :
123153 self ._client .__enter__ ()
124154 return self
125155
0 commit comments