forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from ee67e477dc606aea359b5055aae86e11ce1542f8
Add read only according to comment.
- Loading branch information
SDK Automation
committed
Apr 3, 2020
1 parent
fa9f1a3
commit 6399ca8
Showing
95 changed files
with
6,791 additions
and
472 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
sdk/resources/azure-mgmt-resource/azure/mgmt/resource/deploymentscripts/__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 DeploymentScriptsClientConfiguration | ||
from ._deployment_scripts_client import DeploymentScriptsClient | ||
__all__ = ['DeploymentScriptsClient', 'DeploymentScriptsClientConfiguration'] | ||
|
||
from ..version import VERSION | ||
|
||
__version__ = VERSION | ||
|
49 changes: 49 additions & 0 deletions
49
sdk/resources/azure-mgmt-resource/azure/mgmt/resource/deploymentscripts/_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,49 @@ | ||
# 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 DeploymentScriptsClientConfiguration(AzureConfiguration): | ||
"""Configuration for DeploymentScriptsClient | ||
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: Subscription Id which forms part of the URI for | ||
every service call. | ||
: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(DeploymentScriptsClientConfiguration, 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 |
93 changes: 93 additions & 0 deletions
93
...s/azure-mgmt-resource/azure/mgmt/resource/deploymentscripts/_deployment_scripts_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,93 @@ | ||
# 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 azure.profiles import KnownProfiles, ProfileDefinition | ||
from azure.profiles.multiapiclient import MultiApiClientMixin | ||
from ._configuration import DeploymentScriptsClientConfiguration | ||
|
||
|
||
|
||
class DeploymentScriptsClient(MultiApiClientMixin, SDKClient): | ||
"""The APIs listed in this specification can be used to manage Deployment Scripts resource through the Azure Resource Manager. | ||
This ready contains multiple API versions, to help you deal with all Azure clouds | ||
(Azure Stack, Azure Government, Azure China, etc.). | ||
By default, uses latest API version available on public Azure. | ||
For production, you should stick a particular api-version and/or profile. | ||
The profile sets a mapping between the operation group and an API version. | ||
The api-version parameter sets the default API version if the operation | ||
group is not described in the profile. | ||
:ivar config: Configuration for client. | ||
:vartype config: DeploymentScriptsClientConfiguration | ||
: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: Subscription credentials which uniquely identify | ||
Microsoft Azure subscription. The subscription ID forms part of the URI | ||
for every service call. | ||
:type subscription_id: str | ||
:param str api_version: API version to use if no profile is provided, or if | ||
missing in profile. | ||
:param str base_url: Service URL | ||
:param profile: A profile definition, from KnownProfiles to dict. | ||
:type profile: azure.profiles.KnownProfiles | ||
""" | ||
|
||
DEFAULT_API_VERSION = '2019-10-01-preview' | ||
_PROFILE_TAG = "azure.mgmt.resource.deploymentscripts.DeploymentScriptsClient" | ||
LATEST_PROFILE = ProfileDefinition({ | ||
_PROFILE_TAG: { | ||
None: DEFAULT_API_VERSION, | ||
}}, | ||
_PROFILE_TAG + " latest" | ||
) | ||
|
||
def __init__(self, credentials, subscription_id, api_version=None, base_url=None, profile=KnownProfiles.default): | ||
self.config = DeploymentScriptsClientConfiguration(credentials, subscription_id, base_url) | ||
super(DeploymentScriptsClient, self).__init__( | ||
credentials, | ||
self.config, | ||
api_version=api_version, | ||
profile=profile | ||
) | ||
|
||
@classmethod | ||
def _models_dict(cls, api_version): | ||
return {k: v for k, v in cls.models(api_version).__dict__.items() if isinstance(v, type)} | ||
|
||
@classmethod | ||
def models(cls, api_version=DEFAULT_API_VERSION): | ||
"""Module depends on the API version: | ||
* 2019-10-01-preview: :mod:`v2019_10_preview.models<azure.mgmt.resource.deploymentscripts.v2019_10_preview.models>` | ||
""" | ||
if api_version == '2019-10-01-preview': | ||
from .v2019_10_preview import models | ||
return models | ||
raise NotImplementedError("APIVersion {} is not available".format(api_version)) | ||
|
||
@property | ||
def deployment_scripts(self): | ||
"""Instance depends on the API version: | ||
* 2019-10-01-preview: :class:`DeploymentScriptsOperations<azure.mgmt.resource.deploymentscripts.v2019_10_preview.operations.DeploymentScriptsOperations>` | ||
""" | ||
api_version = self._get_api_version('deployment_scripts') | ||
if api_version == '2019-10-01-preview': | ||
from .v2019_10_preview.operations import DeploymentScriptsOperations as OperationClass | ||
else: | ||
raise NotImplementedError("APIVersion {} is not available".format(api_version)) | ||
return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) |
7 changes: 7 additions & 0 deletions
7
sdk/resources/azure-mgmt-resource/azure/mgmt/resource/deploymentscripts/models.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,7 @@ | ||
# 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. | ||
# -------------------------------------------------------------------------- | ||
from .v2019_10_preview.models import * |
19 changes: 19 additions & 0 deletions
19
...es/azure-mgmt-resource/azure/mgmt/resource/deploymentscripts/v2019_10_preview/__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 DeploymentScriptsClientConfiguration | ||
from ._deployment_scripts_client import DeploymentScriptsClient | ||
__all__ = ['DeploymentScriptsClient', 'DeploymentScriptsClientConfiguration'] | ||
|
||
from .version import VERSION | ||
|
||
__version__ = VERSION | ||
|
49 changes: 49 additions & 0 deletions
49
...re-mgmt-resource/azure/mgmt/resource/deploymentscripts/v2019_10_preview/_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,49 @@ | ||
# 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 DeploymentScriptsClientConfiguration(AzureConfiguration): | ||
"""Configuration for DeploymentScriptsClient | ||
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: Subscription Id which forms part of the URI for | ||
every service call. | ||
: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(DeploymentScriptsClientConfiguration, 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 |
50 changes: 50 additions & 0 deletions
50
...urce/azure/mgmt/resource/deploymentscripts/v2019_10_preview/_deployment_scripts_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,50 @@ | ||
# 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 DeploymentScriptsClientConfiguration | ||
from .operations import DeploymentScriptsOperations | ||
from . import models | ||
|
||
|
||
class DeploymentScriptsClient(SDKClient): | ||
"""The APIs listed in this specification can be used to manage Deployment Scripts resource through the Azure Resource Manager. | ||
:ivar config: Configuration for client. | ||
:vartype config: DeploymentScriptsClientConfiguration | ||
:ivar deployment_scripts: DeploymentScripts operations | ||
:vartype deployment_scripts: azure.mgmt.resource.deploymentscripts.v2019_10_preview.operations.DeploymentScriptsOperations | ||
: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: Subscription Id which forms part of the URI for | ||
every service call. | ||
:type subscription_id: str | ||
:param str base_url: Service URL | ||
""" | ||
|
||
def __init__( | ||
self, credentials, subscription_id, base_url=None): | ||
|
||
self.config = DeploymentScriptsClientConfiguration(credentials, subscription_id, base_url) | ||
super(DeploymentScriptsClient, 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-10-01-preview' | ||
self._serialize = Serializer(client_models) | ||
self._deserialize = Deserializer(client_models) | ||
|
||
self.deployment_scripts = DeploymentScriptsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) |
76 changes: 76 additions & 0 deletions
76
...e-mgmt-resource/azure/mgmt/resource/deploymentscripts/v2019_10_preview/models/__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,76 @@ | ||
# 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. | ||
# -------------------------------------------------------------------------- | ||
|
||
try: | ||
from ._models_py3 import AzureCliScript | ||
from ._models_py3 import AzurePowerShellScript | ||
from ._models_py3 import AzureResourceBase | ||
from ._models_py3 import ContainerConfiguration | ||
from ._models_py3 import DeploymentScript | ||
from ._models_py3 import DeploymentScriptsError, DeploymentScriptsErrorException | ||
from ._models_py3 import DeploymentScriptUpdateParameter | ||
from ._models_py3 import EnvironmentVariable | ||
from ._models_py3 import ErrorAdditionalInfo | ||
from ._models_py3 import ErrorResponse | ||
from ._models_py3 import ManagedServiceIdentity | ||
from ._models_py3 import ScriptLog | ||
from ._models_py3 import ScriptLogsList | ||
from ._models_py3 import ScriptStatus | ||
from ._models_py3 import SystemData | ||
from ._models_py3 import UserAssignedIdentity | ||
except (SyntaxError, ImportError): | ||
from ._models import AzureCliScript | ||
from ._models import AzurePowerShellScript | ||
from ._models import AzureResourceBase | ||
from ._models import ContainerConfiguration | ||
from ._models import DeploymentScript | ||
from ._models import DeploymentScriptsError, DeploymentScriptsErrorException | ||
from ._models import DeploymentScriptUpdateParameter | ||
from ._models import EnvironmentVariable | ||
from ._models import ErrorAdditionalInfo | ||
from ._models import ErrorResponse | ||
from ._models import ManagedServiceIdentity | ||
from ._models import ScriptLog | ||
from ._models import ScriptLogsList | ||
from ._models import ScriptStatus | ||
from ._models import SystemData | ||
from ._models import UserAssignedIdentity | ||
from ._paged_models import DeploymentScriptPaged | ||
from ._deployment_scripts_client_enums import ( | ||
ManagedServiceIdentityType, | ||
CreatedByType, | ||
CleanupOptions, | ||
ScriptProvisioningState, | ||
) | ||
|
||
__all__ = [ | ||
'AzureCliScript', | ||
'AzurePowerShellScript', | ||
'AzureResourceBase', | ||
'ContainerConfiguration', | ||
'DeploymentScript', | ||
'DeploymentScriptsError', 'DeploymentScriptsErrorException', | ||
'DeploymentScriptUpdateParameter', | ||
'EnvironmentVariable', | ||
'ErrorAdditionalInfo', | ||
'ErrorResponse', | ||
'ManagedServiceIdentity', | ||
'ScriptLog', | ||
'ScriptLogsList', | ||
'ScriptStatus', | ||
'SystemData', | ||
'UserAssignedIdentity', | ||
'DeploymentScriptPaged', | ||
'ManagedServiceIdentityType', | ||
'CreatedByType', | ||
'CleanupOptions', | ||
'ScriptProvisioningState', | ||
] |
Oops, something went wrong.