forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 2
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 15498 in Azure/azure-rest-api-specs
Added OutboundNetworkDependenciesEndpoints API (Azure#15498) * Adds VNet peering to 2021-04-01-preview api-version. * Added OutboundNetworkDependencies. * Fixed Prettier issue * Fixed lint error * Edited sample output * Added reference to preview/vnetpeering.json in readme file * Edited description for outbound network dependency endpoints. * Corrected return type for outbound network dependency endpoints. * Corrected return type for outbound network dependency endpoints. * Correcting schema * Correcting schema Co-authored-by: nipuneth <[email protected]> Co-authored-by: Sharanjeet Kaur <[email protected]>
- Loading branch information
1 parent
728b28b
commit 971485d
Showing
16 changed files
with
425 additions
and
15 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 @@ | ||
{ | ||
"autorest": "3.4.2", | ||
"autorest": "3.4.5", | ||
"use": [ | ||
"@autorest/[email protected].1", | ||
"@autorest/[email protected].4", | ||
"@autorest/[email protected]" | ||
], | ||
"commit": "fa3ba1acdd45ddad8950133befc5b0a6f1ee5163", | ||
"commit": "a3c9363637ad7d30407cd6dd26d280cbb166cbf9", | ||
"repository_url": "https://github.com/Azure/azure-rest-api-specs", | ||
"autorest_command": "autorest specification/databricks/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/[email protected].1 --use=@autorest/[email protected] --version=3.4.2", | ||
"autorest_command": "autorest specification/databricks/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/[email protected].4 --use=@autorest/[email protected] --version=3.4.5", | ||
"readme": "specification/databricks/resource-manager/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
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
104 changes: 104 additions & 0 deletions
104
...ure/mgmt/databricks/aio/operations/_outbound_network_dependencies_endpoints_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,104 @@ | ||
# 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, Callable, Dict, Generic, List, Optional, TypeVar | ||
import warnings | ||
|
||
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error | ||
from azure.core.pipeline import PipelineResponse | ||
from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest | ||
from azure.mgmt.core.exceptions import ARMErrorFormat | ||
|
||
from ... import models as _models | ||
|
||
T = TypeVar('T') | ||
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] | ||
|
||
class OutboundNetworkDependenciesEndpointsOperations: | ||
"""OutboundNetworkDependenciesEndpointsOperations async operations. | ||
You should not instantiate this class directly. Instead, you should create a Client instance that | ||
instantiates it for you and attaches it as an attribute. | ||
:ivar models: Alias to model classes used in this operation group. | ||
:type models: ~azure_databricks_management_client.models | ||
:param client: Client for service requests. | ||
:param config: Configuration of service client. | ||
:param serializer: An object model serializer. | ||
:param deserializer: An object model deserializer. | ||
""" | ||
|
||
models = _models | ||
|
||
def __init__(self, client, config, serializer, deserializer) -> None: | ||
self._client = client | ||
self._serialize = serializer | ||
self._deserialize = deserializer | ||
self._config = config | ||
|
||
async def list( | ||
self, | ||
resource_group_name: str, | ||
workspace_name: str, | ||
**kwargs: Any | ||
) -> List["_models.OutboundEnvironmentEndpoint"]: | ||
"""Gets a list of egress endpoints (network endpoints of all outbound dependencies) in the specified Workspace. | ||
Gets the list of endpoints that VNET Injected Workspace's Cluster call Azure Databricks Control | ||
Plane. You must configure outbound access to these endpoints. For more information, see | ||
https://docs.microsoft.com/en-us/azure/databricks/administration-guide/cloud-configurations/azure/udr. | ||
:param resource_group_name: The name of the resource group. The name is case insensitive. | ||
:type resource_group_name: str | ||
:param workspace_name: The name of the workspace. | ||
:type workspace_name: str | ||
:keyword callable cls: A custom type or function that will be passed the direct response | ||
:return: list of OutboundEnvironmentEndpoint, or the result of cls(response) | ||
:rtype: list[~azure_databricks_management_client.models.OutboundEnvironmentEndpoint] | ||
:raises: ~azure.core.exceptions.HttpResponseError | ||
""" | ||
cls = kwargs.pop('cls', None) # type: ClsType[List["_models.OutboundEnvironmentEndpoint"]] | ||
error_map = { | ||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError | ||
} | ||
error_map.update(kwargs.pop('error_map', {})) | ||
api_version = "2021-04-01-preview" | ||
accept = "application/json" | ||
|
||
# Construct URL | ||
url = self.list.metadata['url'] # type: ignore | ||
path_format_arguments = { | ||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'), | ||
'workspaceName': self._serialize.url("workspace_name", workspace_name, 'str', max_length=64, min_length=3), | ||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), | ||
} | ||
url = self._client.format_url(url, **path_format_arguments) | ||
|
||
# Construct parameters | ||
query_parameters = {} # type: Dict[str, Any] | ||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') | ||
|
||
# Construct headers | ||
header_parameters = {} # type: Dict[str, Any] | ||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') | ||
|
||
request = self._client.get(url, query_parameters, header_parameters) | ||
pipeline_response = await self._client._pipeline.run(request, stream=False, **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, response) | ||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) | ||
|
||
deserialized = self._deserialize('[OutboundEnvironmentEndpoint]', pipeline_response) | ||
|
||
if cls: | ||
return cls(pipeline_response, deserialized, {}) | ||
|
||
return deserialized | ||
list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Databricks/workspaces/{workspaceName}/outboundNetworkDependenciesEndpoints'} # type: ignore |
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
Oops, something went wrong.