Skip to content

Commit dd179b8

Browse files
committed
update
1 parent 20eb061 commit dd179b8

45 files changed

Lines changed: 1052 additions & 334 deletions

File tree

Some content is hidden

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

src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class ContainerServiceClientConfiguration: # pylint: disable=too-many-instance-
3131
:param cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is
3232
None.
3333
:type cloud_setting: ~azure.core.AzureClouds
34-
:keyword api_version: Api Version. Default value is "2025-08-02-preview". Note that overriding
34+
:keyword api_version: Api Version. Default value is "2025-09-02-preview". Note that overriding
3535
this default value may result in unsupported behavior.
3636
:paramtype api_version: str
3737
"""
@@ -43,7 +43,7 @@ def __init__(
4343
cloud_setting: Optional["AzureClouds"] = None,
4444
**kwargs: Any
4545
) -> None:
46-
api_version: str = kwargs.pop("api_version", "2025-08-02-preview")
46+
api_version: str = kwargs.pop("api_version", "2025-09-02-preview")
4747

4848
if credential is None:
4949
raise ValueError("Parameter 'credential' must not be None.")

src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/_container_service_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class ContainerServiceClient: # pylint: disable=too-many-instance-attributes
105105
:keyword cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is
106106
None.
107107
:paramtype cloud_setting: ~azure.core.AzureClouds
108-
:keyword api_version: Api Version. Default value is "2025-08-02-preview". Note that overriding
108+
:keyword api_version: Api Version. Default value is "2025-09-02-preview". Note that overriding
109109
this default value may result in unsupported behavior.
110110
:paramtype api_version: str
111111
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no

src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class ContainerServiceClientConfiguration: # pylint: disable=too-many-instance-
3131
:param cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is
3232
None.
3333
:type cloud_setting: ~azure.core.AzureClouds
34-
:keyword api_version: Api Version. Default value is "2025-08-02-preview". Note that overriding
34+
:keyword api_version: Api Version. Default value is "2025-09-02-preview". Note that overriding
3535
this default value may result in unsupported behavior.
3636
:paramtype api_version: str
3737
"""
@@ -43,7 +43,7 @@ def __init__(
4343
cloud_setting: Optional["AzureClouds"] = None,
4444
**kwargs: Any
4545
) -> None:
46-
api_version: str = kwargs.pop("api_version", "2025-08-02-preview")
46+
api_version: str = kwargs.pop("api_version", "2025-09-02-preview")
4747

4848
if credential is None:
4949
raise ValueError("Parameter 'credential' must not be None.")

src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/_container_service_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class ContainerServiceClient: # pylint: disable=too-many-instance-attributes
109109
:keyword cloud_setting: The cloud setting for which to get the ARM endpoint. Default value is
110110
None.
111111
:paramtype cloud_setting: ~azure.core.AzureClouds
112-
:keyword api_version: Api Version. Default value is "2025-08-02-preview". Note that overriding
112+
:keyword api_version: Api Version. Default value is "2025-09-02-preview". Note that overriding
113113
this default value may result in unsupported behavior.
114114
:paramtype api_version: str
115115
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no

src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_agent_pools_operations.py

Lines changed: 40 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,10 @@ async def _abort_latest_operation_initial(
114114
except (StreamConsumedError, StreamClosedError):
115115
pass
116116
map_error(status_code=response.status_code, response=response, error_map=error_map)
117-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
117+
error = self._deserialize.failsafe_deserialize(
118+
_models.ErrorResponse,
119+
pipeline_response,
120+
)
118121
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
119122

120123
response_headers = {}
@@ -272,7 +275,10 @@ async def get_next(next_link=None):
272275

273276
if response.status_code not in [200]:
274277
map_error(status_code=response.status_code, response=response, error_map=error_map)
275-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
278+
error = self._deserialize.failsafe_deserialize(
279+
_models.ErrorResponse,
280+
pipeline_response,
281+
)
276282
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
277283

278284
return pipeline_response
@@ -332,7 +338,10 @@ async def get(
332338

333339
if response.status_code not in [200]:
334340
map_error(status_code=response.status_code, response=response, error_map=error_map)
335-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
341+
error = self._deserialize.failsafe_deserialize(
342+
_models.ErrorResponse,
343+
pipeline_response,
344+
)
336345
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
337346

338347
deserialized = self._deserialize("AgentPool", pipeline_response.http_response)
@@ -405,7 +414,10 @@ async def _create_or_update_initial(
405414
except (StreamConsumedError, StreamClosedError):
406415
pass
407416
map_error(status_code=response.status_code, response=response, error_map=error_map)
408-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
417+
error = self._deserialize.failsafe_deserialize(
418+
_models.ErrorResponse,
419+
pipeline_response,
420+
)
409421
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
410422

411423
deserialized = response.stream_download(self._client._pipeline, decompress=_decompress)
@@ -633,7 +645,10 @@ async def _delete_initial(
633645
except (StreamConsumedError, StreamClosedError):
634646
pass
635647
map_error(status_code=response.status_code, response=response, error_map=error_map)
636-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
648+
error = self._deserialize.failsafe_deserialize(
649+
_models.ErrorResponse,
650+
pipeline_response,
651+
)
637652
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
638653

639654
response_headers = {}
@@ -774,7 +789,10 @@ async def get_upgrade_profile(
774789

775790
if response.status_code not in [200]:
776791
map_error(status_code=response.status_code, response=response, error_map=error_map)
777-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
792+
error = self._deserialize.failsafe_deserialize(
793+
_models.ErrorResponse,
794+
pipeline_response,
795+
)
778796
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
779797

780798
deserialized = self._deserialize("AgentPoolUpgradeProfile", pipeline_response.http_response)
@@ -826,7 +844,10 @@ async def _complete_upgrade_initial(
826844
except (StreamConsumedError, StreamClosedError):
827845
pass
828846
map_error(status_code=response.status_code, response=response, error_map=error_map)
829-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
847+
error = self._deserialize.failsafe_deserialize(
848+
_models.ErrorResponse,
849+
pipeline_response,
850+
)
830851
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
831852

832853
response_headers = {}
@@ -963,7 +984,10 @@ async def _delete_machines_initial(
963984
except (StreamConsumedError, StreamClosedError):
964985
pass
965986
map_error(status_code=response.status_code, response=response, error_map=error_map)
966-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
987+
error = self._deserialize.failsafe_deserialize(
988+
_models.ErrorResponse,
989+
pipeline_response,
990+
)
967991
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
968992

969993
response_headers = {}
@@ -1164,7 +1188,10 @@ async def get_available_agent_pool_versions(
11641188

11651189
if response.status_code not in [200]:
11661190
map_error(status_code=response.status_code, response=response, error_map=error_map)
1167-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
1191+
error = self._deserialize.failsafe_deserialize(
1192+
_models.ErrorResponse,
1193+
pipeline_response,
1194+
)
11681195
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
11691196

11701197
deserialized = self._deserialize("AgentPoolAvailableVersions", pipeline_response.http_response)
@@ -1216,7 +1243,10 @@ async def _upgrade_node_image_version_initial(
12161243
except (StreamConsumedError, StreamClosedError):
12171244
pass
12181245
map_error(status_code=response.status_code, response=response, error_map=error_map)
1219-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
1246+
error = self._deserialize.failsafe_deserialize(
1247+
_models.ErrorResponse,
1248+
pipeline_response,
1249+
)
12201250
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
12211251

12221252
response_headers = {}

src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_container_service_operations.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,10 @@ async def get_next(next_link=None):
130130

131131
if response.status_code not in [200]:
132132
map_error(status_code=response.status_code, response=response, error_map=error_map)
133-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
133+
error = self._deserialize.failsafe_deserialize(
134+
_models.ErrorResponse,
135+
pipeline_response,
136+
)
134137
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
135138

136139
return pipeline_response

src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_identity_bindings_operations.py

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@ async def get_next(next_link=None):
145145

146146
if response.status_code not in [200]:
147147
map_error(status_code=response.status_code, response=response, error_map=error_map)
148-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
148+
error = self._deserialize.failsafe_deserialize(
149+
_models.ErrorResponse,
150+
pipeline_response,
151+
)
149152
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
150153

151154
return pipeline_response
@@ -205,7 +208,10 @@ async def get(
205208

206209
if response.status_code not in [200]:
207210
map_error(status_code=response.status_code, response=response, error_map=error_map)
208-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
211+
error = self._deserialize.failsafe_deserialize(
212+
_models.ErrorResponse,
213+
pipeline_response,
214+
)
209215
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
210216

211217
deserialized = self._deserialize("IdentityBinding", pipeline_response.http_response)
@@ -274,7 +280,10 @@ async def _create_or_update_initial(
274280
except (StreamConsumedError, StreamClosedError):
275281
pass
276282
map_error(status_code=response.status_code, response=response, error_map=error_map)
277-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
283+
error = self._deserialize.failsafe_deserialize(
284+
_models.ErrorResponse,
285+
pipeline_response,
286+
)
278287
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
279288

280289
response_headers = {}
@@ -483,7 +492,10 @@ async def _delete_initial(
483492
except (StreamConsumedError, StreamClosedError):
484493
pass
485494
map_error(status_code=response.status_code, response=response, error_map=error_map)
486-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
495+
error = self._deserialize.failsafe_deserialize(
496+
_models.ErrorResponse,
497+
pipeline_response,
498+
)
487499
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
488500

489501
response_headers = {}

src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_jwt_authenticators_operations.py

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@ async def get_next(next_link=None):
145145

146146
if response.status_code not in [200]:
147147
map_error(status_code=response.status_code, response=response, error_map=error_map)
148-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
148+
error = self._deserialize.failsafe_deserialize(
149+
_models.ErrorResponse,
150+
pipeline_response,
151+
)
149152
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
150153

151154
return pipeline_response
@@ -205,7 +208,10 @@ async def get(
205208

206209
if response.status_code not in [200]:
207210
map_error(status_code=response.status_code, response=response, error_map=error_map)
208-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
211+
error = self._deserialize.failsafe_deserialize(
212+
_models.ErrorResponse,
213+
pipeline_response,
214+
)
209215
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
210216

211217
deserialized = self._deserialize("JWTAuthenticator", pipeline_response.http_response)
@@ -274,7 +280,10 @@ async def _create_or_update_initial(
274280
except (StreamConsumedError, StreamClosedError):
275281
pass
276282
map_error(status_code=response.status_code, response=response, error_map=error_map)
277-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
283+
error = self._deserialize.failsafe_deserialize(
284+
_models.ErrorResponse,
285+
pipeline_response,
286+
)
278287
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
279288

280289
response_headers = {}
@@ -490,7 +499,10 @@ async def _delete_initial(
490499
except (StreamConsumedError, StreamClosedError):
491500
pass
492501
map_error(status_code=response.status_code, response=response, error_map=error_map)
493-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
502+
error = self._deserialize.failsafe_deserialize(
503+
_models.ErrorResponse,
504+
pipeline_response,
505+
)
494506
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
495507

496508
response_headers = {}

src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_load_balancers_operations.py

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@ async def get_next(next_link=None):
145145

146146
if response.status_code not in [200]:
147147
map_error(status_code=response.status_code, response=response, error_map=error_map)
148-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
148+
error = self._deserialize.failsafe_deserialize(
149+
_models.ErrorResponse,
150+
pipeline_response,
151+
)
149152
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
150153

151154
return pipeline_response
@@ -205,7 +208,10 @@ async def get(
205208

206209
if response.status_code not in [200]:
207210
map_error(status_code=response.status_code, response=response, error_map=error_map)
208-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
211+
error = self._deserialize.failsafe_deserialize(
212+
_models.ErrorResponse,
213+
pipeline_response,
214+
)
209215
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
210216

211217
deserialized = self._deserialize("LoadBalancer", pipeline_response.http_response)
@@ -352,7 +358,10 @@ async def create_or_update(
352358

353359
if response.status_code not in [200, 201]:
354360
map_error(status_code=response.status_code, response=response, error_map=error_map)
355-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
361+
error = self._deserialize.failsafe_deserialize(
362+
_models.ErrorResponse,
363+
pipeline_response,
364+
)
356365
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
357366

358367
deserialized = self._deserialize("LoadBalancer", pipeline_response.http_response)
@@ -404,7 +413,10 @@ async def _delete_initial(
404413
except (StreamConsumedError, StreamClosedError):
405414
pass
406415
map_error(status_code=response.status_code, response=response, error_map=error_map)
407-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
416+
error = self._deserialize.failsafe_deserialize(
417+
_models.ErrorResponse,
418+
pipeline_response,
419+
)
408420
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
409421

410422
response_headers = {}

src/aks-preview/azext_aks_preview/vendored_sdks/azure_mgmt_preview_aks/aio/operations/_machines_operations.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,10 @@ async def get_next(next_link=None):
142142

143143
if response.status_code not in [200]:
144144
map_error(status_code=response.status_code, response=response, error_map=error_map)
145-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
145+
error = self._deserialize.failsafe_deserialize(
146+
_models.ErrorResponse,
147+
pipeline_response,
148+
)
146149
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
147150

148151
return pipeline_response
@@ -205,7 +208,10 @@ async def get(
205208

206209
if response.status_code not in [200]:
207210
map_error(status_code=response.status_code, response=response, error_map=error_map)
208-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
211+
error = self._deserialize.failsafe_deserialize(
212+
_models.ErrorResponse,
213+
pipeline_response,
214+
)
209215
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
210216

211217
deserialized = self._deserialize("Machine", pipeline_response.http_response)
@@ -280,7 +286,10 @@ async def _create_or_update_initial(
280286
except (StreamConsumedError, StreamClosedError):
281287
pass
282288
map_error(status_code=response.status_code, response=response, error_map=error_map)
283-
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response)
289+
error = self._deserialize.failsafe_deserialize(
290+
_models.ErrorResponse,
291+
pipeline_response,
292+
)
284293
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
285294

286295
response_headers = {}

0 commit comments

Comments
 (0)