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
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 TemplateSpecsClientConfiguration
from ._template_specs_client import TemplateSpecsClient
__all__ = ['TemplateSpecsClient', 'TemplateSpecsClientConfiguration']

from ..version import VERSION

__version__ = VERSION

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 TemplateSpecsClientConfiguration(AzureConfiguration):
"""Configuration for TemplateSpecsClient
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(TemplateSpecsClientConfiguration, 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
# 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 TemplateSpecsClientConfiguration



class TemplateSpecsClient(MultiApiClientMixin, SDKClient):
"""The APIs listed in this specification can be used to manage Template Spec resources 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: TemplateSpecsClientConfiguration

: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-06-01-preview'
_PROFILE_TAG = "azure.mgmt.resource.templatespecs.TemplateSpecsClient"
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 = TemplateSpecsClientConfiguration(credentials, subscription_id, base_url)
super(TemplateSpecsClient, 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-06-01-preview: :mod:`v2019_06_preview.models<azure.mgmt.resource.templatespecs.v2019_06_preview.models>`
"""
if api_version == '2019-06-01-preview':
from .v2019_06_preview import models
return models
raise NotImplementedError("APIVersion {} is not available".format(api_version))

@property
def template_spec_versions(self):
"""Instance depends on the API version:

* 2019-06-01-preview: :class:`TemplateSpecVersionsOperations<azure.mgmt.resource.templatespecs.v2019_06_preview.operations.TemplateSpecVersionsOperations>`
"""
api_version = self._get_api_version('template_spec_versions')
if api_version == '2019-06-01-preview':
from .v2019_06_preview.operations import TemplateSpecVersionsOperations 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)))

@property
def template_specs(self):
"""Instance depends on the API version:

* 2019-06-01-preview: :class:`TemplateSpecsOperations<azure.mgmt.resource.templatespecs.v2019_06_preview.operations.TemplateSpecsOperations>`
"""
api_version = self._get_api_version('template_specs')
if api_version == '2019-06-01-preview':
from .v2019_06_preview.operations import TemplateSpecsOperations 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)))
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_06_preview.models import *
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 TemplateSpecsClientConfiguration
from ._template_specs_client import TemplateSpecsClient
__all__ = ['TemplateSpecsClient', 'TemplateSpecsClientConfiguration']

from .version import VERSION

__version__ = VERSION

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 TemplateSpecsClientConfiguration(AzureConfiguration):
"""Configuration for TemplateSpecsClient
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(TemplateSpecsClientConfiguration, 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
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# 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 TemplateSpecsClientConfiguration
from .operations import TemplateSpecsOperations
from .operations import TemplateSpecVersionsOperations
from . import models


class TemplateSpecsClient(SDKClient):
"""The APIs listed in this specification can be used to manage Template Spec resources through the Azure Resource Manager.

:ivar config: Configuration for client.
:vartype config: TemplateSpecsClientConfiguration

:ivar template_specs: TemplateSpecs operations
:vartype template_specs: azure.mgmt.resource.templatespecs.v2019_06_preview.operations.TemplateSpecsOperations
:ivar template_spec_versions: TemplateSpecVersions operations
:vartype template_spec_versions: azure.mgmt.resource.templatespecs.v2019_06_preview.operations.TemplateSpecVersionsOperations

: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 = TemplateSpecsClientConfiguration(credentials, subscription_id, base_url)
super(TemplateSpecsClient, 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-06-01-preview'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)

self.template_specs = TemplateSpecsOperations(
self._client, self.config, self._serialize, self._deserialize)
self.template_spec_versions = TemplateSpecVersionsOperations(
self._client, self.config, self._serialize, self._deserialize)
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# 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 AzureResourceBase
from ._models_py3 import ErrorAdditionalInfo
from ._models_py3 import ErrorResponse
from ._models_py3 import SystemData
from ._models_py3 import TemplateSpecArtifact
from ._models_py3 import TemplateSpecModel
from ._models_py3 import TemplateSpecsError, TemplateSpecsErrorException
from ._models_py3 import TemplateSpecTemplateArtifact
from ._models_py3 import TemplateSpecUpdateModel
from ._models_py3 import TemplateSpecVersionModel
from ._models_py3 import TemplateSpecVersionUpdateModel
except (SyntaxError, ImportError):
from ._models import AzureResourceBase
from ._models import ErrorAdditionalInfo
from ._models import ErrorResponse
from ._models import SystemData
from ._models import TemplateSpecArtifact
from ._models import TemplateSpecModel
from ._models import TemplateSpecsError, TemplateSpecsErrorException
from ._models import TemplateSpecTemplateArtifact
from ._models import TemplateSpecUpdateModel
from ._models import TemplateSpecVersionModel
from ._models import TemplateSpecVersionUpdateModel
from ._paged_models import TemplateSpecModelPaged
from ._paged_models import TemplateSpecVersionModelPaged
from ._template_specs_client_enums import (
CreatedByType,
)

__all__ = [
'AzureResourceBase',
'ErrorAdditionalInfo',
'ErrorResponse',
'SystemData',
'TemplateSpecArtifact',
'TemplateSpecModel',
'TemplateSpecsError', 'TemplateSpecsErrorException',
'TemplateSpecTemplateArtifact',
'TemplateSpecUpdateModel',
'TemplateSpecVersionModel',
'TemplateSpecVersionUpdateModel',
'TemplateSpecModelPaged',
'TemplateSpecVersionModelPaged',
'CreatedByType',
]
Loading