forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 27306 in Azure/azure-rest-api-specs
Merge a434a5a7ee851abc96218443e66a5ebb57911fee into 014f813fcf8339ccb862df03c39557cd54766941
- Loading branch information
SDKAuto
committed
Jan 29, 2024
1 parent
fedcac4
commit 420d5fa
Showing
57 changed files
with
4,248 additions
and
210 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"commit": "ec882de9043fe225777bbf5fd28ed5259b0949db", | ||
"commit": "e847bf1bd278acab5a8efd37f6be3d6a1e943b0a", | ||
"repository_url": "https://github.com/Azure/azure-rest-api-specs", | ||
"autorest": "3.9.7", | ||
"use": [ | ||
"@autorest/[email protected]", | ||
"@autorest/[email protected]" | ||
], | ||
"autorest_command": "autorest specification/hdinsight/resource-manager/Microsoft.HDInsight/HDInsightOnAks/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.9.7 --version-tolerant=False", | ||
"autorest_command": "autorest specification/hdinsight/resource-manager/Microsoft.HDInsight/HDInsightOnAks/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.9.7 --version-tolerant=False", | ||
"readme": "specification/hdinsight/resource-manager/Microsoft.HDInsight/HDInsightOnAks/readme.md" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
150 changes: 150 additions & 0 deletions
150
...s/azure/mgmt/hdinsightcontainers/aio/operations/_cluster_available_upgrades_operations.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
# pylint: disable=too-many-lines | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for license information. | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
# -------------------------------------------------------------------------- | ||
from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar | ||
import urllib.parse | ||
|
||
from azure.core.async_paging import AsyncItemPaged, AsyncList | ||
from azure.core.exceptions import ( | ||
ClientAuthenticationError, | ||
HttpResponseError, | ||
ResourceExistsError, | ||
ResourceNotFoundError, | ||
ResourceNotModifiedError, | ||
map_error, | ||
) | ||
from azure.core.pipeline import PipelineResponse | ||
from azure.core.pipeline.transport import AsyncHttpResponse | ||
from azure.core.rest import HttpRequest | ||
from azure.core.tracing.decorator import distributed_trace | ||
from azure.core.utils import case_insensitive_dict | ||
from azure.mgmt.core.exceptions import ARMErrorFormat | ||
|
||
from ... import models as _models | ||
from ..._vendor import _convert_request | ||
from ...operations._cluster_available_upgrades_operations import build_list_request | ||
|
||
T = TypeVar("T") | ||
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] | ||
|
||
|
||
class ClusterAvailableUpgradesOperations: | ||
""" | ||
.. warning:: | ||
**DO NOT** instantiate this class directly. | ||
Instead, you should access the following operations through | ||
:class:`~azure.mgmt.hdinsightcontainers.aio.HDInsightContainersMgmtClient`'s | ||
:attr:`cluster_available_upgrades` attribute. | ||
""" | ||
|
||
models = _models | ||
|
||
def __init__(self, *args, **kwargs) -> None: | ||
input_args = list(args) | ||
self._client = input_args.pop(0) if input_args else kwargs.pop("client") | ||
self._config = input_args.pop(0) if input_args else kwargs.pop("config") | ||
self._serialize = input_args.pop(0) if input_args else kwargs.pop("serializer") | ||
self._deserialize = input_args.pop(0) if input_args else kwargs.pop("deserializer") | ||
|
||
@distributed_trace | ||
def list( | ||
self, resource_group_name: str, cluster_pool_name: str, cluster_name: str, **kwargs: Any | ||
) -> AsyncIterable["_models.ClusterAvailableUpgrade"]: | ||
"""List a cluster available upgrade. | ||
:param resource_group_name: The name of the resource group. The name is case insensitive. | ||
Required. | ||
:type resource_group_name: str | ||
:param cluster_pool_name: The name of the cluster pool. Required. | ||
:type cluster_pool_name: str | ||
:param cluster_name: The name of the HDInsight cluster. Required. | ||
:type cluster_name: str | ||
:keyword callable cls: A custom type or function that will be passed the direct response | ||
:return: An iterator like instance of either ClusterAvailableUpgrade or the result of | ||
cls(response) | ||
:rtype: | ||
~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.hdinsightcontainers.models.ClusterAvailableUpgrade] | ||
:raises ~azure.core.exceptions.HttpResponseError: | ||
""" | ||
_headers = kwargs.pop("headers", {}) or {} | ||
_params = case_insensitive_dict(kwargs.pop("params", {}) or {}) | ||
|
||
api_version: str = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) | ||
cls: ClsType[_models.ClusterAvailableUpgradeList] = kwargs.pop("cls", None) | ||
|
||
error_map = { | ||
401: ClientAuthenticationError, | ||
404: ResourceNotFoundError, | ||
409: ResourceExistsError, | ||
304: ResourceNotModifiedError, | ||
} | ||
error_map.update(kwargs.pop("error_map", {}) or {}) | ||
|
||
def prepare_request(next_link=None): | ||
if not next_link: | ||
|
||
request = build_list_request( | ||
resource_group_name=resource_group_name, | ||
cluster_pool_name=cluster_pool_name, | ||
cluster_name=cluster_name, | ||
subscription_id=self._config.subscription_id, | ||
api_version=api_version, | ||
template_url=self.list.metadata["url"], | ||
headers=_headers, | ||
params=_params, | ||
) | ||
request = _convert_request(request) | ||
request.url = self._client.format_url(request.url) | ||
|
||
else: | ||
# make call to next link with the client's api-version | ||
_parsed_next_link = urllib.parse.urlparse(next_link) | ||
_next_request_params = case_insensitive_dict( | ||
{ | ||
key: [urllib.parse.quote(v) for v in value] | ||
for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() | ||
} | ||
) | ||
_next_request_params["api-version"] = self._config.api_version | ||
request = HttpRequest( | ||
"GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params | ||
) | ||
request = _convert_request(request) | ||
request.url = self._client.format_url(request.url) | ||
request.method = "GET" | ||
return request | ||
|
||
async def extract_data(pipeline_response): | ||
deserialized = self._deserialize("ClusterAvailableUpgradeList", pipeline_response) | ||
list_of_elem = deserialized.value | ||
if cls: | ||
list_of_elem = cls(list_of_elem) # type: ignore | ||
return deserialized.next_link or None, AsyncList(list_of_elem) | ||
|
||
async def get_next(next_link=None): | ||
request = prepare_request(next_link) | ||
|
||
_stream = False | ||
pipeline_response: PipelineResponse = await self._client._pipeline.run( # pylint: disable=protected-access | ||
request, stream=_stream, **kwargs | ||
) | ||
response = pipeline_response.http_response | ||
|
||
if response.status_code not in [200]: | ||
map_error(status_code=response.status_code, response=response, error_map=error_map) | ||
error = self._deserialize.failsafe_deserialize(_models.ErrorResponse, pipeline_response) | ||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) | ||
|
||
return pipeline_response | ||
|
||
return AsyncItemPaged(get_next, extract_data) | ||
|
||
list.metadata = { | ||
"url": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HDInsight/clusterpools/{clusterPoolName}/clusters/{clusterName}/availableUpgrades" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.