-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR resources/resource-manager] Add ARM resources specs for 2019-…
…08-01 (#6833) * Generated from cfd5d39ddf70eaa415736e11e3e8f9050d14d96e Create 2019-08-01 resources spec * Generated from 8d17016c30349fe4d989967f46fca1b7a4197f75 Include final-state-via for export * Generated from 70472dbb58d6ec33dba2388e49726b1a4dd3c114 Address PR feedback * Generated from 70472dbb58d6ec33dba2388e49726b1a4dd3c114 Address PR feedback
- Loading branch information
1 parent
054d230
commit 2547c93
Showing
19 changed files
with
9,915 additions
and
2 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
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
19 changes: 19 additions & 0 deletions
19
sdk/resources/azure-mgmt-resource/azure/mgmt/resource/resources/v2019_08_01/__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,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 ResourceManagementClientConfiguration | ||
from ._resource_management_client import ResourceManagementClient | ||
__all__ = ['ResourceManagementClient', 'ResourceManagementClientConfiguration'] | ||
|
||
from .version import VERSION | ||
|
||
__version__ = VERSION | ||
|
48 changes: 48 additions & 0 deletions
48
...resources/azure-mgmt-resource/azure/mgmt/resource/resources/v2019_08_01/_configuration.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,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 ResourceManagementClientConfiguration(AzureConfiguration): | ||
"""Configuration for ResourceManagementClient | ||
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 ID of the target subscription. | ||
: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(ResourceManagementClientConfiguration, 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-resource/{}'.format(VERSION)) | ||
self.add_user_agent('Azure-SDK-For-Python') | ||
|
||
self.credentials = credentials | ||
self.subscription_id = subscription_id |
79 changes: 79 additions & 0 deletions
79
...re-mgmt-resource/azure/mgmt/resource/resources/v2019_08_01/_resource_management_client.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,79 @@ | ||
# 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 ResourceManagementClientConfiguration | ||
from .operations import Operations | ||
from .operations import DeploymentsOperations | ||
from .operations import ProvidersOperations | ||
from .operations import ResourcesOperations | ||
from .operations import ResourceGroupsOperations | ||
from .operations import TagsOperations | ||
from .operations import DeploymentOperations | ||
from . import models | ||
|
||
|
||
class ResourceManagementClient(SDKClient): | ||
"""Provides operations for working with resources and resource groups. | ||
:ivar config: Configuration for client. | ||
:vartype config: ResourceManagementClientConfiguration | ||
:ivar operations: Operations operations | ||
:vartype operations: azure.mgmt.resource.resources.v2019_08_01.operations.Operations | ||
:ivar deployments: Deployments operations | ||
:vartype deployments: azure.mgmt.resource.resources.v2019_08_01.operations.DeploymentsOperations | ||
:ivar providers: Providers operations | ||
:vartype providers: azure.mgmt.resource.resources.v2019_08_01.operations.ProvidersOperations | ||
:ivar resources: Resources operations | ||
:vartype resources: azure.mgmt.resource.resources.v2019_08_01.operations.ResourcesOperations | ||
:ivar resource_groups: ResourceGroups operations | ||
:vartype resource_groups: azure.mgmt.resource.resources.v2019_08_01.operations.ResourceGroupsOperations | ||
:ivar tags: Tags operations | ||
:vartype tags: azure.mgmt.resource.resources.v2019_08_01.operations.TagsOperations | ||
:ivar deployment_operations: DeploymentOperations operations | ||
:vartype deployment_operations: azure.mgmt.resource.resources.v2019_08_01.operations.DeploymentOperations | ||
: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 ID of the target subscription. | ||
:type subscription_id: str | ||
:param str base_url: Service URL | ||
""" | ||
|
||
def __init__( | ||
self, credentials, subscription_id, base_url=None): | ||
|
||
self.config = ResourceManagementClientConfiguration(credentials, subscription_id, base_url) | ||
super(ResourceManagementClient, 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 = '2019-08-01' | ||
self._serialize = Serializer(client_models) | ||
self._deserialize = Deserializer(client_models) | ||
|
||
self.operations = Operations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.deployments = DeploymentsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.providers = ProvidersOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.resources = ResourcesOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.resource_groups = ResourceGroupsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.tags = TagsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.deployment_operations = DeploymentOperations( | ||
self._client, self.config, self._serialize, self._deserialize) |
Oops, something went wrong.