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
11 changes: 11 additions & 0 deletions sdk/devtestlabs/azure-mgmt-devtestlabs/_meta.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"autorest": "3.7.2",
"use": [
"@autorest/[email protected]",
"@autorest/[email protected]"
],
"commit": "e7da1b7cefd3d42a4d97145ffe9e0336da08cea0",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/devtestlabs/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.7.2",
"readme": "specification/devtestlabs/resource-manager/readme.md"
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
__version__ = VERSION
__all__ = ['DevTestLabsClient']

try:
from ._patch import patch_sdk # type: ignore
patch_sdk()
except ImportError:
pass
# `._patch.py` is used for handwritten extensions to the generated code
# Example: https://github.com/Azure/azure-sdk-for-python/blob/main/doc/dev/customize_code/how-to-patch-sdk-code.md
from ._patch import patch_sdk
patch_sdk()
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,16 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

from typing import TYPE_CHECKING
from typing import Any, TYPE_CHECKING

from azure.core.configuration import Configuration
from azure.core.pipeline import policies
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
from azure.mgmt.core.policies import ARMChallengeAuthenticationPolicy, ARMHttpLoggingPolicy

from ._version import VERSION

if TYPE_CHECKING:
# pylint: disable=unused-import,ungrouped-imports
from typing import Any

from azure.core.credentials import TokenCredential


Expand All @@ -35,16 +33,15 @@ class DevTestLabsClientConfiguration(Configuration):

def __init__(
self,
credential, # type: "TokenCredential"
subscription_id, # type: str
**kwargs # type: Any
):
# type: (...) -> None
credential: "TokenCredential",
subscription_id: str,
**kwargs: Any
) -> None:
super(DevTestLabsClientConfiguration, self).__init__(**kwargs)
if credential is None:
raise ValueError("Parameter 'credential' must not be None.")
if subscription_id is None:
raise ValueError("Parameter 'subscription_id' must not be None.")
super(DevTestLabsClientConfiguration, self).__init__(**kwargs)

self.credential = credential
self.subscription_id = subscription_id
Expand All @@ -68,4 +65,4 @@ def _configure(
self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs)
self.authentication_policy = kwargs.get('authentication_policy')
if self.credential and not self.authentication_policy:
self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
self.authentication_policy = ARMChallengeAuthenticationPolicy(self.credential, *self.credential_scopes, **kwargs)
Original file line number Diff line number Diff line change
Expand Up @@ -6,47 +6,22 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

from typing import TYPE_CHECKING
from copy import deepcopy
from typing import Any, Optional, TYPE_CHECKING

from azure.core.rest import HttpRequest, HttpResponse
from azure.mgmt.core import ARMPipelineClient
from msrest import Deserializer, Serializer

from . import models
from ._configuration import DevTestLabsClientConfiguration
from .operations import ArmTemplatesOperations, ArtifactSourcesOperations, ArtifactsOperations, CostsOperations, CustomImagesOperations, DisksOperations, EnvironmentsOperations, FormulasOperations, GalleryImagesOperations, GlobalSchedulesOperations, LabsOperations, NotificationChannelsOperations, Operations, PoliciesOperations, PolicySetsOperations, ProviderOperationsOperations, SchedulesOperations, SecretsOperations, ServiceFabricSchedulesOperations, ServiceFabricsOperations, ServiceRunnersOperations, UsersOperations, VirtualMachineSchedulesOperations, VirtualMachinesOperations, VirtualNetworksOperations

if TYPE_CHECKING:
# pylint: disable=unused-import,ungrouped-imports
from typing import Any, Optional

from azure.core.credentials import TokenCredential

from ._configuration import DevTestLabsClientConfiguration
from .operations import ProviderOperationsOperations
from .operations import LabsOperations
from .operations import Operations
from .operations import GlobalSchedulesOperations
from .operations import ArtifactSourcesOperations
from .operations import ArmTemplatesOperations
from .operations import ArtifactsOperations
from .operations import CostsOperations
from .operations import CustomImagesOperations
from .operations import FormulasOperations
from .operations import GalleryImagesOperations
from .operations import NotificationChannelsOperations
from .operations import PolicySetsOperations
from .operations import PoliciesOperations
from .operations import SchedulesOperations
from .operations import ServiceRunnersOperations
from .operations import UsersOperations
from .operations import DisksOperations
from .operations import EnvironmentsOperations
from .operations import SecretsOperations
from .operations import ServiceFabricsOperations
from .operations import ServiceFabricSchedulesOperations
from .operations import VirtualMachinesOperations
from .operations import VirtualMachineSchedulesOperations
from .operations import VirtualNetworksOperations
from . import models


class DevTestLabsClient(object):
class DevTestLabsClient:
"""The DevTest Labs Client.

:ivar provider_operations: ProviderOperationsOperations operations
Expand All @@ -72,7 +47,8 @@ class DevTestLabsClient(object):
:ivar gallery_images: GalleryImagesOperations operations
:vartype gallery_images: azure.mgmt.devtestlabs.operations.GalleryImagesOperations
:ivar notification_channels: NotificationChannelsOperations operations
:vartype notification_channels: azure.mgmt.devtestlabs.operations.NotificationChannelsOperations
:vartype notification_channels:
azure.mgmt.devtestlabs.operations.NotificationChannelsOperations
:ivar policy_sets: PolicySetsOperations operations
:vartype policy_sets: azure.mgmt.devtestlabs.operations.PolicySetsOperations
:ivar policies: PoliciesOperations operations
Expand All @@ -92,89 +68,91 @@ class DevTestLabsClient(object):
:ivar service_fabrics: ServiceFabricsOperations operations
:vartype service_fabrics: azure.mgmt.devtestlabs.operations.ServiceFabricsOperations
:ivar service_fabric_schedules: ServiceFabricSchedulesOperations operations
:vartype service_fabric_schedules: azure.mgmt.devtestlabs.operations.ServiceFabricSchedulesOperations
:vartype service_fabric_schedules:
azure.mgmt.devtestlabs.operations.ServiceFabricSchedulesOperations
:ivar virtual_machines: VirtualMachinesOperations operations
:vartype virtual_machines: azure.mgmt.devtestlabs.operations.VirtualMachinesOperations
:ivar virtual_machine_schedules: VirtualMachineSchedulesOperations operations
:vartype virtual_machine_schedules: azure.mgmt.devtestlabs.operations.VirtualMachineSchedulesOperations
:vartype virtual_machine_schedules:
azure.mgmt.devtestlabs.operations.VirtualMachineSchedulesOperations
:ivar virtual_networks: VirtualNetworksOperations operations
:vartype virtual_networks: azure.mgmt.devtestlabs.operations.VirtualNetworksOperations
:param credential: Credential needed for the client to connect to Azure.
:type credential: ~azure.core.credentials.TokenCredential
:param subscription_id: The subscription ID.
:type subscription_id: str
:param str base_url: Service URL
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
:param base_url: Service URL. Default value is 'https://management.azure.com'.
:type base_url: 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, # type: "TokenCredential"
subscription_id, # type: str
base_url=None, # type: Optional[str]
**kwargs # type: Any
):
# type: (...) -> None
if not base_url:
base_url = 'https://management.azure.com'
self._config = DevTestLabsClientConfiguration(credential, subscription_id, **kwargs)
credential: "TokenCredential",
subscription_id: str,
base_url: str = "https://management.azure.com",
**kwargs: Any
) -> None:
self._config = DevTestLabsClientConfiguration(credential=credential, subscription_id=subscription_id, **kwargs)
self._client = 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._serialize.client_side_validation = False
self._deserialize = Deserializer(client_models)
self._serialize.client_side_validation = False
self.provider_operations = ProviderOperationsOperations(self._client, self._config, self._serialize, self._deserialize)
self.labs = LabsOperations(self._client, self._config, self._serialize, self._deserialize)
self.operations = Operations(self._client, self._config, self._serialize, self._deserialize)
self.global_schedules = GlobalSchedulesOperations(self._client, self._config, self._serialize, self._deserialize)
self.artifact_sources = ArtifactSourcesOperations(self._client, self._config, self._serialize, self._deserialize)
self.arm_templates = ArmTemplatesOperations(self._client, self._config, self._serialize, self._deserialize)
self.artifacts = ArtifactsOperations(self._client, self._config, self._serialize, self._deserialize)
self.costs = CostsOperations(self._client, self._config, self._serialize, self._deserialize)
self.custom_images = CustomImagesOperations(self._client, self._config, self._serialize, self._deserialize)
self.formulas = FormulasOperations(self._client, self._config, self._serialize, self._deserialize)
self.gallery_images = GalleryImagesOperations(self._client, self._config, self._serialize, self._deserialize)
self.notification_channels = NotificationChannelsOperations(self._client, self._config, self._serialize, self._deserialize)
self.policy_sets = PolicySetsOperations(self._client, self._config, self._serialize, self._deserialize)
self.policies = PoliciesOperations(self._client, self._config, self._serialize, self._deserialize)
self.schedules = SchedulesOperations(self._client, self._config, self._serialize, self._deserialize)
self.service_runners = ServiceRunnersOperations(self._client, self._config, self._serialize, self._deserialize)
self.users = UsersOperations(self._client, self._config, self._serialize, self._deserialize)
self.disks = DisksOperations(self._client, self._config, self._serialize, self._deserialize)
self.environments = EnvironmentsOperations(self._client, self._config, self._serialize, self._deserialize)
self.secrets = SecretsOperations(self._client, self._config, self._serialize, self._deserialize)
self.service_fabrics = ServiceFabricsOperations(self._client, self._config, self._serialize, self._deserialize)
self.service_fabric_schedules = ServiceFabricSchedulesOperations(self._client, self._config, self._serialize, self._deserialize)
self.virtual_machines = VirtualMachinesOperations(self._client, self._config, self._serialize, self._deserialize)
self.virtual_machine_schedules = VirtualMachineSchedulesOperations(self._client, self._config, self._serialize, self._deserialize)
self.virtual_networks = VirtualNetworksOperations(self._client, self._config, self._serialize, self._deserialize)


def _send_request(
self,
request, # type: 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/python/protocol/quickstart

: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
"""

self.provider_operations = ProviderOperationsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.labs = LabsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.operations = Operations(
self._client, self._config, self._serialize, self._deserialize)
self.global_schedules = GlobalSchedulesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.artifact_sources = ArtifactSourcesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.arm_templates = ArmTemplatesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.artifacts = ArtifactsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.costs = CostsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.custom_images = CustomImagesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.formulas = FormulasOperations(
self._client, self._config, self._serialize, self._deserialize)
self.gallery_images = GalleryImagesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.notification_channels = NotificationChannelsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.policy_sets = PolicySetsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.policies = PoliciesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.schedules = SchedulesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.service_runners = ServiceRunnersOperations(
self._client, self._config, self._serialize, self._deserialize)
self.users = UsersOperations(
self._client, self._config, self._serialize, self._deserialize)
self.disks = DisksOperations(
self._client, self._config, self._serialize, self._deserialize)
self.environments = EnvironmentsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.secrets = SecretsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.service_fabrics = ServiceFabricsOperations(
self._client, self._config, self._serialize, self._deserialize)
self.service_fabric_schedules = ServiceFabricSchedulesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.virtual_machines = VirtualMachinesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.virtual_machine_schedules = VirtualMachineSchedulesOperations(
self._client, self._config, self._serialize, self._deserialize)
self.virtual_networks = VirtualNetworksOperations(
self._client, self._config, self._serialize, self._deserialize)
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):
# type: () -> None
Expand Down
Loading