Skip to content

Commit

Permalink
CodeGen from PR 13334 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Microsoft.DataProtection swagger changes (Azure#13334)

* Microsoft.DataProtection swagger changes

* Added example file FindRestorableTimeRanges.json

* Adding 202 GetOperationResult (#1)

* adding 202 GetOperationResult

* added headers

Co-authored-by: Mayank Aggarwal <mayaggar@microsoft.com>

* pr comments fixes

* prettier fixes

* adding fix for x-ms-error-response

* Added missed DppWorkerRequest object in swagger json

* Validation fixes

* changes for request

* removing objectType

Co-authored-by: Mayank Aggarwal <mayankagg9722@gmail.com>
Co-authored-by: Mayank Aggarwal <mayaggar@microsoft.com>
  • Loading branch information
3 people committed Mar 12, 2021
1 parent a2ec4c6 commit 9262acd
Show file tree
Hide file tree
Showing 32 changed files with 11,188 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sdk/dataprotection/azure-mgmt-dataprotection/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Release History

## 0.1.0 (1970-01-01)

* Initial Release
5 changes: 5 additions & 0 deletions sdk/dataprotection/azure-mgmt-dataprotection/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
recursive-include tests *.py *.yaml
include *.md
include azure/__init__.py
include azure/mgmt/__init__.py

21 changes: 21 additions & 0 deletions sdk/dataprotection/azure-mgmt-dataprotection/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Microsoft Azure SDK for Python

This is the Microsoft Azure MyService Management Client Library.
This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8.
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).


# Usage

For code examples, see [MyService Management](https://docs.microsoft.com/python/api/overview/azure/)
on docs.microsoft.com.


# Provide Feedback

If you encounter any bugs or have suggestions, please file an issue in the
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
section of the project.


![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-dataprotection%2FREADME.png)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
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 DataProtectionClientConfiguration
from ._data_protection_client import DataProtectionClient
__all__ = ['DataProtectionClient', 'DataProtectionClientConfiguration']

from .version import VERSION

__version__ = VERSION

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 DataProtectionClientConfiguration(AzureConfiguration):
"""Configuration for DataProtectionClient
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(DataProtectionClientConfiguration, 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-dataprotection/{}'.format(VERSION))
self.add_user_agent('Azure-SDK-For-Python')

self.credentials = credentials
self.subscription_id = subscription_id
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
# 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 DataProtectionClientConfiguration
from .operations import DataProtectionClientOperationsMixin
from .operations import BackupVaultsOperations
from .operations import OperationResultOperations
from .operations import Operations
from .operations import BackupPoliciesOperations
from .operations import BackupInstancesOperations
from .operations import RecoveryPointsOperations
from .operations import RecoveryPointOperations
from .operations import JobsOperations
from .operations import FindRestorableTimeRangesOperations
from .operations import JobOperations
from .operations import ExportJobsOperations
from .operations import ExportJobsOperationResultOperations
from . import models


class DataProtectionClient(DataProtectionClientOperationsMixin, SDKClient):
"""Open API 2.0 Specs for Azure Data Protection service
:ivar config: Configuration for client.
:vartype config: DataProtectionClientConfiguration
:ivar backup_vaults: BackupVaults operations
:vartype backup_vaults: azure.mgmt.dataprotection.operations.BackupVaultsOperations
:ivar operation_result: OperationResult operations
:vartype operation_result: azure.mgmt.dataprotection.operations.OperationResultOperations
:ivar operations: Operations operations
:vartype operations: azure.mgmt.dataprotection.operations.Operations
:ivar backup_policies: BackupPolicies operations
:vartype backup_policies: azure.mgmt.dataprotection.operations.BackupPoliciesOperations
:ivar backup_instances: BackupInstances operations
:vartype backup_instances: azure.mgmt.dataprotection.operations.BackupInstancesOperations
:ivar recovery_points: RecoveryPoints operations
:vartype recovery_points: azure.mgmt.dataprotection.operations.RecoveryPointsOperations
:ivar recovery_point: RecoveryPoint operations
:vartype recovery_point: azure.mgmt.dataprotection.operations.RecoveryPointOperations
:ivar jobs: Jobs operations
:vartype jobs: azure.mgmt.dataprotection.operations.JobsOperations
:ivar find_restorable_time_ranges: FindRestorableTimeRanges operations
:vartype find_restorable_time_ranges: azure.mgmt.dataprotection.operations.FindRestorableTimeRangesOperations
:ivar job: Job operations
:vartype job: azure.mgmt.dataprotection.operations.JobOperations
:ivar export_jobs: ExportJobs operations
:vartype export_jobs: azure.mgmt.dataprotection.operations.ExportJobsOperations
:ivar export_jobs_operation_result: ExportJobsOperationResult operations
:vartype export_jobs_operation_result: azure.mgmt.dataprotection.operations.ExportJobsOperationResultOperations
: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 = DataProtectionClientConfiguration(credentials, subscription_id, base_url)
super(DataProtectionClient, 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 = '2021-02-01-preview'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)

self.backup_vaults = BackupVaultsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.operation_result = OperationResultOperations(
self._client, self.config, self._serialize, self._deserialize)
self.operations = Operations(
self._client, self.config, self._serialize, self._deserialize)
self.backup_policies = BackupPoliciesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.backup_instances = BackupInstancesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.recovery_points = RecoveryPointsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.recovery_point = RecoveryPointOperations(
self._client, self.config, self._serialize, self._deserialize)
self.jobs = JobsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.find_restorable_time_ranges = FindRestorableTimeRangesOperations(
self._client, self.config, self._serialize, self._deserialize)
self.job = JobOperations(
self._client, self.config, self._serialize, self._deserialize)
self.export_jobs = ExportJobsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.export_jobs_operation_result = ExportJobsOperationResultOperations(
self._client, self.config, self._serialize, self._deserialize)
Loading

0 comments on commit 9262acd

Please sign in to comment.