Skip to content

Commit

Permalink
CodeGen from PR 24974 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 57eb648f4042e369227e48ceec890ec6b8274e9e into 037091593046a87dd8fac14c3a15fd744f5df151
  • Loading branch information
SDKAuto committed Aug 3, 2023
1 parent 67384df commit 21e8be9
Show file tree
Hide file tree
Showing 117 changed files with 27,861 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Release History

## 0.1.0 (1970-01-01)

* Initial Release
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Copyright (c) Microsoft Corporation.

MIT License

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
include _meta.json
recursive-include tests *.py *.json
recursive-include samples *.py *.md
include *.md
include azure/__init__.py
include azure/mgmt/__init__.py
include LICENSE
include azure/mgmt/recoveryservicesdatareplication/py.typed
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Microsoft Azure SDK for Python

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

## _Disclaimer_

_Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691_

## Getting started

### Prerequisites

- Python 3.7+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package

```bash
pip install azure-mgmt-recoveryservicesdatareplication
pip install azure-identity
```

### Authentication

By default, [Azure Active Directory](https://aka.ms/awps/aad) token authentication depends on correct configure of following environment variables.

- `AZURE_CLIENT_ID` for Azure client ID.
- `AZURE_TENANT_ID` for Azure tenant ID.
- `AZURE_CLIENT_SECRET` for Azure client secret.

In addition, Azure subscription ID can be configured via environment variable `AZURE_SUBSCRIPTION_ID`.

With above configuration, client can be authenticated by following code:

```python
from azure.identity import DefaultAzureCredential
from azure.mgmt.recoveryservicesdatareplication import
import os

sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = (credential=DefaultAzureCredential(), subscription_id=sub_id)
```

## Examples

Code samples for this package can be found at:
- [Search MyService Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com
- [Azure Python Mgmt SDK Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)


## Troubleshooting

## Next steps

## 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-recoveryservicesdatareplication%2FREADME.png)
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"commit": "94f30964a532aa1dd0bc0ad0da4ef6b163e0a27e",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.9.7",
"use": [
"@autorest/[email protected]",
"@autorest/[email protected]"
],
"autorest_command": "autorest specification/recoveryservicesdatareplication/resource-manager/readme.md --generate-sample=True --include-x-ms-examples-original-file=True --python --python-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-python/sdk --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.9.7 --version-tolerant=False",
"readme": "specification/recoveryservicesdatareplication/resource-manager/readme.md"
}
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,26 @@
# 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 ._azure_site_recovery_management_service_api import AzureSiteRecoveryManagementServiceAPI
from ._version import VERSION

__version__ = VERSION

try:
from ._patch import __all__ as _patch_all
from ._patch import * # pylint: disable=unused-wildcard-import
except ImportError:
_patch_all = []
from ._patch import patch_sdk as _patch_sdk

__all__ = [
"AzureSiteRecoveryManagementServiceAPI",
]
__all__.extend([p for p in _patch_all if p not in __all__])

_patch_sdk()
Original file line number Diff line number Diff line change
@@ -0,0 +1,194 @@
# 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 copy import deepcopy
from typing import Any, TYPE_CHECKING

from azure.core.rest import HttpRequest, HttpResponse
from azure.mgmt.core import ARMPipelineClient

from . import models as _models
from ._configuration import AzureSiteRecoveryManagementServiceAPIConfiguration
from ._serialization import Deserializer, Serializer
from .operations import (
AzureSiteRecoveryManagementServiceAPIOperationsMixin,
DraOperationStatusOperations,
DraOperations,
EmailConfigurationOperations,
EventOperations,
FabricOperations,
FabricOperationsStatusOperations,
Operations,
PolicyOperationStatusOperations,
PolicyOperations,
ProtectedItemOperationStatusOperations,
ProtectedItemOperations,
RecoveryPointsOperations,
ReplicationExtensionOperationStatusOperations,
ReplicationExtensionOperations,
VaultOperationStatusOperations,
VaultOperations,
WorkflowOperationStatusOperations,
WorkflowOperations,
)

if TYPE_CHECKING:
# pylint: disable=unused-import,ungrouped-imports
from azure.core.credentials import TokenCredential


class AzureSiteRecoveryManagementServiceAPI(
AzureSiteRecoveryManagementServiceAPIOperationsMixin
): # pylint: disable=client-accepts-api-version-keyword,too-many-instance-attributes
"""A first party Azure service enabling the data replication.
:ivar dra: DraOperations operations
:vartype dra: azure.mgmt.recoveryservicesdatareplication.operations.DraOperations
:ivar dra_operation_status: DraOperationStatusOperations operations
:vartype dra_operation_status:
azure.mgmt.recoveryservicesdatareplication.operations.DraOperationStatusOperations
:ivar email_configuration: EmailConfigurationOperations operations
:vartype email_configuration:
azure.mgmt.recoveryservicesdatareplication.operations.EmailConfigurationOperations
:ivar event: EventOperations operations
:vartype event: azure.mgmt.recoveryservicesdatareplication.operations.EventOperations
:ivar fabric: FabricOperations operations
:vartype fabric: azure.mgmt.recoveryservicesdatareplication.operations.FabricOperations
:ivar fabric_operations_status: FabricOperationsStatusOperations operations
:vartype fabric_operations_status:
azure.mgmt.recoveryservicesdatareplication.operations.FabricOperationsStatusOperations
:ivar policy: PolicyOperations operations
:vartype policy: azure.mgmt.recoveryservicesdatareplication.operations.PolicyOperations
:ivar policy_operation_status: PolicyOperationStatusOperations operations
:vartype policy_operation_status:
azure.mgmt.recoveryservicesdatareplication.operations.PolicyOperationStatusOperations
:ivar protected_item: ProtectedItemOperations operations
:vartype protected_item:
azure.mgmt.recoveryservicesdatareplication.operations.ProtectedItemOperations
:ivar protected_item_operation_status: ProtectedItemOperationStatusOperations operations
:vartype protected_item_operation_status:
azure.mgmt.recoveryservicesdatareplication.operations.ProtectedItemOperationStatusOperations
:ivar recovery_points: RecoveryPointsOperations operations
:vartype recovery_points:
azure.mgmt.recoveryservicesdatareplication.operations.RecoveryPointsOperations
:ivar replication_extension: ReplicationExtensionOperations operations
:vartype replication_extension:
azure.mgmt.recoveryservicesdatareplication.operations.ReplicationExtensionOperations
:ivar replication_extension_operation_status: ReplicationExtensionOperationStatusOperations
operations
:vartype replication_extension_operation_status:
azure.mgmt.recoveryservicesdatareplication.operations.ReplicationExtensionOperationStatusOperations
:ivar operations: Operations operations
:vartype operations: azure.mgmt.recoveryservicesdatareplication.operations.Operations
:ivar vault: VaultOperations operations
:vartype vault: azure.mgmt.recoveryservicesdatareplication.operations.VaultOperations
:ivar vault_operation_status: VaultOperationStatusOperations operations
:vartype vault_operation_status:
azure.mgmt.recoveryservicesdatareplication.operations.VaultOperationStatusOperations
:ivar workflow: WorkflowOperations operations
:vartype workflow: azure.mgmt.recoveryservicesdatareplication.operations.WorkflowOperations
:ivar workflow_operation_status: WorkflowOperationStatusOperations operations
:vartype workflow_operation_status:
azure.mgmt.recoveryservicesdatareplication.operations.WorkflowOperationStatusOperations
:param credential: Credential needed for the client to connect to Azure. Required.
:type credential: ~azure.core.credentials.TokenCredential
:param subscription_id: The ID of the target subscription. The value must be an UUID. Required.
:type subscription_id: str
:param base_url: Service URL. Default value is "https://management.azure.com".
:type base_url: str
:keyword api_version: Api Version. Default value is "2021-02-16-preview". Note that overriding
this default value may result in unsupported behavior.
:paramtype api_version: str
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no
Retry-After header is present.
"""

def __init__(
self,
credential: "TokenCredential",
subscription_id: str,
base_url: str = "https://management.azure.com",
**kwargs: Any
) -> None:
self._config = AzureSiteRecoveryManagementServiceAPIConfiguration(
credential=credential, subscription_id=subscription_id, **kwargs
)
self._client: ARMPipelineClient = 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._deserialize = Deserializer(client_models)
self._serialize.client_side_validation = False
self.dra = DraOperations(self._client, self._config, self._serialize, self._deserialize)
self.dra_operation_status = DraOperationStatusOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.email_configuration = EmailConfigurationOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.event = EventOperations(self._client, self._config, self._serialize, self._deserialize)
self.fabric = FabricOperations(self._client, self._config, self._serialize, self._deserialize)
self.fabric_operations_status = FabricOperationsStatusOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.policy = PolicyOperations(self._client, self._config, self._serialize, self._deserialize)
self.policy_operation_status = PolicyOperationStatusOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.protected_item = ProtectedItemOperations(self._client, self._config, self._serialize, self._deserialize)
self.protected_item_operation_status = ProtectedItemOperationStatusOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.recovery_points = RecoveryPointsOperations(self._client, self._config, self._serialize, self._deserialize)
self.replication_extension = ReplicationExtensionOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.replication_extension_operation_status = ReplicationExtensionOperationStatusOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.operations = Operations(self._client, self._config, self._serialize, self._deserialize)
self.vault = VaultOperations(self._client, self._config, self._serialize, self._deserialize)
self.vault_operation_status = VaultOperationStatusOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.workflow = WorkflowOperations(self._client, self._config, self._serialize, self._deserialize)
self.workflow_operation_status = WorkflowOperationStatusOperations(
self._client, self._config, self._serialize, self._deserialize
)

def _send_request(self, request: HttpRequest, **kwargs: Any) -> HttpResponse:
"""Runs the network request through the client's chained policies.
>>> from azure.core.rest import HttpRequest
>>> request = HttpRequest("GET", "https://www.example.org/")
<HttpRequest [GET], url: 'https://www.example.org/'>
>>> response = client._send_request(request)
<HttpResponse: 200 OK>
For more information on this code flow, see https://aka.ms/azsdk/dpcodegen/python/send_request
:param request: The network request you want to make. Required.
:type request: ~azure.core.rest.HttpRequest
:keyword bool stream: Whether the response payload will be streamed. Defaults to False.
:return: The response of your network call. Does not do error handling on your response.
:rtype: ~azure.core.rest.HttpResponse
"""

request_copy = deepcopy(request)
request_copy.url = self._client.format_url(request_copy.url)
return self._client.send_request(request_copy, **kwargs)

def close(self) -> None:
self._client.close()

def __enter__(self) -> "AzureSiteRecoveryManagementServiceAPI":
self._client.__enter__()
return self

def __exit__(self, *exc_details: Any) -> None:
self._client.__exit__(*exc_details)
Loading

0 comments on commit 21e8be9

Please sign in to comment.