Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions sdk/migrate/azure-mgmt-migrationhub/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
21 changes: 21 additions & 0 deletions sdk/migrate/azure-mgmt-migrationhub/LICENSE
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.
8 changes: 8 additions & 0 deletions sdk/migrate/azure-mgmt-migrationhub/MANIFEST.in
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/migrationhub/py.typed
61 changes: 61 additions & 0 deletions sdk/migrate/azure-mgmt-migrationhub/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Microsoft Azure SDK for Python

This is the Microsoft Azure MyService Management Client Library.
This package has been tested with Python 3.8+.
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.8+ is required to use this package.
- [Azure subscription](https://azure.microsoft.com/free/)

### Install the package

```bash
pip install azure-mgmt-migrationhub
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.migrationhub 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.
11 changes: 11 additions & 0 deletions sdk/migrate/azure-mgmt-migrationhub/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"commit": "322a34de34ea3ce2eae90c29b55578a7ce82ff08",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest": "3.10.2",
"use": [
"@autorest/[email protected]",
"@autorest/[email protected]"
],
"autorest_command": "autorest specification/migrate/resource-manager/Microsoft.Migrate/MigrateProjects/readme.md --generate-sample=True --generate-test=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.10.2 --version-tolerant=False",
"readme": "specification/migrate/resource-manager/Microsoft.Migrate/MigrateProjects/readme.md"
}
1 change: 1 addition & 0 deletions sdk/migrate/azure-mgmt-migrationhub/azure/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
1 change: 1 addition & 0 deletions sdk/migrate/azure-mgmt-migrationhub/azure/mgmt/__init__.py
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,32 @@
# 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.
# --------------------------------------------------------------------------
# pylint: disable=wrong-import-position

from typing import TYPE_CHECKING

if TYPE_CHECKING:
from ._patch import * # pylint: disable=unused-wildcard-import

from ._azure_migrate_v2 import AzureMigrateV2 # type: ignore
from ._version import VERSION

__version__ = VERSION

try:
from ._patch import __all__ as _patch_all
from ._patch import *
except ImportError:
_patch_all = []
from ._patch import patch_sdk as _patch_sdk

__all__ = [
"AzureMigrateV2",
]
__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore

_patch_sdk()
Original file line number Diff line number Diff line change
@@ -0,0 +1,202 @@
# 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 typing_extensions import Self

from azure.core.pipeline import policies
from azure.core.rest import HttpRequest, HttpResponse
from azure.mgmt.core import ARMPipelineClient
from azure.mgmt.core.policies import ARMAutoResourceProviderRegistrationPolicy

from . import models as _models
from ._configuration import AzureMigrateV2Configuration
from ._serialization import Deserializer, Serializer
from .operations import (
DatabaseInstancesControllerOperations,
DatabasesControllerOperations,
EventsControllerOperations,
MachinesControllerOperations,
MigrateProjectsControllerOperations,
Operations,
PrivateEndpointConnectionControllerOperations,
PrivateEndpointConnectionProxyControllerOperations,
PrivateEndpointConnectionsControllerOperations,
PrivateLinkResourceControllerOperations,
ProjectsOperations,
SolutionsControllerOperations,
VirtualDesktopUserControllerOperations,
WebServersControllerOperations,
WebSitesControllerOperations,
)

if TYPE_CHECKING:
from azure.core.credentials import TokenCredential


class AzureMigrateV2: # pylint: disable=too-many-instance-attributes
"""Migrate your workloads to Azure.

:ivar database_instances_controller: DatabaseInstancesControllerOperations operations
:vartype database_instances_controller:
azure.mgmt.migrationhub.operations.DatabaseInstancesControllerOperations
:ivar databases_controller: DatabasesControllerOperations operations
:vartype databases_controller: azure.mgmt.migrationhub.operations.DatabasesControllerOperations
:ivar events_controller: EventsControllerOperations operations
:vartype events_controller: azure.mgmt.migrationhub.operations.EventsControllerOperations
:ivar machines_controller: MachinesControllerOperations operations
:vartype machines_controller: azure.mgmt.migrationhub.operations.MachinesControllerOperations
:ivar migrate_projects_controller: MigrateProjectsControllerOperations operations
:vartype migrate_projects_controller:
azure.mgmt.migrationhub.operations.MigrateProjectsControllerOperations
:ivar solutions_controller: SolutionsControllerOperations operations
:vartype solutions_controller: azure.mgmt.migrationhub.operations.SolutionsControllerOperations
:ivar virtual_desktop_user_controller: VirtualDesktopUserControllerOperations operations
:vartype virtual_desktop_user_controller:
azure.mgmt.migrationhub.operations.VirtualDesktopUserControllerOperations
:ivar web_servers_controller: WebServersControllerOperations operations
:vartype web_servers_controller:
azure.mgmt.migrationhub.operations.WebServersControllerOperations
:ivar web_sites_controller: WebSitesControllerOperations operations
:vartype web_sites_controller: azure.mgmt.migrationhub.operations.WebSitesControllerOperations
:ivar projects: ProjectsOperations operations
:vartype projects: azure.mgmt.migrationhub.operations.ProjectsOperations
:ivar private_endpoint_connections_controller: PrivateEndpointConnectionsControllerOperations
operations
:vartype private_endpoint_connections_controller:
azure.mgmt.migrationhub.operations.PrivateEndpointConnectionsControllerOperations
:ivar private_endpoint_connection_controller: PrivateEndpointConnectionControllerOperations
operations
:vartype private_endpoint_connection_controller:
azure.mgmt.migrationhub.operations.PrivateEndpointConnectionControllerOperations
:ivar private_endpoint_connection_proxy_controller:
PrivateEndpointConnectionProxyControllerOperations operations
:vartype private_endpoint_connection_proxy_controller:
azure.mgmt.migrationhub.operations.PrivateEndpointConnectionProxyControllerOperations
:ivar private_link_resource_controller: PrivateLinkResourceControllerOperations operations
:vartype private_link_resource_controller:
azure.mgmt.migrationhub.operations.PrivateLinkResourceControllerOperations
:ivar operations: Operations operations
:vartype operations: azure.mgmt.migrationhub.operations.Operations
: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. 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 "2023-01-01". Note that overriding this
default value may result in unsupported behavior.
:paramtype api_version: str
"""

def __init__(
self,
credential: "TokenCredential",
subscription_id: str,
base_url: str = "https://management.azure.com",
**kwargs: Any
) -> None:
self._config = AzureMigrateV2Configuration(credential=credential, subscription_id=subscription_id, **kwargs)
_policies = kwargs.pop("policies", None)
if _policies is None:
_policies = [
policies.RequestIdPolicy(**kwargs),
self._config.headers_policy,
self._config.user_agent_policy,
self._config.proxy_policy,
policies.ContentDecodePolicy(**kwargs),
ARMAutoResourceProviderRegistrationPolicy(),
self._config.redirect_policy,
self._config.retry_policy,
self._config.authentication_policy,
self._config.custom_hook_policy,
self._config.logging_policy,
policies.DistributedTracingPolicy(**kwargs),
policies.SensitiveHeaderCleanupPolicy(**kwargs) if self._config.redirect_policy else None,
self._config.http_logging_policy,
]
self._client: ARMPipelineClient = ARMPipelineClient(base_url=base_url, policies=_policies, **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.database_instances_controller = DatabaseInstancesControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.databases_controller = DatabasesControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.events_controller = EventsControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.machines_controller = MachinesControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.migrate_projects_controller = MigrateProjectsControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.solutions_controller = SolutionsControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.virtual_desktop_user_controller = VirtualDesktopUserControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.web_servers_controller = WebServersControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.web_sites_controller = WebSitesControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.projects = ProjectsOperations(self._client, self._config, self._serialize, self._deserialize)
self.private_endpoint_connections_controller = PrivateEndpointConnectionsControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.private_endpoint_connection_controller = PrivateEndpointConnectionControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.private_endpoint_connection_proxy_controller = PrivateEndpointConnectionProxyControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.private_link_resource_controller = PrivateLinkResourceControllerOperations(
self._client, self._config, self._serialize, self._deserialize
)
self.operations = Operations(self._client, self._config, self._serialize, self._deserialize)

def _send_request(self, request: HttpRequest, *, stream: bool = False, **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, stream=stream, **kwargs) # type: ignore

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

def __enter__(self) -> Self:
self._client.__enter__()
return self

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