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 13597 in Azure/azure-rest-api-specs
[Databox] Added mitigate api to resolve errors raised by job (Azure#13597) * updating examples and get job json * fixing checks * removing white spaces from example * ran prettier fix
- Loading branch information
SDKAuto
committed
Mar 29, 2021
1 parent
7273df1
commit 8729c31
Showing
69 changed files
with
34,855 additions
and
88 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
52 changes: 52 additions & 0 deletions
52
sdk/databox/azure-mgmt-databox/azure/mgmt/databox/_operations_mixin.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,52 @@ | ||
# 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 msrest import Serializer, Deserializer | ||
|
||
|
||
class DataBoxManagementClientOperationsMixin(object): | ||
|
||
|
||
def mitigate(self, job_name, resource_group_name, customer_resolution_code, custom_headers=None, raw=False, **operation_config): | ||
"""Request to mitigate for a given job. | ||
:param job_name: The name of the job Resource within the specified | ||
resource group. job names must be between 3 and 24 characters in | ||
length and use any alphanumeric and underscore only | ||
:type job_name: str | ||
:param resource_group_name: The Resource Group Name | ||
:type resource_group_name: str | ||
:param customer_resolution_code: Resolution code for the job. Possible | ||
values include: 'None', 'MoveToCleanUpDevice', 'Resume' | ||
:type customer_resolution_code: str or | ||
~azure.mgmt.databox.models.CustomerResolutionCode | ||
:param dict custom_headers: headers that will be added to the request | ||
:param bool raw: returns the direct response alongside the | ||
deserialized response | ||
:param operation_config: :ref:`Operation configuration | ||
overrides<msrest:optionsforoperations>`. | ||
:return: None or ClientRawResponse if raw=true | ||
:rtype: None or ~msrest.pipeline.ClientRawResponse | ||
:raises: | ||
:class:`ApiErrorException<azure.mgmt.databox.models.ApiErrorException>` | ||
""" | ||
api_version = self._get_api_version('mitigate') | ||
if api_version == '2021-03-01': | ||
from .v2021_03_01.operations import DataBoxManagementClientOperationsMixin as OperationClass | ||
else: | ||
raise NotImplementedError("APIVersion {} is not available".format(api_version)) | ||
mixin_instance = OperationClass() | ||
mixin_instance._client = self._client | ||
mixin_instance.config = self.config | ||
mixin_instance._serialize = Serializer(self._models_dict(api_version)) | ||
mixin_instance._deserialize = Deserializer(self._models_dict(api_version)) | ||
mixin_instance.api_version = api_version | ||
return mixin_instance.mitigate(job_name, resource_group_name, customer_resolution_code, custom_headers, raw, **operation_config) |
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,7 @@ | ||
# 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. | ||
# -------------------------------------------------------------------------- | ||
from .v2021_03_01.models import * |
19 changes: 19 additions & 0 deletions
19
sdk/databox/azure-mgmt-databox/azure/mgmt/databox/v2018_01_01/__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,19 @@ | ||
# 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 ._configuration import DataBoxManagementClientConfiguration | ||
from ._data_box_management_client import DataBoxManagementClient | ||
__all__ = ['DataBoxManagementClient', 'DataBoxManagementClientConfiguration'] | ||
|
||
from .version import VERSION | ||
|
||
__version__ = VERSION | ||
|
48 changes: 48 additions & 0 deletions
48
sdk/databox/azure-mgmt-databox/azure/mgmt/databox/v2018_01_01/_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,48 @@ | ||
# 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 msrestazure import AzureConfiguration | ||
|
||
from .version import VERSION | ||
|
||
|
||
class DataBoxManagementClientConfiguration(AzureConfiguration): | ||
"""Configuration for DataBoxManagementClient | ||
Note that all parameters used to create this instance are saved as instance | ||
attributes. | ||
:param credentials: Credentials needed for the client to connect to Azure. | ||
:type credentials: :mod:`A msrestazure Credentials | ||
object<msrestazure.azure_active_directory>` | ||
:param subscription_id: The Subscription Id | ||
:type subscription_id: str | ||
:param str base_url: Service URL | ||
""" | ||
|
||
def __init__( | ||
self, credentials, subscription_id, base_url=None): | ||
|
||
if credentials is None: | ||
raise ValueError("Parameter 'credentials' must not be None.") | ||
if subscription_id is None: | ||
raise ValueError("Parameter 'subscription_id' must not be None.") | ||
if not base_url: | ||
base_url = 'https://management.azure.com' | ||
|
||
super(DataBoxManagementClientConfiguration, self).__init__(base_url) | ||
|
||
# Starting Autorest.Python 4.0.64, make connection pool activated by default | ||
self.keep_alive = True | ||
|
||
self.add_user_agent('azure-mgmt-databox/{}'.format(VERSION)) | ||
self.add_user_agent('Azure-SDK-For-Python') | ||
|
||
self.credentials = credentials | ||
self.subscription_id = subscription_id |
59 changes: 59 additions & 0 deletions
59
sdk/databox/azure-mgmt-databox/azure/mgmt/databox/v2018_01_01/_data_box_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,59 @@ | ||
# 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 msrest.service_client import SDKClient | ||
from msrest import Serializer, Deserializer | ||
|
||
from ._configuration import DataBoxManagementClientConfiguration | ||
from .operations import Operations | ||
from .operations import JobsOperations | ||
from .operations import ServiceOperations | ||
from . import models | ||
|
||
|
||
class DataBoxManagementClient(SDKClient): | ||
"""DataBoxManagementClient | ||
:ivar config: Configuration for client. | ||
:vartype config: DataBoxManagementClientConfiguration | ||
:ivar operations: Operations operations | ||
:vartype operations: azure.mgmt.databox.operations.Operations | ||
:ivar jobs: Jobs operations | ||
:vartype jobs: azure.mgmt.databox.operations.JobsOperations | ||
:ivar service: Service operations | ||
:vartype service: azure.mgmt.databox.operations.ServiceOperations | ||
:param credentials: Credentials needed for the client to connect to Azure. | ||
:type credentials: :mod:`A msrestazure Credentials | ||
object<msrestazure.azure_active_directory>` | ||
:param subscription_id: The Subscription Id | ||
:type subscription_id: str | ||
:param str base_url: Service URL | ||
""" | ||
|
||
def __init__( | ||
self, credentials, subscription_id, base_url=None): | ||
|
||
self.config = DataBoxManagementClientConfiguration(credentials, subscription_id, base_url) | ||
super(DataBoxManagementClient, self).__init__(self.config.credentials, self.config) | ||
|
||
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} | ||
self.api_version = '2018-01-01' | ||
self._serialize = Serializer(client_models) | ||
self._deserialize = Deserializer(client_models) | ||
|
||
self.operations = Operations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.jobs = JobsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.service = ServiceOperations( | ||
self._client, self.config, self._serialize, self._deserialize) |
Oops, something went wrong.