-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoRelease] t2-databoxedge-2021-04-22-84277(wave4) (#18223)
* CodeGen from PR 14063 in Azure/azure-rest-api-specs databoxedge readme modification (#14063) Co-authored-by: Yan Zhang (WICRESOFT NORTH AMERICA LTD) <[email protected]> * version,CHANGELOG * test * modify version Co-authored-by: SDKAuto <[email protected]> Co-authored-by: Yan Zhang (WICRESOFT NORTH AMERICA LTD) <[email protected]> Co-authored-by: PythonSdkPipelines <PythonSdkPipelines> Co-authored-by: Zed Lei <[email protected]>
- Loading branch information
1 parent
9585622
commit c0dc3a3
Showing
350 changed files
with
109,897 additions
and
2,112 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
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,3 +1,4 @@ | ||
include _meta.json | ||
recursive-include tests *.py *.yaml | ||
include *.md | ||
include azure/__init__.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
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,8 @@ | ||
{ | ||
"autorest": "3.3.0", | ||
"use": "@autorest/[email protected]", | ||
"commit": "cc247b28bd6dc94786fb18e691d6331a168985f6", | ||
"repository_url": "https://github.com/Azure/azure-rest-api-specs", | ||
"autorest_command": "autorest specification/databoxedge/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] --version=3.3.0", | ||
"readme": "specification/databoxedge/resource-manager/readme.md" | ||
} |
16 changes: 16 additions & 0 deletions
16
sdk/databoxedge/azure-mgmt-databoxedge/azure/mgmt/datab/__init__.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,16 @@ | ||
# 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 ._data_box_edge_management_client import DataBoxEdgeManagementClient | ||
__all__ = ['DataBoxEdgeManagementClient'] | ||
|
||
try: | ||
from ._patch import patch_sdk # type: ignore | ||
patch_sdk() | ||
except ImportError: | ||
pass |
70 changes: 70 additions & 0 deletions
70
sdk/databoxedge/azure-mgmt-databoxedge/azure/mgmt/datab/_configuration.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,70 @@ | ||
# 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 TYPE_CHECKING | ||
|
||
from azure.core.configuration import Configuration | ||
from azure.core.pipeline import policies | ||
from azure.mgmt.core.policies import ARMHttpLoggingPolicy | ||
|
||
if TYPE_CHECKING: | ||
# pylint: disable=unused-import,ungrouped-imports | ||
from typing import Any | ||
|
||
from azure.core.credentials import TokenCredential | ||
|
||
VERSION = "unknown" | ||
|
||
class DataBoxEdgeManagementClientConfiguration(Configuration): | ||
"""Configuration for DataBoxEdgeManagementClient. | ||
Note that all parameters used to create this instance are saved as instance | ||
attributes. | ||
:param credential: Credential needed for the client to connect to Azure. | ||
:type credential: ~azure.core.credentials.TokenCredential | ||
:param subscription_id: The subscription ID. | ||
:type subscription_id: str | ||
""" | ||
|
||
def __init__( | ||
self, | ||
credential, # type: "TokenCredential" | ||
subscription_id, # type: str | ||
**kwargs # type: Any | ||
): | ||
# type: (...) -> None | ||
if credential is None: | ||
raise ValueError("Parameter 'credential' must not be None.") | ||
if subscription_id is None: | ||
raise ValueError("Parameter 'subscription_id' must not be None.") | ||
super(DataBoxEdgeManagementClientConfiguration, self).__init__(**kwargs) | ||
|
||
self.credential = credential | ||
self.subscription_id = subscription_id | ||
self.api_version = "2020-12-01" | ||
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) | ||
kwargs.setdefault('sdk_moniker', 'mgmt-databoxedge/{}'.format(VERSION)) | ||
self._configure(**kwargs) | ||
|
||
def _configure( | ||
self, | ||
**kwargs # type: Any | ||
): | ||
# type: (...) -> None | ||
self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) | ||
self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) | ||
self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) | ||
self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) | ||
self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs) | ||
self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs) | ||
self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) | ||
self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs) | ||
self.authentication_policy = kwargs.get('authentication_policy') | ||
if self.credential and not self.authentication_policy: | ||
self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) |
174 changes: 174 additions & 0 deletions
174
sdk/databoxedge/azure-mgmt-databoxedge/azure/mgmt/datab/_data_box_edge_management_client.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,174 @@ | ||
# 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 TYPE_CHECKING | ||
|
||
from azure.mgmt.core import ARMPipelineClient | ||
from msrest import Deserializer, Serializer | ||
|
||
if TYPE_CHECKING: | ||
# pylint: disable=unused-import,ungrouped-imports | ||
from typing import Any, Optional | ||
|
||
from azure.core.credentials import TokenCredential | ||
from azure.core.pipeline.transport import HttpRequest, HttpResponse | ||
|
||
from ._configuration import DataBoxEdgeManagementClientConfiguration | ||
from .operations import Operations | ||
from .operations import AvailableSkusOperations | ||
from .operations import DevicesOperations | ||
from .operations import AlertsOperations | ||
from .operations import BandwidthSchedulesOperations | ||
from .operations import JobsOperations | ||
from .operations import NodesOperations | ||
from .operations import OperationsStatusOperations | ||
from .operations import OrdersOperations | ||
from .operations import RolesOperations | ||
from .operations import AddonsOperations | ||
from .operations import MonitoringConfigOperations | ||
from .operations import SharesOperations | ||
from .operations import StorageAccountCredentialsOperations | ||
from .operations import StorageAccountsOperations | ||
from .operations import ContainersOperations | ||
from .operations import TriggersOperations | ||
from .operations import UsersOperations | ||
from . import models | ||
|
||
|
||
class DataBoxEdgeManagementClient(object): | ||
"""The DataBoxEdge Client. | ||
:ivar operations: Operations operations | ||
:vartype operations: azure.mgmt.databoxedge.v2020_12_01.operations.Operations | ||
:ivar available_skus: AvailableSkusOperations operations | ||
:vartype available_skus: azure.mgmt.databoxedge.v2020_12_01.operations.AvailableSkusOperations | ||
:ivar devices: DevicesOperations operations | ||
:vartype devices: azure.mgmt.databoxedge.v2020_12_01.operations.DevicesOperations | ||
:ivar alerts: AlertsOperations operations | ||
:vartype alerts: azure.mgmt.databoxedge.v2020_12_01.operations.AlertsOperations | ||
:ivar bandwidth_schedules: BandwidthSchedulesOperations operations | ||
:vartype bandwidth_schedules: azure.mgmt.databoxedge.v2020_12_01.operations.BandwidthSchedulesOperations | ||
:ivar jobs: JobsOperations operations | ||
:vartype jobs: azure.mgmt.databoxedge.v2020_12_01.operations.JobsOperations | ||
:ivar nodes: NodesOperations operations | ||
:vartype nodes: azure.mgmt.databoxedge.v2020_12_01.operations.NodesOperations | ||
:ivar operations_status: OperationsStatusOperations operations | ||
:vartype operations_status: azure.mgmt.databoxedge.v2020_12_01.operations.OperationsStatusOperations | ||
:ivar orders: OrdersOperations operations | ||
:vartype orders: azure.mgmt.databoxedge.v2020_12_01.operations.OrdersOperations | ||
:ivar roles: RolesOperations operations | ||
:vartype roles: azure.mgmt.databoxedge.v2020_12_01.operations.RolesOperations | ||
:ivar addons: AddonsOperations operations | ||
:vartype addons: azure.mgmt.databoxedge.v2020_12_01.operations.AddonsOperations | ||
:ivar monitoring_config: MonitoringConfigOperations operations | ||
:vartype monitoring_config: azure.mgmt.databoxedge.v2020_12_01.operations.MonitoringConfigOperations | ||
:ivar shares: SharesOperations operations | ||
:vartype shares: azure.mgmt.databoxedge.v2020_12_01.operations.SharesOperations | ||
:ivar storage_account_credentials: StorageAccountCredentialsOperations operations | ||
:vartype storage_account_credentials: azure.mgmt.databoxedge.v2020_12_01.operations.StorageAccountCredentialsOperations | ||
:ivar storage_accounts: StorageAccountsOperations operations | ||
:vartype storage_accounts: azure.mgmt.databoxedge.v2020_12_01.operations.StorageAccountsOperations | ||
:ivar containers: ContainersOperations operations | ||
:vartype containers: azure.mgmt.databoxedge.v2020_12_01.operations.ContainersOperations | ||
:ivar triggers: TriggersOperations operations | ||
:vartype triggers: azure.mgmt.databoxedge.v2020_12_01.operations.TriggersOperations | ||
:ivar users: UsersOperations operations | ||
:vartype users: azure.mgmt.databoxedge.v2020_12_01.operations.UsersOperations | ||
:param credential: Credential needed for the client to connect to Azure. | ||
:type credential: ~azure.core.credentials.TokenCredential | ||
:param subscription_id: The subscription ID. | ||
:type subscription_id: str | ||
:param str base_url: Service URL | ||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. | ||
""" | ||
|
||
def __init__( | ||
self, | ||
credential, # type: "TokenCredential" | ||
subscription_id, # type: str | ||
base_url=None, # type: Optional[str] | ||
**kwargs # type: Any | ||
): | ||
# type: (...) -> None | ||
if not base_url: | ||
base_url = 'https://management.azure.com' | ||
self._config = DataBoxEdgeManagementClientConfiguration(credential, subscription_id, **kwargs) | ||
self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs) | ||
|
||
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} | ||
self._serialize = Serializer(client_models) | ||
self._serialize.client_side_validation = False | ||
self._deserialize = Deserializer(client_models) | ||
|
||
self.operations = Operations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.available_skus = AvailableSkusOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.devices = DevicesOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.alerts = AlertsOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.bandwidth_schedules = BandwidthSchedulesOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.jobs = JobsOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.nodes = NodesOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.operations_status = OperationsStatusOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.orders = OrdersOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.roles = RolesOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.addons = AddonsOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.monitoring_config = MonitoringConfigOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.shares = SharesOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.storage_account_credentials = StorageAccountCredentialsOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.storage_accounts = StorageAccountsOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.containers = ContainersOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.triggers = TriggersOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
self.users = UsersOperations( | ||
self._client, self._config, self._serialize, self._deserialize) | ||
|
||
def _send_request(self, http_request, **kwargs): | ||
# type: (HttpRequest, Any) -> HttpResponse | ||
"""Runs the network request through the client's chained policies. | ||
:param http_request: The network request you want to make. Required. | ||
:type http_request: ~azure.core.pipeline.transport.HttpRequest | ||
:keyword bool stream: Whether the response payload will be streamed. Defaults to True. | ||
:return: The response of your network call. Does not do error handling on your response. | ||
:rtype: ~azure.core.pipeline.transport.HttpResponse | ||
""" | ||
path_format_arguments = { | ||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), | ||
} | ||
http_request.url = self._client.format_url(http_request.url, **path_format_arguments) | ||
stream = kwargs.pop("stream", True) | ||
pipeline_response = self._client._pipeline.run(http_request, stream=stream, **kwargs) | ||
return pipeline_response.http_response | ||
|
||
def close(self): | ||
# type: () -> None | ||
self._client.close() | ||
|
||
def __enter__(self): | ||
# type: () -> DataBoxEdgeManagementClient | ||
self._client.__enter__() | ||
return self | ||
|
||
def __exit__(self, *exc_details): | ||
# type: (Any) -> None | ||
self._client.__exit__(*exc_details) |
Oops, something went wrong.