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 15652 in Azure/azure-rest-api-specs
Merge 3d049837a1ea66ab12a817de1e7f87e0aa2024a6 into d372c27
- Loading branch information
SDKAuto
committed
Aug 16, 2021
1 parent
28a0c24
commit a1b1428
Showing
131 changed files
with
44,057 additions
and
2,449 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,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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"autorest": "3.4.5", | ||
"use": [ | ||
"@autorest/[email protected]", | ||
"@autorest/[email protected]" | ||
], | ||
"commit": "dff3da1e5cb7d018629c10ad7e6d5b8bad67895f", | ||
"repository_url": "https://github.com/Azure/azure-rest-api-specs", | ||
"autorest_command": "autorest specification/databox/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] --use=@autorest/[email protected] --version=3.4.5", | ||
"readme": "specification/databox/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
63 changes: 63 additions & 0 deletions
63
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,63 @@ | ||
# 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 | ||
from typing import TYPE_CHECKING | ||
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 HttpRequest, HttpResponse | ||
from azure.mgmt.core.exceptions import ARMErrorFormat | ||
|
||
if TYPE_CHECKING: | ||
# pylint: disable=unused-import,ungrouped-imports | ||
from typing import Any, Callable, Dict, Generic, Optional, TypeVar | ||
|
||
|
||
class DataBoxManagementClientOperationsMixin(object): | ||
|
||
def mitigate( | ||
self, | ||
job_name, # type: str | ||
resource_group_name, # type: str | ||
mitigate_job_request, # type: "_models.MitigateJobRequest" | ||
**kwargs # type: Any | ||
): | ||
"""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 mitigate_job_request: Mitigation Request. | ||
:type mitigate_job_request: ~azure.mgmt.databox.v2021_05_01.models.MitigateJobRequest | ||
:keyword callable cls: A custom type or function that will be passed the direct response | ||
:return: None, or the result of cls(response) | ||
:rtype: None | ||
:raises: ~azure.core.exceptions.HttpResponseError | ||
""" | ||
api_version = self._get_api_version('mitigate') | ||
if api_version == '2021-03-01': | ||
from .v2021_03_01.operations import DataBoxManagementClientOperationsMixin as OperationClass | ||
elif api_version == '2021-05-01': | ||
from .v2021_05_01.operations import DataBoxManagementClientOperationsMixin as OperationClass | ||
elif api_version == '2021-08-01-preview': | ||
from .v2021_08_01_preview.operations import DataBoxManagementClientOperationsMixin as OperationClass | ||
else: | ||
raise ValueError("API version {} does not have operation 'mitigate'".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._serialize.client_side_validation = False | ||
mixin_instance._deserialize = Deserializer(self._models_dict(api_version)) | ||
return mixin_instance.mitigate(job_name, resource_group_name, mitigate_job_request, **kwargs) |
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.