del useless files (#18528)
This commit is contained in:
Родитель
bc7337c0e1
Коммит
ef4faf87d4
|
@ -1,5 +0,0 @@
|
|||
# Release History
|
||||
|
||||
## 1.0.0b1 (2021-03-25)
|
||||
|
||||
* Initial Release
|
|
@ -1,5 +0,0 @@
|
|||
recursive-include tests *.py *.yaml
|
||||
include *.md
|
||||
include azure/__init__.py
|
||||
include azure/mgmt/__init__.py
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
# Microsoft Azure SDK for Python
|
||||
|
||||
This is the Microsoft Azure Extendedlocation Management Client Library.
|
||||
This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8.
|
||||
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
|
||||
|
||||
|
||||
# Usage
|
||||
|
||||
|
||||
To learn how to use this package, see the [quickstart guide](https://aka.ms/azsdk/python/mgmt)
|
||||
|
||||
|
||||
|
||||
For docs and references, see [Python SDK References](https://docs.microsoft.com/python/api/overview/azure/)
|
||||
Code samples for this package can be found at [Extendedlocation Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com.
|
||||
Additional code samples for different Azure services are available at [Samples Repo](https://aka.ms/azsdk/python/mgmt/samples)
|
||||
|
||||
|
||||
# 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.
|
||||
|
||||
|
||||
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-extendedlocation%2FREADME.png)
|
|
@ -1 +0,0 @@
|
|||
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
|
@ -1 +0,0 @@
|
|||
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
|
@ -1,16 +0,0 @@
|
|||
# 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 ._custom_locations import CustomLocations
|
||||
__all__ = ['CustomLocations']
|
||||
|
||||
try:
|
||||
from ._patch import patch_sdk # type: ignore
|
||||
patch_sdk()
|
||||
except ImportError:
|
||||
pass
|
|
@ -1,66 +0,0 @@
|
|||
# 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 typing import Any
|
||||
|
||||
from azure.core.configuration import Configuration
|
||||
from azure.core.pipeline import policies
|
||||
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
|
||||
|
||||
from ._version import VERSION
|
||||
|
||||
|
||||
class CustomLocationsConfiguration(Configuration):
|
||||
"""Configuration for CustomLocations.
|
||||
|
||||
Note that all parameters used to create this instance are saved as instance
|
||||
attributes.
|
||||
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials.TokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
:type subscription_id: str
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
credential, # type: "TokenCredential"
|
||||
subscription_id, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> None
|
||||
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(CustomLocationsConfiguration, self).__init__(**kwargs)
|
||||
|
||||
self.credential = credential
|
||||
self.subscription_id = subscription_id
|
||||
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
|
||||
kwargs.setdefault('sdk_moniker', 'azure-mgmt-extendedlocation/{}'.format(VERSION))
|
||||
self._configure(**kwargs)
|
||||
|
||||
def _configure(
|
||||
self,
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> None
|
||||
self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs)
|
||||
self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs)
|
||||
self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs)
|
||||
self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs)
|
||||
self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs)
|
||||
self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs)
|
||||
self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs)
|
||||
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)
|
|
@ -1,117 +0,0 @@
|
|||
# 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 azure.mgmt.core import ARMPipelineClient
|
||||
from msrest import Serializer, Deserializer
|
||||
|
||||
from azure.profiles import KnownProfiles, ProfileDefinition
|
||||
from azure.profiles.multiapiclient import MultiApiClientMixin
|
||||
from ._configuration import CustomLocationsConfiguration
|
||||
|
||||
class _SDKClient(object):
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""This is a fake class to support current implemetation of MultiApiClientMixin."
|
||||
Will be removed in final version of multiapi azure-core based client
|
||||
"""
|
||||
pass
|
||||
|
||||
class CustomLocations(MultiApiClientMixin, _SDKClient):
|
||||
"""The customLocations Rest API spec.
|
||||
|
||||
This ready contains multiple API versions, to help you deal with all of the Azure clouds
|
||||
(Azure Stack, Azure Government, Azure China, etc.).
|
||||
By default, it uses the latest API version available on public Azure.
|
||||
For production, you should stick to a particular api-version and/or profile.
|
||||
The profile sets a mapping between an operation group and its API version.
|
||||
The api-version parameter sets the default API version if the operation
|
||||
group is not described in the profile.
|
||||
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials.TokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
: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
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
|
||||
"""
|
||||
|
||||
DEFAULT_API_VERSION = '2021-03-15-preview'
|
||||
_PROFILE_TAG = "azure.mgmt.extendedlocation.CustomLocations"
|
||||
LATEST_PROFILE = ProfileDefinition({
|
||||
_PROFILE_TAG: {
|
||||
None: DEFAULT_API_VERSION,
|
||||
}},
|
||||
_PROFILE_TAG + " latest"
|
||||
)
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
credential, # type: "TokenCredential"
|
||||
subscription_id, # type: str
|
||||
api_version=None,
|
||||
base_url=None,
|
||||
profile=KnownProfiles.default,
|
||||
**kwargs # type: Any
|
||||
):
|
||||
if not base_url:
|
||||
base_url = 'https://management.azure.com'
|
||||
self._config = CustomLocationsConfiguration(credential, subscription_id, **kwargs)
|
||||
self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs)
|
||||
super(CustomLocations, self).__init__(
|
||||
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:
|
||||
|
||||
* 2020-07-15-privatepreview: :mod:`v2020_07_15_privatepreview.models<azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models>`
|
||||
* 2021-03-15-preview: :mod:`v2021_03_15_preview.models<azure.mgmt.extendedlocation.v2021_03_15_preview.models>`
|
||||
"""
|
||||
if api_version == '2020-07-15-privatepreview':
|
||||
from .v2020_07_15_privatepreview import models
|
||||
return models
|
||||
elif api_version == '2021-03-15-preview':
|
||||
from .v2021_03_15_preview import models
|
||||
return models
|
||||
raise ValueError("API version {} is not available".format(api_version))
|
||||
|
||||
@property
|
||||
def custom_locations(self):
|
||||
"""Instance depends on the API version:
|
||||
|
||||
* 2020-07-15-privatepreview: :class:`CustomLocationsOperations<azure.mgmt.extendedlocation.v2020_07_15_privatepreview.operations.CustomLocationsOperations>`
|
||||
* 2021-03-15-preview: :class:`CustomLocationsOperations<azure.mgmt.extendedlocation.v2021_03_15_preview.operations.CustomLocationsOperations>`
|
||||
"""
|
||||
api_version = self._get_api_version('custom_locations')
|
||||
if api_version == '2020-07-15-privatepreview':
|
||||
from .v2020_07_15_privatepreview.operations import CustomLocationsOperations as OperationClass
|
||||
elif api_version == '2021-03-15-preview':
|
||||
from .v2021_03_15_preview.operations import CustomLocationsOperations as OperationClass
|
||||
else:
|
||||
raise ValueError("API version {} does not have operation group 'custom_locations'".format(api_version))
|
||||
return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
|
||||
|
||||
def close(self):
|
||||
self._client.close()
|
||||
def __enter__(self):
|
||||
self._client.__enter__()
|
||||
return self
|
||||
def __exit__(self, *exc_details):
|
||||
self._client.__exit__(*exc_details)
|
|
@ -1,9 +0,0 @@
|
|||
# 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.
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
VERSION = "1.0.0b1"
|
|
@ -1,10 +0,0 @@
|
|||
# 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 ._custom_locations import CustomLocations
|
||||
__all__ = ['CustomLocations']
|
|
@ -1,64 +0,0 @@
|
|||
# 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 typing import Any
|
||||
|
||||
from azure.core.configuration import Configuration
|
||||
from azure.core.pipeline import policies
|
||||
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
|
||||
|
||||
from .._version import VERSION
|
||||
|
||||
|
||||
class CustomLocationsConfiguration(Configuration):
|
||||
"""Configuration for CustomLocations.
|
||||
|
||||
Note that all parameters used to create this instance are saved as instance
|
||||
attributes.
|
||||
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
:type subscription_id: str
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
credential, # type: "AsyncTokenCredential"
|
||||
subscription_id, # type: str
|
||||
**kwargs # type: Any
|
||||
) -> None:
|
||||
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(CustomLocationsConfiguration, self).__init__(**kwargs)
|
||||
|
||||
self.credential = credential
|
||||
self.subscription_id = subscription_id
|
||||
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
|
||||
kwargs.setdefault('sdk_moniker', 'azure-mgmt-extendedlocation/{}'.format(VERSION))
|
||||
self._configure(**kwargs)
|
||||
|
||||
def _configure(
|
||||
self,
|
||||
**kwargs: Any
|
||||
) -> None:
|
||||
self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs)
|
||||
self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs)
|
||||
self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs)
|
||||
self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs)
|
||||
self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs)
|
||||
self.retry_policy = kwargs.get('retry_policy') or policies.AsyncRetryPolicy(**kwargs)
|
||||
self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs)
|
||||
self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs)
|
||||
self.authentication_policy = kwargs.get('authentication_policy')
|
||||
if self.credential and not self.authentication_policy:
|
||||
self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
|
|
@ -1,117 +0,0 @@
|
|||
# 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 azure.mgmt.core import AsyncARMPipelineClient
|
||||
from msrest import Serializer, Deserializer
|
||||
|
||||
from azure.profiles import KnownProfiles, ProfileDefinition
|
||||
from azure.profiles.multiapiclient import MultiApiClientMixin
|
||||
from ._configuration import CustomLocationsConfiguration
|
||||
|
||||
class _SDKClient(object):
|
||||
def __init__(self, *args, **kwargs):
|
||||
"""This is a fake class to support current implemetation of MultiApiClientMixin."
|
||||
Will be removed in final version of multiapi azure-core based client
|
||||
"""
|
||||
pass
|
||||
|
||||
class CustomLocations(MultiApiClientMixin, _SDKClient):
|
||||
"""The customLocations Rest API spec.
|
||||
|
||||
This ready contains multiple API versions, to help you deal with all of the Azure clouds
|
||||
(Azure Stack, Azure Government, Azure China, etc.).
|
||||
By default, it uses the latest API version available on public Azure.
|
||||
For production, you should stick to a particular api-version and/or profile.
|
||||
The profile sets a mapping between an operation group and its API version.
|
||||
The api-version parameter sets the default API version if the operation
|
||||
group is not described in the profile.
|
||||
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
: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
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
|
||||
"""
|
||||
|
||||
DEFAULT_API_VERSION = '2021-03-15-preview'
|
||||
_PROFILE_TAG = "azure.mgmt.extendedlocation.CustomLocations"
|
||||
LATEST_PROFILE = ProfileDefinition({
|
||||
_PROFILE_TAG: {
|
||||
None: DEFAULT_API_VERSION,
|
||||
}},
|
||||
_PROFILE_TAG + " latest"
|
||||
)
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
credential, # type: "AsyncTokenCredential"
|
||||
subscription_id, # type: str
|
||||
api_version=None,
|
||||
base_url=None,
|
||||
profile=KnownProfiles.default,
|
||||
**kwargs # type: Any
|
||||
) -> None:
|
||||
if not base_url:
|
||||
base_url = 'https://management.azure.com'
|
||||
self._config = CustomLocationsConfiguration(credential, subscription_id, **kwargs)
|
||||
self._client = AsyncARMPipelineClient(base_url=base_url, config=self._config, **kwargs)
|
||||
super(CustomLocations, self).__init__(
|
||||
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:
|
||||
|
||||
* 2020-07-15-privatepreview: :mod:`v2020_07_15_privatepreview.models<azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models>`
|
||||
* 2021-03-15-preview: :mod:`v2021_03_15_preview.models<azure.mgmt.extendedlocation.v2021_03_15_preview.models>`
|
||||
"""
|
||||
if api_version == '2020-07-15-privatepreview':
|
||||
from ..v2020_07_15_privatepreview import models
|
||||
return models
|
||||
elif api_version == '2021-03-15-preview':
|
||||
from ..v2021_03_15_preview import models
|
||||
return models
|
||||
raise ValueError("API version {} is not available".format(api_version))
|
||||
|
||||
@property
|
||||
def custom_locations(self):
|
||||
"""Instance depends on the API version:
|
||||
|
||||
* 2020-07-15-privatepreview: :class:`CustomLocationsOperations<azure.mgmt.extendedlocation.v2020_07_15_privatepreview.aio.operations.CustomLocationsOperations>`
|
||||
* 2021-03-15-preview: :class:`CustomLocationsOperations<azure.mgmt.extendedlocation.v2021_03_15_preview.aio.operations.CustomLocationsOperations>`
|
||||
"""
|
||||
api_version = self._get_api_version('custom_locations')
|
||||
if api_version == '2020-07-15-privatepreview':
|
||||
from ..v2020_07_15_privatepreview.aio.operations import CustomLocationsOperations as OperationClass
|
||||
elif api_version == '2021-03-15-preview':
|
||||
from ..v2021_03_15_preview.aio.operations import CustomLocationsOperations as OperationClass
|
||||
else:
|
||||
raise ValueError("API version {} does not have operation group 'custom_locations'".format(api_version))
|
||||
return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version)))
|
||||
|
||||
async def close(self):
|
||||
await self._client.close()
|
||||
async def __aenter__(self):
|
||||
await self._client.__aenter__()
|
||||
return self
|
||||
async def __aexit__(self, *exc_details):
|
||||
await self._client.__aexit__(*exc_details)
|
|
@ -1,7 +0,0 @@
|
|||
# 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 .v2021_03_15_preview.models import *
|
|
@ -1 +0,0 @@
|
|||
# Marker file for PEP 561.
|
|
@ -1,19 +0,0 @@
|
|||
# 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 ._custom_locations import CustomLocations
|
||||
from ._version import VERSION
|
||||
|
||||
__version__ = VERSION
|
||||
__all__ = ['CustomLocations']
|
||||
|
||||
try:
|
||||
from ._patch import patch_sdk # type: ignore
|
||||
patch_sdk()
|
||||
except ImportError:
|
||||
pass
|
|
@ -1,71 +0,0 @@
|
|||
# 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 typing import TYPE_CHECKING
|
||||
|
||||
from azure.core.configuration import Configuration
|
||||
from azure.core.pipeline import policies
|
||||
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
|
||||
|
||||
from ._version import VERSION
|
||||
|
||||
if TYPE_CHECKING:
|
||||
# pylint: disable=unused-import,ungrouped-imports
|
||||
from typing import Any
|
||||
|
||||
from azure.core.credentials import TokenCredential
|
||||
|
||||
|
||||
class CustomLocationsConfiguration(Configuration):
|
||||
"""Configuration for CustomLocations.
|
||||
|
||||
Note that all parameters used to create this instance are saved as instance
|
||||
attributes.
|
||||
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials.TokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
:type subscription_id: str
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
credential, # type: "TokenCredential"
|
||||
subscription_id, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> None
|
||||
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(CustomLocationsConfiguration, self).__init__(**kwargs)
|
||||
|
||||
self.credential = credential
|
||||
self.subscription_id = subscription_id
|
||||
self.api_version = "2020-07-15-privatepreview"
|
||||
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
|
||||
kwargs.setdefault('sdk_moniker', 'mgmt-extendedlocation/{}'.format(VERSION))
|
||||
self._configure(**kwargs)
|
||||
|
||||
def _configure(
|
||||
self,
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> None
|
||||
self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs)
|
||||
self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs)
|
||||
self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs)
|
||||
self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs)
|
||||
self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs)
|
||||
self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs)
|
||||
self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs)
|
||||
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)
|
|
@ -1,70 +0,0 @@
|
|||
# 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 typing import TYPE_CHECKING
|
||||
|
||||
from azure.mgmt.core import ARMPipelineClient
|
||||
from msrest import Deserializer, Serializer
|
||||
|
||||
if TYPE_CHECKING:
|
||||
# pylint: disable=unused-import,ungrouped-imports
|
||||
from typing import Any, Optional
|
||||
|
||||
from azure.core.credentials import TokenCredential
|
||||
|
||||
from ._configuration import CustomLocationsConfiguration
|
||||
from .operations import CustomLocationsOperations
|
||||
from . import models
|
||||
|
||||
|
||||
class CustomLocations(object):
|
||||
"""The customLocations Rest API spec.
|
||||
|
||||
:ivar custom_locations: CustomLocationsOperations operations
|
||||
:vartype custom_locations: azure.mgmt.extendedlocation.v2020_07_15_privatepreview.operations.CustomLocationsOperations
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials.TokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
: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.
|
||||
"""
|
||||
|
||||
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 = CustomLocationsConfiguration(credential, 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.custom_locations = CustomLocationsOperations(
|
||||
self._client, self._config, self._serialize, self._deserialize)
|
||||
|
||||
def close(self):
|
||||
# type: () -> None
|
||||
self._client.close()
|
||||
|
||||
def __enter__(self):
|
||||
# type: () -> CustomLocations
|
||||
self._client.__enter__()
|
||||
return self
|
||||
|
||||
def __exit__(self, *exc_details):
|
||||
# type: (Any) -> None
|
||||
self._client.__exit__(*exc_details)
|
|
@ -1,61 +0,0 @@
|
|||
{
|
||||
"chosen_version": "2020-07-15-privatepreview",
|
||||
"total_api_version_list": ["2020-07-15-privatepreview"],
|
||||
"client": {
|
||||
"name": "CustomLocations",
|
||||
"filename": "_custom_locations",
|
||||
"description": "The customLocations Rest API spec.",
|
||||
"base_url": "\u0027https://management.azure.com\u0027",
|
||||
"custom_base_url": null,
|
||||
"azure_arm": true,
|
||||
"has_lro_operations": true,
|
||||
"client_side_validation": false
|
||||
},
|
||||
"global_parameters": {
|
||||
"sync": {
|
||||
"credential": {
|
||||
"signature": "credential, # type: \"TokenCredential\"",
|
||||
"description": "Credential needed for the client to connect to Azure.",
|
||||
"docstring_type": "~azure.core.credentials.TokenCredential",
|
||||
"required": true
|
||||
},
|
||||
"subscription_id": {
|
||||
"signature": "subscription_id, # type: str",
|
||||
"description": "The ID of the target subscription.",
|
||||
"docstring_type": "str",
|
||||
"required": true
|
||||
}
|
||||
},
|
||||
"async": {
|
||||
"credential": {
|
||||
"signature": "credential, # type: \"AsyncTokenCredential\"",
|
||||
"description": "Credential needed for the client to connect to Azure.",
|
||||
"docstring_type": "~azure.core.credentials_async.AsyncTokenCredential",
|
||||
"required": true
|
||||
},
|
||||
"subscription_id": {
|
||||
"signature": "subscription_id, # type: str",
|
||||
"description": "The ID of the target subscription.",
|
||||
"docstring_type": "str",
|
||||
"required": true
|
||||
}
|
||||
},
|
||||
"constant": {
|
||||
},
|
||||
"call": "credential, subscription_id"
|
||||
},
|
||||
"config": {
|
||||
"credential": true,
|
||||
"credential_scopes": ["https://management.azure.com/.default"],
|
||||
"credential_default_policy_type": "BearerTokenCredentialPolicy",
|
||||
"credential_default_policy_type_has_async_version": true,
|
||||
"credential_key_header_name": null
|
||||
},
|
||||
"operation_groups": {
|
||||
"custom_locations": "CustomLocationsOperations"
|
||||
},
|
||||
"operation_mixins": {
|
||||
},
|
||||
"sync_imports": "None",
|
||||
"async_imports": "None"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
# 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.
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
VERSION = "1.0.0b1"
|
|
@ -1,10 +0,0 @@
|
|||
# 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 ._custom_locations import CustomLocations
|
||||
__all__ = ['CustomLocations']
|
|
@ -1,67 +0,0 @@
|
|||
# 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 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 .._version import VERSION
|
||||
|
||||
if TYPE_CHECKING:
|
||||
# pylint: disable=unused-import,ungrouped-imports
|
||||
from azure.core.credentials_async import AsyncTokenCredential
|
||||
|
||||
|
||||
class CustomLocationsConfiguration(Configuration):
|
||||
"""Configuration for CustomLocations.
|
||||
|
||||
Note that all parameters used to create this instance are saved as instance
|
||||
attributes.
|
||||
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
:type subscription_id: str
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
credential: "AsyncTokenCredential",
|
||||
subscription_id: str,
|
||||
**kwargs: Any
|
||||
) -> None:
|
||||
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(CustomLocationsConfiguration, self).__init__(**kwargs)
|
||||
|
||||
self.credential = credential
|
||||
self.subscription_id = subscription_id
|
||||
self.api_version = "2020-07-15-privatepreview"
|
||||
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
|
||||
kwargs.setdefault('sdk_moniker', 'mgmt-extendedlocation/{}'.format(VERSION))
|
||||
self._configure(**kwargs)
|
||||
|
||||
def _configure(
|
||||
self,
|
||||
**kwargs: Any
|
||||
) -> None:
|
||||
self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs)
|
||||
self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs)
|
||||
self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs)
|
||||
self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs)
|
||||
self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs)
|
||||
self.retry_policy = kwargs.get('retry_policy') or policies.AsyncRetryPolicy(**kwargs)
|
||||
self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs)
|
||||
self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs)
|
||||
self.authentication_policy = kwargs.get('authentication_policy')
|
||||
if self.credential and not self.authentication_policy:
|
||||
self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
|
|
@ -1,64 +0,0 @@
|
|||
# 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 typing import Any, Optional, TYPE_CHECKING
|
||||
|
||||
from azure.mgmt.core import AsyncARMPipelineClient
|
||||
from msrest import Deserializer, Serializer
|
||||
|
||||
if TYPE_CHECKING:
|
||||
# pylint: disable=unused-import,ungrouped-imports
|
||||
from azure.core.credentials_async import AsyncTokenCredential
|
||||
|
||||
from ._configuration import CustomLocationsConfiguration
|
||||
from .operations import CustomLocationsOperations
|
||||
from .. import models
|
||||
|
||||
|
||||
class CustomLocations(object):
|
||||
"""The customLocations Rest API spec.
|
||||
|
||||
:ivar custom_locations: CustomLocationsOperations operations
|
||||
:vartype custom_locations: azure.mgmt.extendedlocation.v2020_07_15_privatepreview.aio.operations.CustomLocationsOperations
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
: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.
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
credential: "AsyncTokenCredential",
|
||||
subscription_id: str,
|
||||
base_url: Optional[str] = None,
|
||||
**kwargs: Any
|
||||
) -> None:
|
||||
if not base_url:
|
||||
base_url = 'https://management.azure.com'
|
||||
self._config = CustomLocationsConfiguration(credential, subscription_id, **kwargs)
|
||||
self._client = AsyncARMPipelineClient(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.custom_locations = CustomLocationsOperations(
|
||||
self._client, self._config, self._serialize, self._deserialize)
|
||||
|
||||
async def close(self) -> None:
|
||||
await self._client.close()
|
||||
|
||||
async def __aenter__(self) -> "CustomLocations":
|
||||
await self._client.__aenter__()
|
||||
return self
|
||||
|
||||
async def __aexit__(self, *exc_details) -> None:
|
||||
await self._client.__aexit__(*exc_details)
|
|
@ -1,13 +0,0 @@
|
|||
# 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 ._custom_locations_operations import CustomLocationsOperations
|
||||
|
||||
__all__ = [
|
||||
'CustomLocationsOperations',
|
||||
]
|
|
@ -1,793 +0,0 @@
|
|||
# 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 typing import Any, AsyncIterable, Callable, Dict, Generic, List, Optional, TypeVar, Union
|
||||
import warnings
|
||||
|
||||
from azure.core.async_paging import AsyncItemPaged, AsyncList
|
||||
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
|
||||
from azure.core.pipeline import PipelineResponse
|
||||
from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest
|
||||
from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod
|
||||
from azure.mgmt.core.exceptions import ARMErrorFormat
|
||||
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
|
||||
|
||||
from ... import models as _models
|
||||
|
||||
T = TypeVar('T')
|
||||
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
|
||||
|
||||
class CustomLocationsOperations:
|
||||
"""CustomLocationsOperations async operations.
|
||||
|
||||
You should not instantiate this class directly. Instead, you should create a Client instance that
|
||||
instantiates it for you and attaches it as an attribute.
|
||||
|
||||
:ivar models: Alias to model classes used in this operation group.
|
||||
:type models: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models
|
||||
:param client: Client for service requests.
|
||||
:param config: Configuration of service client.
|
||||
:param serializer: An object model serializer.
|
||||
:param deserializer: An object model deserializer.
|
||||
"""
|
||||
|
||||
models = _models
|
||||
|
||||
def __init__(self, client, config, serializer, deserializer) -> None:
|
||||
self._client = client
|
||||
self._serialize = serializer
|
||||
self._deserialize = deserializer
|
||||
self._config = config
|
||||
|
||||
def list_operations(
|
||||
self,
|
||||
**kwargs
|
||||
) -> AsyncIterable["_models.CustomLocationOperationsList"]:
|
||||
"""Lists all available Custom Locations operations.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationOperationsList or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationOperationsList]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationOperationsList"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_operations.metadata['url'] # type: ignore
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
async def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationOperationsList', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, AsyncList(list_of_elem)
|
||||
|
||||
async def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return AsyncItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_operations.metadata = {'url': '/providers/Microsoft.ExtendedLocation/operations'} # type: ignore
|
||||
|
||||
def list_by_subscription(
|
||||
self,
|
||||
**kwargs
|
||||
) -> AsyncIterable["_models.CustomLocationListResult"]:
|
||||
"""Gets a list of Custom Locations in a subscription.
|
||||
|
||||
Gets a list of Custom Locations in the specified subscription. The operation returns properties
|
||||
of each Custom Location.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_by_subscription.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
async def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, AsyncList(list_of_elem)
|
||||
|
||||
async def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return AsyncItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_by_subscription.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ExtendedLocation/customLocations'} # type: ignore
|
||||
|
||||
def list_by_resource_group(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
**kwargs
|
||||
) -> AsyncIterable["_models.CustomLocationListResult"]:
|
||||
"""Gets a list of Custom Locations in the specified subscription and resource group.
|
||||
|
||||
Gets a list of Custom Locations in the specified subscription and resource group. The operation
|
||||
returns properties of each Custom Location.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_by_resource_group.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
async def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, AsyncList(list_of_elem)
|
||||
|
||||
async def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return AsyncItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations'} # type: ignore
|
||||
|
||||
async def get(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
**kwargs
|
||||
) -> "_models.CustomLocation":
|
||||
"""Gets a Custom Location.
|
||||
|
||||
Gets the details of the customLocation with a specified resource group and name.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: CustomLocation, or the result of cls(response)
|
||||
:rtype: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocation
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self.get.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
async def _create_or_update_initial(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
parameters: "_models.CustomLocation",
|
||||
**kwargs
|
||||
) -> "_models.CustomLocation":
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
content_type = kwargs.pop("content_type", "application/json")
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self._create_or_update_initial.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str')
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
body_content_kwargs = {} # type: Dict[str, Any]
|
||||
body_content = self._serialize.body(parameters, 'CustomLocation')
|
||||
body_content_kwargs['content'] = body_content
|
||||
request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs)
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200, 201]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
if response.status_code == 200:
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if response.status_code == 201:
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
_create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
async def begin_create_or_update(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
parameters: "_models.CustomLocation",
|
||||
**kwargs
|
||||
) -> AsyncLROPoller["_models.CustomLocation"]:
|
||||
"""Creates or updates a Custom Location.
|
||||
|
||||
Creates or updates a Custom Location in the specified Subscription and Resource Group.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:param parameters: Parameters supplied to create or update a Custom Location.
|
||||
:type parameters: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocation
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: True for ARMPolling, False for no polling, or a
|
||||
polling object for personal polling strategy
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either CustomLocation or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocation]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
"""
|
||||
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
lro_delay = kwargs.pop(
|
||||
'polling_interval',
|
||||
self._config.polling_interval
|
||||
)
|
||||
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
|
||||
if cont_token is None:
|
||||
raw_result = await self._create_or_update_initial(
|
||||
resource_group_name=resource_group_name,
|
||||
resource_name=resource_name,
|
||||
parameters=parameters,
|
||||
cls=lambda x,y,z: x,
|
||||
**kwargs
|
||||
)
|
||||
|
||||
kwargs.pop('error_map', None)
|
||||
kwargs.pop('content_type', None)
|
||||
|
||||
def get_long_running_output(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
return deserialized
|
||||
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
|
||||
if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs)
|
||||
elif polling is False: polling_method = AsyncNoPolling()
|
||||
else: polling_method = polling
|
||||
if cont_token:
|
||||
return AsyncLROPoller.from_continuation_token(
|
||||
polling_method=polling_method,
|
||||
continuation_token=cont_token,
|
||||
client=self._client,
|
||||
deserialization_callback=get_long_running_output
|
||||
)
|
||||
else:
|
||||
return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method)
|
||||
begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
async def _delete_initial(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
**kwargs
|
||||
) -> None:
|
||||
cls = kwargs.pop('cls', None) # type: ClsType[None]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self._delete_initial.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
request = self._client.delete(url, query_parameters, header_parameters)
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [202, 204]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, None, {})
|
||||
|
||||
_delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
async def begin_delete(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
**kwargs
|
||||
) -> AsyncLROPoller[None]:
|
||||
"""Deletes a Custom Location.
|
||||
|
||||
Deletes the Custom Location with the specified Resource Name, Resource Group, and Subscription
|
||||
Id.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: True for ARMPolling, False for no polling, or a
|
||||
polling object for personal polling strategy
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
"""
|
||||
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
|
||||
cls = kwargs.pop('cls', None) # type: ClsType[None]
|
||||
lro_delay = kwargs.pop(
|
||||
'polling_interval',
|
||||
self._config.polling_interval
|
||||
)
|
||||
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
|
||||
if cont_token is None:
|
||||
raw_result = await self._delete_initial(
|
||||
resource_group_name=resource_group_name,
|
||||
resource_name=resource_name,
|
||||
cls=lambda x,y,z: x,
|
||||
**kwargs
|
||||
)
|
||||
|
||||
kwargs.pop('error_map', None)
|
||||
kwargs.pop('content_type', None)
|
||||
|
||||
def get_long_running_output(pipeline_response):
|
||||
if cls:
|
||||
return cls(pipeline_response, None, {})
|
||||
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
|
||||
if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs)
|
||||
elif polling is False: polling_method = AsyncNoPolling()
|
||||
else: polling_method = polling
|
||||
if cont_token:
|
||||
return AsyncLROPoller.from_continuation_token(
|
||||
polling_method=polling_method,
|
||||
continuation_token=cont_token,
|
||||
client=self._client,
|
||||
deserialization_callback=get_long_running_output
|
||||
)
|
||||
else:
|
||||
return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method)
|
||||
begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
async def update(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
tags: Optional[Dict[str, str]] = None,
|
||||
authentication: Optional["_models.CustomLocationPropertiesAuthentication"] = None,
|
||||
cluster_extension_ids: Optional[List[str]] = None,
|
||||
display_name: Optional[str] = None,
|
||||
host_resource_id: Optional[str] = None,
|
||||
host_type: Optional[Union[str, "_models.HostType"]] = None,
|
||||
namespace: Optional[str] = None,
|
||||
provisioning_state: Optional[str] = None,
|
||||
**kwargs
|
||||
) -> "_models.CustomLocation":
|
||||
"""Updates a Custom Location.
|
||||
|
||||
Updates a Custom Location with the specified Resource Name in the specified Resource Group and
|
||||
Subscription.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:param tags: Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: CustomLocation, or the result of cls(response)
|
||||
:rtype: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocation
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
|
||||
_parameters = _models.PatchableCustomLocations(tags=tags, authentication=authentication, cluster_extension_ids=cluster_extension_ids, display_name=display_name, host_resource_id=host_resource_id, host_type=host_type, namespace=namespace, provisioning_state=provisioning_state)
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
content_type = kwargs.pop("content_type", "application/json")
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self.update.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str')
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
body_content_kwargs = {} # type: Dict[str, Any]
|
||||
body_content = self._serialize.body(_parameters, 'PatchableCustomLocations')
|
||||
body_content_kwargs['content'] = body_content
|
||||
request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs)
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def list_enabled_resource_types(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
**kwargs
|
||||
) -> AsyncIterable["_models.EnabledResourceTypesListResult"]:
|
||||
"""Gets the list of Enabled Resource Types.
|
||||
|
||||
Gets the list of the Enabled Resource Types.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either EnabledResourceTypesListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.EnabledResourceTypesListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.EnabledResourceTypesListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_enabled_resource_types.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
async def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('EnabledResourceTypesListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, AsyncList(list_of_elem)
|
||||
|
||||
async def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return AsyncItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_enabled_resource_types.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}/enabledResourceTypes'} # type: ignore
|
||||
|
||||
async def get_enabled_resource_type(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
enabled_resource_type_name: str,
|
||||
**kwargs
|
||||
) -> "_models.EnabledResourceType":
|
||||
"""Gets details of a Enabled Resource Type.
|
||||
|
||||
Gets the details of the Enabled Resource Type.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:param enabled_resource_type_name: Custom Locations Enabled Resource Type name.
|
||||
:type enabled_resource_type_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: EnabledResourceType, or the result of cls(response)
|
||||
:rtype: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.EnabledResourceType
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.EnabledResourceType"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self.get_enabled_resource_type.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
'enabledResourceTypeName': self._serialize.url("enabled_resource_type_name", enabled_resource_type_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
deserialized = self._deserialize('EnabledResourceType', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
get_enabled_resource_type.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}/enabledResourceTypes/{enabledResourceTypeName}'} # type: ignore
|
|
@ -1,68 +0,0 @@
|
|||
# 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 CustomLocation
|
||||
from ._models_py3 import CustomLocationListResult
|
||||
from ._models_py3 import CustomLocationOperation
|
||||
from ._models_py3 import CustomLocationOperationsList
|
||||
from ._models_py3 import CustomLocationPropertiesAuthentication
|
||||
from ._models_py3 import EnabledResourceType
|
||||
from ._models_py3 import EnabledResourceTypePropertiesTypesMetadataItem
|
||||
from ._models_py3 import EnabledResourceTypesListResult
|
||||
from ._models_py3 import ErrorAdditionalInfo
|
||||
from ._models_py3 import ErrorDetail
|
||||
from ._models_py3 import ErrorResponse
|
||||
from ._models_py3 import PatchableCustomLocations
|
||||
from ._models_py3 import ProxyResource
|
||||
from ._models_py3 import Resource
|
||||
from ._models_py3 import SystemData
|
||||
from ._models_py3 import TrackedResource
|
||||
except (SyntaxError, ImportError):
|
||||
from ._models import CustomLocation # type: ignore
|
||||
from ._models import CustomLocationListResult # type: ignore
|
||||
from ._models import CustomLocationOperation # type: ignore
|
||||
from ._models import CustomLocationOperationsList # type: ignore
|
||||
from ._models import CustomLocationPropertiesAuthentication # type: ignore
|
||||
from ._models import EnabledResourceType # type: ignore
|
||||
from ._models import EnabledResourceTypePropertiesTypesMetadataItem # type: ignore
|
||||
from ._models import EnabledResourceTypesListResult # type: ignore
|
||||
from ._models import ErrorAdditionalInfo # type: ignore
|
||||
from ._models import ErrorDetail # type: ignore
|
||||
from ._models import ErrorResponse # type: ignore
|
||||
from ._models import PatchableCustomLocations # type: ignore
|
||||
from ._models import ProxyResource # type: ignore
|
||||
from ._models import Resource # type: ignore
|
||||
from ._models import SystemData # type: ignore
|
||||
from ._models import TrackedResource # type: ignore
|
||||
|
||||
from ._custom_locations_enums import (
|
||||
CreatedByType,
|
||||
HostType,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
'CustomLocation',
|
||||
'CustomLocationListResult',
|
||||
'CustomLocationOperation',
|
||||
'CustomLocationOperationsList',
|
||||
'CustomLocationPropertiesAuthentication',
|
||||
'EnabledResourceType',
|
||||
'EnabledResourceTypePropertiesTypesMetadataItem',
|
||||
'EnabledResourceTypesListResult',
|
||||
'ErrorAdditionalInfo',
|
||||
'ErrorDetail',
|
||||
'ErrorResponse',
|
||||
'PatchableCustomLocations',
|
||||
'ProxyResource',
|
||||
'Resource',
|
||||
'SystemData',
|
||||
'TrackedResource',
|
||||
'CreatedByType',
|
||||
'HostType',
|
||||
]
|
|
@ -1,42 +0,0 @@
|
|||
# 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 enum import Enum, EnumMeta
|
||||
from six import with_metaclass
|
||||
|
||||
class _CaseInsensitiveEnumMeta(EnumMeta):
|
||||
def __getitem__(self, name):
|
||||
return super().__getitem__(name.upper())
|
||||
|
||||
def __getattr__(cls, name):
|
||||
"""Return the enum member matching `name`
|
||||
We use __getattr__ instead of descriptors or inserting into the enum
|
||||
class' __dict__ in order to support `name` and `value` being both
|
||||
properties for enum members (which live in the class' __dict__) and
|
||||
enum members themselves.
|
||||
"""
|
||||
try:
|
||||
return cls._member_map_[name.upper()]
|
||||
except KeyError:
|
||||
raise AttributeError(name)
|
||||
|
||||
|
||||
class CreatedByType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
|
||||
"""The type of identity that created the resource.
|
||||
"""
|
||||
|
||||
USER = "User"
|
||||
APPLICATION = "Application"
|
||||
MANAGED_IDENTITY = "ManagedIdentity"
|
||||
KEY = "Key"
|
||||
|
||||
class HostType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
|
||||
"""Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
"""
|
||||
|
||||
KUBERNETES = "Kubernetes"
|
|
@ -1,647 +0,0 @@
|
|||
# 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 azure.core.exceptions import HttpResponseError
|
||||
import msrest.serialization
|
||||
|
||||
|
||||
class Resource(msrest.serialization.Model):
|
||||
"""Common fields that are returned in the response for all Azure Resource Manager resources.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(Resource, self).__init__(**kwargs)
|
||||
self.id = None
|
||||
self.name = None
|
||||
self.type = None
|
||||
|
||||
|
||||
class TrackedResource(Resource):
|
||||
"""The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param location: Required. The geo-location where the resource lives.
|
||||
:type location: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'location': {'required': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'location': {'key': 'location', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(TrackedResource, self).__init__(**kwargs)
|
||||
self.tags = kwargs.get('tags', None)
|
||||
self.location = kwargs['location']
|
||||
|
||||
|
||||
class CustomLocation(TrackedResource):
|
||||
"""Custom Locations definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param location: Required. The geo-location where the resource lives.
|
||||
:type location: str
|
||||
:ivar system_data: Metadata pertaining to creation and last modification of the resource.
|
||||
:vartype system_data: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.SystemData
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication:
|
||||
~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
Possible values include: "Kubernetes".
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'location': {'required': True},
|
||||
'system_data': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'location': {'key': 'location', 'type': 'str'},
|
||||
'system_data': {'key': 'systemData', 'type': 'SystemData'},
|
||||
'authentication': {'key': 'properties.authentication', 'type': 'CustomLocationPropertiesAuthentication'},
|
||||
'cluster_extension_ids': {'key': 'properties.clusterExtensionIds', 'type': '[str]'},
|
||||
'display_name': {'key': 'properties.displayName', 'type': 'str'},
|
||||
'host_resource_id': {'key': 'properties.hostResourceId', 'type': 'str'},
|
||||
'host_type': {'key': 'properties.hostType', 'type': 'str'},
|
||||
'namespace': {'key': 'properties.namespace', 'type': 'str'},
|
||||
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocation, self).__init__(**kwargs)
|
||||
self.system_data = None
|
||||
self.authentication = kwargs.get('authentication', None)
|
||||
self.cluster_extension_ids = kwargs.get('cluster_extension_ids', None)
|
||||
self.display_name = kwargs.get('display_name', None)
|
||||
self.host_resource_id = kwargs.get('host_resource_id', None)
|
||||
self.host_type = kwargs.get('host_type', None)
|
||||
self.namespace = kwargs.get('namespace', None)
|
||||
self.provisioning_state = kwargs.get('provisioning_state', None)
|
||||
|
||||
|
||||
class CustomLocationListResult(msrest.serialization.Model):
|
||||
"""The List Custom Locations operation response.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar next_link: The URL to use for getting the next set of results.
|
||||
:vartype next_link: str
|
||||
:ivar value: The list of Custom Locations.
|
||||
:vartype value:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocation]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'next_link': {'readonly': True},
|
||||
'value': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[CustomLocation]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationListResult, self).__init__(**kwargs)
|
||||
self.next_link = None
|
||||
self.value = None
|
||||
|
||||
|
||||
class CustomLocationOperation(msrest.serialization.Model):
|
||||
"""Custom Locations operation.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar is_data_action: Is this Operation a data plane operation.
|
||||
:vartype is_data_action: bool
|
||||
:ivar name: The name of the compute operation.
|
||||
:vartype name: str
|
||||
:ivar origin: The origin of the compute operation.
|
||||
:vartype origin: str
|
||||
:ivar description: The description of the operation.
|
||||
:vartype description: str
|
||||
:ivar operation: The display name of the compute operation.
|
||||
:vartype operation: str
|
||||
:ivar provider: The resource provider for the operation.
|
||||
:vartype provider: str
|
||||
:ivar resource: The display name of the resource the operation applies to.
|
||||
:vartype resource: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'is_data_action': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'origin': {'readonly': True},
|
||||
'description': {'readonly': True},
|
||||
'operation': {'readonly': True},
|
||||
'provider': {'readonly': True},
|
||||
'resource': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'is_data_action': {'key': 'isDataAction', 'type': 'bool'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'origin': {'key': 'origin', 'type': 'str'},
|
||||
'description': {'key': 'display.description', 'type': 'str'},
|
||||
'operation': {'key': 'display.operation', 'type': 'str'},
|
||||
'provider': {'key': 'display.provider', 'type': 'str'},
|
||||
'resource': {'key': 'display.resource', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationOperation, self).__init__(**kwargs)
|
||||
self.is_data_action = None
|
||||
self.name = None
|
||||
self.origin = None
|
||||
self.description = None
|
||||
self.operation = None
|
||||
self.provider = None
|
||||
self.resource = None
|
||||
|
||||
|
||||
class CustomLocationOperationsList(msrest.serialization.Model):
|
||||
"""Lists of Custom Locations operations.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:param next_link: Next page of operations.
|
||||
:type next_link: str
|
||||
:param value: Required. Array of customLocationOperation.
|
||||
:type value:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationOperation]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'value': {'required': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[CustomLocationOperation]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationOperationsList, self).__init__(**kwargs)
|
||||
self.next_link = kwargs.get('next_link', None)
|
||||
self.value = kwargs['value']
|
||||
|
||||
|
||||
class CustomLocationPropertiesAuthentication(msrest.serialization.Model):
|
||||
"""This is optional input that contains the authentication that should be used to generate the namespace.
|
||||
|
||||
:param type: The type of the Custom Locations authentication.
|
||||
:type type: str
|
||||
:param value: The kubeconfig value.
|
||||
:type value: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationPropertiesAuthentication, self).__init__(**kwargs)
|
||||
self.type = kwargs.get('type', None)
|
||||
self.value = kwargs.get('value', None)
|
||||
|
||||
|
||||
class EnabledResourceType(Resource):
|
||||
"""EnabledResourceType definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:ivar system_data: Metadata pertaining to creation and last modification of the resource.
|
||||
:vartype system_data: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.SystemData
|
||||
:param cluster_extension_id: Cluster Extension ID.
|
||||
:type cluster_extension_id: str
|
||||
:param extension_type: Cluster Extension Type.
|
||||
:type extension_type: str
|
||||
:param types_metadata: Metadata of the Resource Type.
|
||||
:type types_metadata:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.EnabledResourceTypePropertiesTypesMetadataItem]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'system_data': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'system_data': {'key': 'systemData', 'type': 'SystemData'},
|
||||
'cluster_extension_id': {'key': 'properties.clusterExtensionId', 'type': 'str'},
|
||||
'extension_type': {'key': 'properties.extensionType', 'type': 'str'},
|
||||
'types_metadata': {'key': 'properties.typesMetadata', 'type': '[EnabledResourceTypePropertiesTypesMetadataItem]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceType, self).__init__(**kwargs)
|
||||
self.system_data = None
|
||||
self.cluster_extension_id = kwargs.get('cluster_extension_id', None)
|
||||
self.extension_type = kwargs.get('extension_type', None)
|
||||
self.types_metadata = kwargs.get('types_metadata', None)
|
||||
|
||||
|
||||
class EnabledResourceTypePropertiesTypesMetadataItem(msrest.serialization.Model):
|
||||
"""Metadata of the Resource Type.
|
||||
|
||||
:param api_version: Api Version of Resource Type.
|
||||
:type api_version: str
|
||||
:param resource_provider_namespace: Resource Provider Namespace of Resource Type.
|
||||
:type resource_provider_namespace: str
|
||||
:param resource_type: Resource Type.
|
||||
:type resource_type: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'api_version': {'key': 'apiVersion', 'type': 'str'},
|
||||
'resource_provider_namespace': {'key': 'resourceProviderNamespace', 'type': 'str'},
|
||||
'resource_type': {'key': 'resourceType', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceTypePropertiesTypesMetadataItem, self).__init__(**kwargs)
|
||||
self.api_version = kwargs.get('api_version', None)
|
||||
self.resource_provider_namespace = kwargs.get('resource_provider_namespace', None)
|
||||
self.resource_type = kwargs.get('resource_type', None)
|
||||
|
||||
|
||||
class EnabledResourceTypesListResult(msrest.serialization.Model):
|
||||
"""List of EnabledResourceTypes definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar next_link: The URL to use for getting the next set of results.
|
||||
:vartype next_link: str
|
||||
:ivar value: The list of EnabledResourceTypes available for a customLocation.
|
||||
:vartype value:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.EnabledResourceType]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'next_link': {'readonly': True},
|
||||
'value': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[EnabledResourceType]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceTypesListResult, self).__init__(**kwargs)
|
||||
self.next_link = None
|
||||
self.value = None
|
||||
|
||||
|
||||
class ErrorAdditionalInfo(msrest.serialization.Model):
|
||||
"""The resource management error additional info.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar type: The additional info type.
|
||||
:vartype type: str
|
||||
:ivar info: The additional info.
|
||||
:vartype info: object
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'type': {'readonly': True},
|
||||
'info': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'info': {'key': 'info', 'type': 'object'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorAdditionalInfo, self).__init__(**kwargs)
|
||||
self.type = None
|
||||
self.info = None
|
||||
|
||||
|
||||
class ErrorDetail(msrest.serialization.Model):
|
||||
"""The error detail.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar code: The error code.
|
||||
:vartype code: str
|
||||
:ivar message: The error message.
|
||||
:vartype message: str
|
||||
:ivar target: The error target.
|
||||
:vartype target: str
|
||||
:ivar details: The error details.
|
||||
:vartype details:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.ErrorDetail]
|
||||
:ivar additional_info: The error additional info.
|
||||
:vartype additional_info:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.ErrorAdditionalInfo]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'code': {'readonly': True},
|
||||
'message': {'readonly': True},
|
||||
'target': {'readonly': True},
|
||||
'details': {'readonly': True},
|
||||
'additional_info': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'code': {'key': 'code', 'type': 'str'},
|
||||
'message': {'key': 'message', 'type': 'str'},
|
||||
'target': {'key': 'target', 'type': 'str'},
|
||||
'details': {'key': 'details', 'type': '[ErrorDetail]'},
|
||||
'additional_info': {'key': 'additionalInfo', 'type': '[ErrorAdditionalInfo]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorDetail, self).__init__(**kwargs)
|
||||
self.code = None
|
||||
self.message = None
|
||||
self.target = None
|
||||
self.details = None
|
||||
self.additional_info = None
|
||||
|
||||
|
||||
class ErrorResponse(msrest.serialization.Model):
|
||||
"""Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
|
||||
|
||||
:param error: The error object.
|
||||
:type error: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.ErrorDetail
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'error': {'key': 'error', 'type': 'ErrorDetail'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorResponse, self).__init__(**kwargs)
|
||||
self.error = kwargs.get('error', None)
|
||||
|
||||
|
||||
class PatchableCustomLocations(msrest.serialization.Model):
|
||||
"""The Custom Locations patchable resource definition.
|
||||
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication:
|
||||
~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
Possible values include: "Kubernetes".
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'authentication': {'key': 'properties.authentication', 'type': 'CustomLocationPropertiesAuthentication'},
|
||||
'cluster_extension_ids': {'key': 'properties.clusterExtensionIds', 'type': '[str]'},
|
||||
'display_name': {'key': 'properties.displayName', 'type': 'str'},
|
||||
'host_resource_id': {'key': 'properties.hostResourceId', 'type': 'str'},
|
||||
'host_type': {'key': 'properties.hostType', 'type': 'str'},
|
||||
'namespace': {'key': 'properties.namespace', 'type': 'str'},
|
||||
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(PatchableCustomLocations, self).__init__(**kwargs)
|
||||
self.tags = kwargs.get('tags', None)
|
||||
self.authentication = kwargs.get('authentication', None)
|
||||
self.cluster_extension_ids = kwargs.get('cluster_extension_ids', None)
|
||||
self.display_name = kwargs.get('display_name', None)
|
||||
self.host_resource_id = kwargs.get('host_resource_id', None)
|
||||
self.host_type = kwargs.get('host_type', None)
|
||||
self.namespace = kwargs.get('namespace', None)
|
||||
self.provisioning_state = kwargs.get('provisioning_state', None)
|
||||
|
||||
|
||||
class ProxyResource(Resource):
|
||||
"""The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ProxyResource, self).__init__(**kwargs)
|
||||
|
||||
|
||||
class SystemData(msrest.serialization.Model):
|
||||
"""Metadata pertaining to creation and last modification of the resource.
|
||||
|
||||
:param created_by: The identity that created the resource.
|
||||
:type created_by: str
|
||||
:param created_by_type: The type of identity that created the resource. Possible values
|
||||
include: "User", "Application", "ManagedIdentity", "Key".
|
||||
:type created_by_type: str or
|
||||
~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CreatedByType
|
||||
:param created_at: The timestamp of resource creation (UTC).
|
||||
:type created_at: ~datetime.datetime
|
||||
:param last_modified_by: The identity that last modified the resource.
|
||||
:type last_modified_by: str
|
||||
:param last_modified_by_type: The type of identity that last modified the resource. Possible
|
||||
values include: "User", "Application", "ManagedIdentity", "Key".
|
||||
:type last_modified_by_type: str or
|
||||
~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CreatedByType
|
||||
:param last_modified_at: The timestamp of resource last modification (UTC).
|
||||
:type last_modified_at: ~datetime.datetime
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'created_by': {'key': 'createdBy', 'type': 'str'},
|
||||
'created_by_type': {'key': 'createdByType', 'type': 'str'},
|
||||
'created_at': {'key': 'createdAt', 'type': 'iso-8601'},
|
||||
'last_modified_by': {'key': 'lastModifiedBy', 'type': 'str'},
|
||||
'last_modified_by_type': {'key': 'lastModifiedByType', 'type': 'str'},
|
||||
'last_modified_at': {'key': 'lastModifiedAt', 'type': 'iso-8601'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(SystemData, self).__init__(**kwargs)
|
||||
self.created_by = kwargs.get('created_by', None)
|
||||
self.created_by_type = kwargs.get('created_by_type', None)
|
||||
self.created_at = kwargs.get('created_at', None)
|
||||
self.last_modified_by = kwargs.get('last_modified_by', None)
|
||||
self.last_modified_by_type = kwargs.get('last_modified_by_type', None)
|
||||
self.last_modified_at = kwargs.get('last_modified_at', None)
|
|
@ -1,697 +0,0 @@
|
|||
# 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.
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
import datetime
|
||||
from typing import Dict, List, Optional, Union
|
||||
|
||||
from azure.core.exceptions import HttpResponseError
|
||||
import msrest.serialization
|
||||
|
||||
from ._custom_locations_enums import *
|
||||
|
||||
|
||||
class Resource(msrest.serialization.Model):
|
||||
"""Common fields that are returned in the response for all Azure Resource Manager resources.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(Resource, self).__init__(**kwargs)
|
||||
self.id = None
|
||||
self.name = None
|
||||
self.type = None
|
||||
|
||||
|
||||
class TrackedResource(Resource):
|
||||
"""The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param location: Required. The geo-location where the resource lives.
|
||||
:type location: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'location': {'required': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'location': {'key': 'location', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
location: str,
|
||||
tags: Optional[Dict[str, str]] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(TrackedResource, self).__init__(**kwargs)
|
||||
self.tags = tags
|
||||
self.location = location
|
||||
|
||||
|
||||
class CustomLocation(TrackedResource):
|
||||
"""Custom Locations definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param location: Required. The geo-location where the resource lives.
|
||||
:type location: str
|
||||
:ivar system_data: Metadata pertaining to creation and last modification of the resource.
|
||||
:vartype system_data: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.SystemData
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication:
|
||||
~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
Possible values include: "Kubernetes".
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'location': {'required': True},
|
||||
'system_data': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'location': {'key': 'location', 'type': 'str'},
|
||||
'system_data': {'key': 'systemData', 'type': 'SystemData'},
|
||||
'authentication': {'key': 'properties.authentication', 'type': 'CustomLocationPropertiesAuthentication'},
|
||||
'cluster_extension_ids': {'key': 'properties.clusterExtensionIds', 'type': '[str]'},
|
||||
'display_name': {'key': 'properties.displayName', 'type': 'str'},
|
||||
'host_resource_id': {'key': 'properties.hostResourceId', 'type': 'str'},
|
||||
'host_type': {'key': 'properties.hostType', 'type': 'str'},
|
||||
'namespace': {'key': 'properties.namespace', 'type': 'str'},
|
||||
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
location: str,
|
||||
tags: Optional[Dict[str, str]] = None,
|
||||
authentication: Optional["CustomLocationPropertiesAuthentication"] = None,
|
||||
cluster_extension_ids: Optional[List[str]] = None,
|
||||
display_name: Optional[str] = None,
|
||||
host_resource_id: Optional[str] = None,
|
||||
host_type: Optional[Union[str, "HostType"]] = None,
|
||||
namespace: Optional[str] = None,
|
||||
provisioning_state: Optional[str] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocation, self).__init__(tags=tags, location=location, **kwargs)
|
||||
self.system_data = None
|
||||
self.authentication = authentication
|
||||
self.cluster_extension_ids = cluster_extension_ids
|
||||
self.display_name = display_name
|
||||
self.host_resource_id = host_resource_id
|
||||
self.host_type = host_type
|
||||
self.namespace = namespace
|
||||
self.provisioning_state = provisioning_state
|
||||
|
||||
|
||||
class CustomLocationListResult(msrest.serialization.Model):
|
||||
"""The List Custom Locations operation response.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar next_link: The URL to use for getting the next set of results.
|
||||
:vartype next_link: str
|
||||
:ivar value: The list of Custom Locations.
|
||||
:vartype value:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocation]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'next_link': {'readonly': True},
|
||||
'value': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[CustomLocation]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationListResult, self).__init__(**kwargs)
|
||||
self.next_link = None
|
||||
self.value = None
|
||||
|
||||
|
||||
class CustomLocationOperation(msrest.serialization.Model):
|
||||
"""Custom Locations operation.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar is_data_action: Is this Operation a data plane operation.
|
||||
:vartype is_data_action: bool
|
||||
:ivar name: The name of the compute operation.
|
||||
:vartype name: str
|
||||
:ivar origin: The origin of the compute operation.
|
||||
:vartype origin: str
|
||||
:ivar description: The description of the operation.
|
||||
:vartype description: str
|
||||
:ivar operation: The display name of the compute operation.
|
||||
:vartype operation: str
|
||||
:ivar provider: The resource provider for the operation.
|
||||
:vartype provider: str
|
||||
:ivar resource: The display name of the resource the operation applies to.
|
||||
:vartype resource: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'is_data_action': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'origin': {'readonly': True},
|
||||
'description': {'readonly': True},
|
||||
'operation': {'readonly': True},
|
||||
'provider': {'readonly': True},
|
||||
'resource': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'is_data_action': {'key': 'isDataAction', 'type': 'bool'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'origin': {'key': 'origin', 'type': 'str'},
|
||||
'description': {'key': 'display.description', 'type': 'str'},
|
||||
'operation': {'key': 'display.operation', 'type': 'str'},
|
||||
'provider': {'key': 'display.provider', 'type': 'str'},
|
||||
'resource': {'key': 'display.resource', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationOperation, self).__init__(**kwargs)
|
||||
self.is_data_action = None
|
||||
self.name = None
|
||||
self.origin = None
|
||||
self.description = None
|
||||
self.operation = None
|
||||
self.provider = None
|
||||
self.resource = None
|
||||
|
||||
|
||||
class CustomLocationOperationsList(msrest.serialization.Model):
|
||||
"""Lists of Custom Locations operations.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:param next_link: Next page of operations.
|
||||
:type next_link: str
|
||||
:param value: Required. Array of customLocationOperation.
|
||||
:type value:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationOperation]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'value': {'required': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[CustomLocationOperation]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
value: List["CustomLocationOperation"],
|
||||
next_link: Optional[str] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationOperationsList, self).__init__(**kwargs)
|
||||
self.next_link = next_link
|
||||
self.value = value
|
||||
|
||||
|
||||
class CustomLocationPropertiesAuthentication(msrest.serialization.Model):
|
||||
"""This is optional input that contains the authentication that should be used to generate the namespace.
|
||||
|
||||
:param type: The type of the Custom Locations authentication.
|
||||
:type type: str
|
||||
:param value: The kubeconfig value.
|
||||
:type value: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
type: Optional[str] = None,
|
||||
value: Optional[str] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationPropertiesAuthentication, self).__init__(**kwargs)
|
||||
self.type = type
|
||||
self.value = value
|
||||
|
||||
|
||||
class EnabledResourceType(Resource):
|
||||
"""EnabledResourceType definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:ivar system_data: Metadata pertaining to creation and last modification of the resource.
|
||||
:vartype system_data: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.SystemData
|
||||
:param cluster_extension_id: Cluster Extension ID.
|
||||
:type cluster_extension_id: str
|
||||
:param extension_type: Cluster Extension Type.
|
||||
:type extension_type: str
|
||||
:param types_metadata: Metadata of the Resource Type.
|
||||
:type types_metadata:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.EnabledResourceTypePropertiesTypesMetadataItem]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'system_data': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'system_data': {'key': 'systemData', 'type': 'SystemData'},
|
||||
'cluster_extension_id': {'key': 'properties.clusterExtensionId', 'type': 'str'},
|
||||
'extension_type': {'key': 'properties.extensionType', 'type': 'str'},
|
||||
'types_metadata': {'key': 'properties.typesMetadata', 'type': '[EnabledResourceTypePropertiesTypesMetadataItem]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
cluster_extension_id: Optional[str] = None,
|
||||
extension_type: Optional[str] = None,
|
||||
types_metadata: Optional[List["EnabledResourceTypePropertiesTypesMetadataItem"]] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceType, self).__init__(**kwargs)
|
||||
self.system_data = None
|
||||
self.cluster_extension_id = cluster_extension_id
|
||||
self.extension_type = extension_type
|
||||
self.types_metadata = types_metadata
|
||||
|
||||
|
||||
class EnabledResourceTypePropertiesTypesMetadataItem(msrest.serialization.Model):
|
||||
"""Metadata of the Resource Type.
|
||||
|
||||
:param api_version: Api Version of Resource Type.
|
||||
:type api_version: str
|
||||
:param resource_provider_namespace: Resource Provider Namespace of Resource Type.
|
||||
:type resource_provider_namespace: str
|
||||
:param resource_type: Resource Type.
|
||||
:type resource_type: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'api_version': {'key': 'apiVersion', 'type': 'str'},
|
||||
'resource_provider_namespace': {'key': 'resourceProviderNamespace', 'type': 'str'},
|
||||
'resource_type': {'key': 'resourceType', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
api_version: Optional[str] = None,
|
||||
resource_provider_namespace: Optional[str] = None,
|
||||
resource_type: Optional[str] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceTypePropertiesTypesMetadataItem, self).__init__(**kwargs)
|
||||
self.api_version = api_version
|
||||
self.resource_provider_namespace = resource_provider_namespace
|
||||
self.resource_type = resource_type
|
||||
|
||||
|
||||
class EnabledResourceTypesListResult(msrest.serialization.Model):
|
||||
"""List of EnabledResourceTypes definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar next_link: The URL to use for getting the next set of results.
|
||||
:vartype next_link: str
|
||||
:ivar value: The list of EnabledResourceTypes available for a customLocation.
|
||||
:vartype value:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.EnabledResourceType]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'next_link': {'readonly': True},
|
||||
'value': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[EnabledResourceType]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceTypesListResult, self).__init__(**kwargs)
|
||||
self.next_link = None
|
||||
self.value = None
|
||||
|
||||
|
||||
class ErrorAdditionalInfo(msrest.serialization.Model):
|
||||
"""The resource management error additional info.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar type: The additional info type.
|
||||
:vartype type: str
|
||||
:ivar info: The additional info.
|
||||
:vartype info: object
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'type': {'readonly': True},
|
||||
'info': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'info': {'key': 'info', 'type': 'object'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorAdditionalInfo, self).__init__(**kwargs)
|
||||
self.type = None
|
||||
self.info = None
|
||||
|
||||
|
||||
class ErrorDetail(msrest.serialization.Model):
|
||||
"""The error detail.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar code: The error code.
|
||||
:vartype code: str
|
||||
:ivar message: The error message.
|
||||
:vartype message: str
|
||||
:ivar target: The error target.
|
||||
:vartype target: str
|
||||
:ivar details: The error details.
|
||||
:vartype details:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.ErrorDetail]
|
||||
:ivar additional_info: The error additional info.
|
||||
:vartype additional_info:
|
||||
list[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.ErrorAdditionalInfo]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'code': {'readonly': True},
|
||||
'message': {'readonly': True},
|
||||
'target': {'readonly': True},
|
||||
'details': {'readonly': True},
|
||||
'additional_info': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'code': {'key': 'code', 'type': 'str'},
|
||||
'message': {'key': 'message', 'type': 'str'},
|
||||
'target': {'key': 'target', 'type': 'str'},
|
||||
'details': {'key': 'details', 'type': '[ErrorDetail]'},
|
||||
'additional_info': {'key': 'additionalInfo', 'type': '[ErrorAdditionalInfo]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorDetail, self).__init__(**kwargs)
|
||||
self.code = None
|
||||
self.message = None
|
||||
self.target = None
|
||||
self.details = None
|
||||
self.additional_info = None
|
||||
|
||||
|
||||
class ErrorResponse(msrest.serialization.Model):
|
||||
"""Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
|
||||
|
||||
:param error: The error object.
|
||||
:type error: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.ErrorDetail
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'error': {'key': 'error', 'type': 'ErrorDetail'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
error: Optional["ErrorDetail"] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorResponse, self).__init__(**kwargs)
|
||||
self.error = error
|
||||
|
||||
|
||||
class PatchableCustomLocations(msrest.serialization.Model):
|
||||
"""The Custom Locations patchable resource definition.
|
||||
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication:
|
||||
~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
Possible values include: "Kubernetes".
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'authentication': {'key': 'properties.authentication', 'type': 'CustomLocationPropertiesAuthentication'},
|
||||
'cluster_extension_ids': {'key': 'properties.clusterExtensionIds', 'type': '[str]'},
|
||||
'display_name': {'key': 'properties.displayName', 'type': 'str'},
|
||||
'host_resource_id': {'key': 'properties.hostResourceId', 'type': 'str'},
|
||||
'host_type': {'key': 'properties.hostType', 'type': 'str'},
|
||||
'namespace': {'key': 'properties.namespace', 'type': 'str'},
|
||||
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
tags: Optional[Dict[str, str]] = None,
|
||||
authentication: Optional["CustomLocationPropertiesAuthentication"] = None,
|
||||
cluster_extension_ids: Optional[List[str]] = None,
|
||||
display_name: Optional[str] = None,
|
||||
host_resource_id: Optional[str] = None,
|
||||
host_type: Optional[Union[str, "HostType"]] = None,
|
||||
namespace: Optional[str] = None,
|
||||
provisioning_state: Optional[str] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(PatchableCustomLocations, self).__init__(**kwargs)
|
||||
self.tags = tags
|
||||
self.authentication = authentication
|
||||
self.cluster_extension_ids = cluster_extension_ids
|
||||
self.display_name = display_name
|
||||
self.host_resource_id = host_resource_id
|
||||
self.host_type = host_type
|
||||
self.namespace = namespace
|
||||
self.provisioning_state = provisioning_state
|
||||
|
||||
|
||||
class ProxyResource(Resource):
|
||||
"""The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ProxyResource, self).__init__(**kwargs)
|
||||
|
||||
|
||||
class SystemData(msrest.serialization.Model):
|
||||
"""Metadata pertaining to creation and last modification of the resource.
|
||||
|
||||
:param created_by: The identity that created the resource.
|
||||
:type created_by: str
|
||||
:param created_by_type: The type of identity that created the resource. Possible values
|
||||
include: "User", "Application", "ManagedIdentity", "Key".
|
||||
:type created_by_type: str or
|
||||
~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CreatedByType
|
||||
:param created_at: The timestamp of resource creation (UTC).
|
||||
:type created_at: ~datetime.datetime
|
||||
:param last_modified_by: The identity that last modified the resource.
|
||||
:type last_modified_by: str
|
||||
:param last_modified_by_type: The type of identity that last modified the resource. Possible
|
||||
values include: "User", "Application", "ManagedIdentity", "Key".
|
||||
:type last_modified_by_type: str or
|
||||
~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CreatedByType
|
||||
:param last_modified_at: The timestamp of resource last modification (UTC).
|
||||
:type last_modified_at: ~datetime.datetime
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'created_by': {'key': 'createdBy', 'type': 'str'},
|
||||
'created_by_type': {'key': 'createdByType', 'type': 'str'},
|
||||
'created_at': {'key': 'createdAt', 'type': 'iso-8601'},
|
||||
'last_modified_by': {'key': 'lastModifiedBy', 'type': 'str'},
|
||||
'last_modified_by_type': {'key': 'lastModifiedByType', 'type': 'str'},
|
||||
'last_modified_at': {'key': 'lastModifiedAt', 'type': 'iso-8601'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
created_by: Optional[str] = None,
|
||||
created_by_type: Optional[Union[str, "CreatedByType"]] = None,
|
||||
created_at: Optional[datetime.datetime] = None,
|
||||
last_modified_by: Optional[str] = None,
|
||||
last_modified_by_type: Optional[Union[str, "CreatedByType"]] = None,
|
||||
last_modified_at: Optional[datetime.datetime] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(SystemData, self).__init__(**kwargs)
|
||||
self.created_by = created_by
|
||||
self.created_by_type = created_by_type
|
||||
self.created_at = created_at
|
||||
self.last_modified_by = last_modified_by
|
||||
self.last_modified_by_type = last_modified_by_type
|
||||
self.last_modified_at = last_modified_at
|
|
@ -1,13 +0,0 @@
|
|||
# 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 ._custom_locations_operations import CustomLocationsOperations
|
||||
|
||||
__all__ = [
|
||||
'CustomLocationsOperations',
|
||||
]
|
|
@ -1,808 +0,0 @@
|
|||
# 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 typing import TYPE_CHECKING
|
||||
import warnings
|
||||
|
||||
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
|
||||
from azure.core.paging import ItemPaged
|
||||
from azure.core.pipeline import PipelineResponse
|
||||
from azure.core.pipeline.transport import HttpRequest, HttpResponse
|
||||
from azure.core.polling import LROPoller, NoPolling, PollingMethod
|
||||
from azure.mgmt.core.exceptions import ARMErrorFormat
|
||||
from azure.mgmt.core.polling.arm_polling import ARMPolling
|
||||
|
||||
from .. import models as _models
|
||||
|
||||
if TYPE_CHECKING:
|
||||
# pylint: disable=unused-import,ungrouped-imports
|
||||
from typing import Any, Callable, Dict, Generic, Iterable, List, Optional, TypeVar, Union
|
||||
|
||||
T = TypeVar('T')
|
||||
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
|
||||
|
||||
class CustomLocationsOperations(object):
|
||||
"""CustomLocationsOperations operations.
|
||||
|
||||
You should not instantiate this class directly. Instead, you should create a Client instance that
|
||||
instantiates it for you and attaches it as an attribute.
|
||||
|
||||
:ivar models: Alias to model classes used in this operation group.
|
||||
:type models: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models
|
||||
:param client: Client for service requests.
|
||||
:param config: Configuration of service client.
|
||||
:param serializer: An object model serializer.
|
||||
:param deserializer: An object model deserializer.
|
||||
"""
|
||||
|
||||
models = _models
|
||||
|
||||
def __init__(self, client, config, serializer, deserializer):
|
||||
self._client = client
|
||||
self._serialize = serializer
|
||||
self._deserialize = deserializer
|
||||
self._config = config
|
||||
|
||||
def list_operations(
|
||||
self,
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> Iterable["_models.CustomLocationOperationsList"]
|
||||
"""Lists all available Custom Locations operations.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationOperationsList or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationOperationsList]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationOperationsList"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_operations.metadata['url'] # type: ignore
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationOperationsList', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, iter(list_of_elem)
|
||||
|
||||
def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return ItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_operations.metadata = {'url': '/providers/Microsoft.ExtendedLocation/operations'} # type: ignore
|
||||
|
||||
def list_by_subscription(
|
||||
self,
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> Iterable["_models.CustomLocationListResult"]
|
||||
"""Gets a list of Custom Locations in a subscription.
|
||||
|
||||
Gets a list of Custom Locations in the specified subscription. The operation returns properties
|
||||
of each Custom Location.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_by_subscription.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, iter(list_of_elem)
|
||||
|
||||
def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return ItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_by_subscription.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ExtendedLocation/customLocations'} # type: ignore
|
||||
|
||||
def list_by_resource_group(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> Iterable["_models.CustomLocationListResult"]
|
||||
"""Gets a list of Custom Locations in the specified subscription and resource group.
|
||||
|
||||
Gets a list of Custom Locations in the specified subscription and resource group. The operation
|
||||
returns properties of each Custom Location.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_by_resource_group.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, iter(list_of_elem)
|
||||
|
||||
def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return ItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations'} # type: ignore
|
||||
|
||||
def get(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> "_models.CustomLocation"
|
||||
"""Gets a Custom Location.
|
||||
|
||||
Gets the details of the customLocation with a specified resource group and name.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: CustomLocation, or the result of cls(response)
|
||||
:rtype: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocation
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self.get.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def _create_or_update_initial(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
parameters, # type: "_models.CustomLocation"
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> "_models.CustomLocation"
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
content_type = kwargs.pop("content_type", "application/json")
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self._create_or_update_initial.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str')
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
body_content_kwargs = {} # type: Dict[str, Any]
|
||||
body_content = self._serialize.body(parameters, 'CustomLocation')
|
||||
body_content_kwargs['content'] = body_content
|
||||
request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs)
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200, 201]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
if response.status_code == 200:
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if response.status_code == 201:
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
_create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def begin_create_or_update(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
parameters, # type: "_models.CustomLocation"
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> LROPoller["_models.CustomLocation"]
|
||||
"""Creates or updates a Custom Location.
|
||||
|
||||
Creates or updates a Custom Location in the specified Subscription and Resource Group.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:param parameters: Parameters supplied to create or update a Custom Location.
|
||||
:type parameters: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocation
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: True for ARMPolling, False for no polling, or a
|
||||
polling object for personal polling strategy
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either CustomLocation or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocation]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
"""
|
||||
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
lro_delay = kwargs.pop(
|
||||
'polling_interval',
|
||||
self._config.polling_interval
|
||||
)
|
||||
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
|
||||
if cont_token is None:
|
||||
raw_result = self._create_or_update_initial(
|
||||
resource_group_name=resource_group_name,
|
||||
resource_name=resource_name,
|
||||
parameters=parameters,
|
||||
cls=lambda x,y,z: x,
|
||||
**kwargs
|
||||
)
|
||||
|
||||
kwargs.pop('error_map', None)
|
||||
kwargs.pop('content_type', None)
|
||||
|
||||
def get_long_running_output(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
return deserialized
|
||||
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
|
||||
if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs)
|
||||
elif polling is False: polling_method = NoPolling()
|
||||
else: polling_method = polling
|
||||
if cont_token:
|
||||
return LROPoller.from_continuation_token(
|
||||
polling_method=polling_method,
|
||||
continuation_token=cont_token,
|
||||
client=self._client,
|
||||
deserialization_callback=get_long_running_output
|
||||
)
|
||||
else:
|
||||
return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
|
||||
begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def _delete_initial(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> None
|
||||
cls = kwargs.pop('cls', None) # type: ClsType[None]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self._delete_initial.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
request = self._client.delete(url, query_parameters, header_parameters)
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [202, 204]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, None, {})
|
||||
|
||||
_delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def begin_delete(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> LROPoller[None]
|
||||
"""Deletes a Custom Location.
|
||||
|
||||
Deletes the Custom Location with the specified Resource Name, Resource Group, and Subscription
|
||||
Id.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: True for ARMPolling, False for no polling, or a
|
||||
polling object for personal polling strategy
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
"""
|
||||
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
|
||||
cls = kwargs.pop('cls', None) # type: ClsType[None]
|
||||
lro_delay = kwargs.pop(
|
||||
'polling_interval',
|
||||
self._config.polling_interval
|
||||
)
|
||||
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
|
||||
if cont_token is None:
|
||||
raw_result = self._delete_initial(
|
||||
resource_group_name=resource_group_name,
|
||||
resource_name=resource_name,
|
||||
cls=lambda x,y,z: x,
|
||||
**kwargs
|
||||
)
|
||||
|
||||
kwargs.pop('error_map', None)
|
||||
kwargs.pop('content_type', None)
|
||||
|
||||
def get_long_running_output(pipeline_response):
|
||||
if cls:
|
||||
return cls(pipeline_response, None, {})
|
||||
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
|
||||
if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs)
|
||||
elif polling is False: polling_method = NoPolling()
|
||||
else: polling_method = polling
|
||||
if cont_token:
|
||||
return LROPoller.from_continuation_token(
|
||||
polling_method=polling_method,
|
||||
continuation_token=cont_token,
|
||||
client=self._client,
|
||||
deserialization_callback=get_long_running_output
|
||||
)
|
||||
else:
|
||||
return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
|
||||
begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def update(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
tags=None, # type: Optional[Dict[str, str]]
|
||||
authentication=None, # type: Optional["_models.CustomLocationPropertiesAuthentication"]
|
||||
cluster_extension_ids=None, # type: Optional[List[str]]
|
||||
display_name=None, # type: Optional[str]
|
||||
host_resource_id=None, # type: Optional[str]
|
||||
host_type=None, # type: Optional[Union[str, "_models.HostType"]]
|
||||
namespace=None, # type: Optional[str]
|
||||
provisioning_state=None, # type: Optional[str]
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> "_models.CustomLocation"
|
||||
"""Updates a Custom Location.
|
||||
|
||||
Updates a Custom Location with the specified Resource Name in the specified Resource Group and
|
||||
Subscription.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:param tags: Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: CustomLocation, or the result of cls(response)
|
||||
:rtype: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.CustomLocation
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
|
||||
_parameters = _models.PatchableCustomLocations(tags=tags, authentication=authentication, cluster_extension_ids=cluster_extension_ids, display_name=display_name, host_resource_id=host_resource_id, host_type=host_type, namespace=namespace, provisioning_state=provisioning_state)
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
content_type = kwargs.pop("content_type", "application/json")
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self.update.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str')
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
body_content_kwargs = {} # type: Dict[str, Any]
|
||||
body_content = self._serialize.body(_parameters, 'PatchableCustomLocations')
|
||||
body_content_kwargs['content'] = body_content
|
||||
request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs)
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def list_enabled_resource_types(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> Iterable["_models.EnabledResourceTypesListResult"]
|
||||
"""Gets the list of Enabled Resource Types.
|
||||
|
||||
Gets the list of the Enabled Resource Types.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either EnabledResourceTypesListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.EnabledResourceTypesListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.EnabledResourceTypesListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_enabled_resource_types.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('EnabledResourceTypesListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, iter(list_of_elem)
|
||||
|
||||
def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return ItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_enabled_resource_types.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}/enabledResourceTypes'} # type: ignore
|
||||
|
||||
def get_enabled_resource_type(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
enabled_resource_type_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> "_models.EnabledResourceType"
|
||||
"""Gets details of a Enabled Resource Type.
|
||||
|
||||
Gets the details of the Enabled Resource Type.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:param enabled_resource_type_name: Custom Locations Enabled Resource Type name.
|
||||
:type enabled_resource_type_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: EnabledResourceType, or the result of cls(response)
|
||||
:rtype: ~azure.mgmt.extendedlocation.v2020_07_15_privatepreview.models.EnabledResourceType
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.EnabledResourceType"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2020-07-15-privatepreview"
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self.get_enabled_resource_type.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
'enabledResourceTypeName': self._serialize.url("enabled_resource_type_name", enabled_resource_type_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
deserialized = self._deserialize('EnabledResourceType', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
get_enabled_resource_type.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}/enabledResourceTypes/{enabledResourceTypeName}'} # type: ignore
|
|
@ -1 +0,0 @@
|
|||
# Marker file for PEP 561.
|
|
@ -1,19 +0,0 @@
|
|||
# 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 ._custom_locations import CustomLocations
|
||||
from ._version import VERSION
|
||||
|
||||
__version__ = VERSION
|
||||
__all__ = ['CustomLocations']
|
||||
|
||||
try:
|
||||
from ._patch import patch_sdk # type: ignore
|
||||
patch_sdk()
|
||||
except ImportError:
|
||||
pass
|
|
@ -1,71 +0,0 @@
|
|||
# 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 typing import TYPE_CHECKING
|
||||
|
||||
from azure.core.configuration import Configuration
|
||||
from azure.core.pipeline import policies
|
||||
from azure.mgmt.core.policies import ARMHttpLoggingPolicy
|
||||
|
||||
from ._version import VERSION
|
||||
|
||||
if TYPE_CHECKING:
|
||||
# pylint: disable=unused-import,ungrouped-imports
|
||||
from typing import Any
|
||||
|
||||
from azure.core.credentials import TokenCredential
|
||||
|
||||
|
||||
class CustomLocationsConfiguration(Configuration):
|
||||
"""Configuration for CustomLocations.
|
||||
|
||||
Note that all parameters used to create this instance are saved as instance
|
||||
attributes.
|
||||
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials.TokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
:type subscription_id: str
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
credential, # type: "TokenCredential"
|
||||
subscription_id, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> None
|
||||
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(CustomLocationsConfiguration, self).__init__(**kwargs)
|
||||
|
||||
self.credential = credential
|
||||
self.subscription_id = subscription_id
|
||||
self.api_version = "2021-03-15-preview"
|
||||
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
|
||||
kwargs.setdefault('sdk_moniker', 'mgmt-extendedlocation/{}'.format(VERSION))
|
||||
self._configure(**kwargs)
|
||||
|
||||
def _configure(
|
||||
self,
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> None
|
||||
self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs)
|
||||
self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs)
|
||||
self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs)
|
||||
self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs)
|
||||
self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs)
|
||||
self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs)
|
||||
self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs)
|
||||
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)
|
|
@ -1,70 +0,0 @@
|
|||
# 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 typing import TYPE_CHECKING
|
||||
|
||||
from azure.mgmt.core import ARMPipelineClient
|
||||
from msrest import Deserializer, Serializer
|
||||
|
||||
if TYPE_CHECKING:
|
||||
# pylint: disable=unused-import,ungrouped-imports
|
||||
from typing import Any, Optional
|
||||
|
||||
from azure.core.credentials import TokenCredential
|
||||
|
||||
from ._configuration import CustomLocationsConfiguration
|
||||
from .operations import CustomLocationsOperations
|
||||
from . import models
|
||||
|
||||
|
||||
class CustomLocations(object):
|
||||
"""The customLocations Rest API spec.
|
||||
|
||||
:ivar custom_locations: CustomLocationsOperations operations
|
||||
:vartype custom_locations: azure.mgmt.extendedlocation.v2021_03_15_preview.operations.CustomLocationsOperations
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials.TokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
: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.
|
||||
"""
|
||||
|
||||
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 = CustomLocationsConfiguration(credential, 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.custom_locations = CustomLocationsOperations(
|
||||
self._client, self._config, self._serialize, self._deserialize)
|
||||
|
||||
def close(self):
|
||||
# type: () -> None
|
||||
self._client.close()
|
||||
|
||||
def __enter__(self):
|
||||
# type: () -> CustomLocations
|
||||
self._client.__enter__()
|
||||
return self
|
||||
|
||||
def __exit__(self, *exc_details):
|
||||
# type: (Any) -> None
|
||||
self._client.__exit__(*exc_details)
|
|
@ -1,61 +0,0 @@
|
|||
{
|
||||
"chosen_version": "2021-03-15-preview",
|
||||
"total_api_version_list": ["2021-03-15-preview"],
|
||||
"client": {
|
||||
"name": "CustomLocations",
|
||||
"filename": "_custom_locations",
|
||||
"description": "The customLocations Rest API spec.",
|
||||
"base_url": "\u0027https://management.azure.com\u0027",
|
||||
"custom_base_url": null,
|
||||
"azure_arm": true,
|
||||
"has_lro_operations": true,
|
||||
"client_side_validation": false
|
||||
},
|
||||
"global_parameters": {
|
||||
"sync": {
|
||||
"credential": {
|
||||
"signature": "credential, # type: \"TokenCredential\"",
|
||||
"description": "Credential needed for the client to connect to Azure.",
|
||||
"docstring_type": "~azure.core.credentials.TokenCredential",
|
||||
"required": true
|
||||
},
|
||||
"subscription_id": {
|
||||
"signature": "subscription_id, # type: str",
|
||||
"description": "The ID of the target subscription.",
|
||||
"docstring_type": "str",
|
||||
"required": true
|
||||
}
|
||||
},
|
||||
"async": {
|
||||
"credential": {
|
||||
"signature": "credential, # type: \"AsyncTokenCredential\"",
|
||||
"description": "Credential needed for the client to connect to Azure.",
|
||||
"docstring_type": "~azure.core.credentials_async.AsyncTokenCredential",
|
||||
"required": true
|
||||
},
|
||||
"subscription_id": {
|
||||
"signature": "subscription_id, # type: str",
|
||||
"description": "The ID of the target subscription.",
|
||||
"docstring_type": "str",
|
||||
"required": true
|
||||
}
|
||||
},
|
||||
"constant": {
|
||||
},
|
||||
"call": "credential, subscription_id"
|
||||
},
|
||||
"config": {
|
||||
"credential": true,
|
||||
"credential_scopes": ["https://management.azure.com/.default"],
|
||||
"credential_default_policy_type": "BearerTokenCredentialPolicy",
|
||||
"credential_default_policy_type_has_async_version": true,
|
||||
"credential_key_header_name": null
|
||||
},
|
||||
"operation_groups": {
|
||||
"custom_locations": "CustomLocationsOperations"
|
||||
},
|
||||
"operation_mixins": {
|
||||
},
|
||||
"sync_imports": "None",
|
||||
"async_imports": "None"
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
# 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.
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
VERSION = "1.0.0b1"
|
|
@ -1,10 +0,0 @@
|
|||
# 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 ._custom_locations import CustomLocations
|
||||
__all__ = ['CustomLocations']
|
|
@ -1,67 +0,0 @@
|
|||
# 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 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 .._version import VERSION
|
||||
|
||||
if TYPE_CHECKING:
|
||||
# pylint: disable=unused-import,ungrouped-imports
|
||||
from azure.core.credentials_async import AsyncTokenCredential
|
||||
|
||||
|
||||
class CustomLocationsConfiguration(Configuration):
|
||||
"""Configuration for CustomLocations.
|
||||
|
||||
Note that all parameters used to create this instance are saved as instance
|
||||
attributes.
|
||||
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
:type subscription_id: str
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
credential: "AsyncTokenCredential",
|
||||
subscription_id: str,
|
||||
**kwargs: Any
|
||||
) -> None:
|
||||
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(CustomLocationsConfiguration, self).__init__(**kwargs)
|
||||
|
||||
self.credential = credential
|
||||
self.subscription_id = subscription_id
|
||||
self.api_version = "2021-03-15-preview"
|
||||
self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default'])
|
||||
kwargs.setdefault('sdk_moniker', 'mgmt-extendedlocation/{}'.format(VERSION))
|
||||
self._configure(**kwargs)
|
||||
|
||||
def _configure(
|
||||
self,
|
||||
**kwargs: Any
|
||||
) -> None:
|
||||
self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs)
|
||||
self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs)
|
||||
self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs)
|
||||
self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs)
|
||||
self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs)
|
||||
self.retry_policy = kwargs.get('retry_policy') or policies.AsyncRetryPolicy(**kwargs)
|
||||
self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs)
|
||||
self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs)
|
||||
self.authentication_policy = kwargs.get('authentication_policy')
|
||||
if self.credential and not self.authentication_policy:
|
||||
self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs)
|
|
@ -1,64 +0,0 @@
|
|||
# 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 typing import Any, Optional, TYPE_CHECKING
|
||||
|
||||
from azure.mgmt.core import AsyncARMPipelineClient
|
||||
from msrest import Deserializer, Serializer
|
||||
|
||||
if TYPE_CHECKING:
|
||||
# pylint: disable=unused-import,ungrouped-imports
|
||||
from azure.core.credentials_async import AsyncTokenCredential
|
||||
|
||||
from ._configuration import CustomLocationsConfiguration
|
||||
from .operations import CustomLocationsOperations
|
||||
from .. import models
|
||||
|
||||
|
||||
class CustomLocations(object):
|
||||
"""The customLocations Rest API spec.
|
||||
|
||||
:ivar custom_locations: CustomLocationsOperations operations
|
||||
:vartype custom_locations: azure.mgmt.extendedlocation.v2021_03_15_preview.aio.operations.CustomLocationsOperations
|
||||
:param credential: Credential needed for the client to connect to Azure.
|
||||
:type credential: ~azure.core.credentials_async.AsyncTokenCredential
|
||||
:param subscription_id: The ID of the target subscription.
|
||||
: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.
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
credential: "AsyncTokenCredential",
|
||||
subscription_id: str,
|
||||
base_url: Optional[str] = None,
|
||||
**kwargs: Any
|
||||
) -> None:
|
||||
if not base_url:
|
||||
base_url = 'https://management.azure.com'
|
||||
self._config = CustomLocationsConfiguration(credential, subscription_id, **kwargs)
|
||||
self._client = AsyncARMPipelineClient(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.custom_locations = CustomLocationsOperations(
|
||||
self._client, self._config, self._serialize, self._deserialize)
|
||||
|
||||
async def close(self) -> None:
|
||||
await self._client.close()
|
||||
|
||||
async def __aenter__(self) -> "CustomLocations":
|
||||
await self._client.__aenter__()
|
||||
return self
|
||||
|
||||
async def __aexit__(self, *exc_details) -> None:
|
||||
await self._client.__aexit__(*exc_details)
|
|
@ -1,13 +0,0 @@
|
|||
# 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 ._custom_locations_operations import CustomLocationsOperations
|
||||
|
||||
__all__ = [
|
||||
'CustomLocationsOperations',
|
||||
]
|
|
@ -1,728 +0,0 @@
|
|||
# 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 typing import Any, AsyncIterable, Callable, Dict, Generic, List, Optional, TypeVar, Union
|
||||
import warnings
|
||||
|
||||
from azure.core.async_paging import AsyncItemPaged, AsyncList
|
||||
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
|
||||
from azure.core.pipeline import PipelineResponse
|
||||
from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest
|
||||
from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod
|
||||
from azure.mgmt.core.exceptions import ARMErrorFormat
|
||||
from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling
|
||||
|
||||
from ... import models as _models
|
||||
|
||||
T = TypeVar('T')
|
||||
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]]
|
||||
|
||||
class CustomLocationsOperations:
|
||||
"""CustomLocationsOperations async operations.
|
||||
|
||||
You should not instantiate this class directly. Instead, you should create a Client instance that
|
||||
instantiates it for you and attaches it as an attribute.
|
||||
|
||||
:ivar models: Alias to model classes used in this operation group.
|
||||
:type models: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models
|
||||
:param client: Client for service requests.
|
||||
:param config: Configuration of service client.
|
||||
:param serializer: An object model serializer.
|
||||
:param deserializer: An object model deserializer.
|
||||
"""
|
||||
|
||||
models = _models
|
||||
|
||||
def __init__(self, client, config, serializer, deserializer) -> None:
|
||||
self._client = client
|
||||
self._serialize = serializer
|
||||
self._deserialize = deserializer
|
||||
self._config = config
|
||||
|
||||
def list_operations(
|
||||
self,
|
||||
**kwargs
|
||||
) -> AsyncIterable["_models.CustomLocationOperationsList"]:
|
||||
"""Lists all available Custom Locations operations.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationOperationsList or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationOperationsList]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationOperationsList"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_operations.metadata['url'] # type: ignore
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
async def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationOperationsList', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, AsyncList(list_of_elem)
|
||||
|
||||
async def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return AsyncItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_operations.metadata = {'url': '/providers/Microsoft.ExtendedLocation/operations'} # type: ignore
|
||||
|
||||
def list_by_subscription(
|
||||
self,
|
||||
**kwargs
|
||||
) -> AsyncIterable["_models.CustomLocationListResult"]:
|
||||
"""Gets a list of Custom Locations in a subscription.
|
||||
|
||||
Gets a list of Custom Locations in the specified subscription. The operation returns properties
|
||||
of each Custom Location.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_by_subscription.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
async def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, AsyncList(list_of_elem)
|
||||
|
||||
async def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return AsyncItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_by_subscription.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ExtendedLocation/customLocations'} # type: ignore
|
||||
|
||||
def list_by_resource_group(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
**kwargs
|
||||
) -> AsyncIterable["_models.CustomLocationListResult"]:
|
||||
"""Gets a list of Custom Locations in the specified subscription and resource group.
|
||||
|
||||
Gets a list of Custom Locations in the specified subscription and resource group. The operation
|
||||
returns properties of each Custom Location.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_by_resource_group.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
async def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, AsyncList(list_of_elem)
|
||||
|
||||
async def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return AsyncItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations'} # type: ignore
|
||||
|
||||
async def get(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
**kwargs
|
||||
) -> "_models.CustomLocation":
|
||||
"""Gets a Custom Location.
|
||||
|
||||
Gets the details of the customLocation with a specified resource group and name.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: CustomLocation, or the result of cls(response)
|
||||
:rtype: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocation
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self.get.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
async def _create_or_update_initial(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
parameters: "_models.CustomLocation",
|
||||
**kwargs
|
||||
) -> "_models.CustomLocation":
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
content_type = kwargs.pop("content_type", "application/json")
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self._create_or_update_initial.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str')
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
body_content_kwargs = {} # type: Dict[str, Any]
|
||||
body_content = self._serialize.body(parameters, 'CustomLocation')
|
||||
body_content_kwargs['content'] = body_content
|
||||
request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs)
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200, 201]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
if response.status_code == 200:
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if response.status_code == 201:
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
_create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
async def begin_create_or_update(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
parameters: "_models.CustomLocation",
|
||||
**kwargs
|
||||
) -> AsyncLROPoller["_models.CustomLocation"]:
|
||||
"""Creates or updates a Custom Location.
|
||||
|
||||
Creates or updates a Custom Location in the specified Subscription and Resource Group.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:param parameters: Parameters supplied to create or update a Custom Location.
|
||||
:type parameters: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocation
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: True for ARMPolling, False for no polling, or a
|
||||
polling object for personal polling strategy
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either CustomLocation or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocation]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
"""
|
||||
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
lro_delay = kwargs.pop(
|
||||
'polling_interval',
|
||||
self._config.polling_interval
|
||||
)
|
||||
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
|
||||
if cont_token is None:
|
||||
raw_result = await self._create_or_update_initial(
|
||||
resource_group_name=resource_group_name,
|
||||
resource_name=resource_name,
|
||||
parameters=parameters,
|
||||
cls=lambda x,y,z: x,
|
||||
**kwargs
|
||||
)
|
||||
|
||||
kwargs.pop('error_map', None)
|
||||
kwargs.pop('content_type', None)
|
||||
|
||||
def get_long_running_output(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
return deserialized
|
||||
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
|
||||
if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs)
|
||||
elif polling is False: polling_method = AsyncNoPolling()
|
||||
else: polling_method = polling
|
||||
if cont_token:
|
||||
return AsyncLROPoller.from_continuation_token(
|
||||
polling_method=polling_method,
|
||||
continuation_token=cont_token,
|
||||
client=self._client,
|
||||
deserialization_callback=get_long_running_output
|
||||
)
|
||||
else:
|
||||
return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method)
|
||||
begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
async def _delete_initial(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
**kwargs
|
||||
) -> None:
|
||||
cls = kwargs.pop('cls', None) # type: ClsType[None]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self._delete_initial.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
request = self._client.delete(url, query_parameters, header_parameters)
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [202, 204]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, None, {})
|
||||
|
||||
_delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
async def begin_delete(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
**kwargs
|
||||
) -> AsyncLROPoller[None]:
|
||||
"""Deletes a Custom Location.
|
||||
|
||||
Deletes the Custom Location with the specified Resource Name, Resource Group, and Subscription
|
||||
Id.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: True for ARMPolling, False for no polling, or a
|
||||
polling object for personal polling strategy
|
||||
:paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
|
||||
:return: An instance of AsyncLROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.AsyncLROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
"""
|
||||
polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod]
|
||||
cls = kwargs.pop('cls', None) # type: ClsType[None]
|
||||
lro_delay = kwargs.pop(
|
||||
'polling_interval',
|
||||
self._config.polling_interval
|
||||
)
|
||||
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
|
||||
if cont_token is None:
|
||||
raw_result = await self._delete_initial(
|
||||
resource_group_name=resource_group_name,
|
||||
resource_name=resource_name,
|
||||
cls=lambda x,y,z: x,
|
||||
**kwargs
|
||||
)
|
||||
|
||||
kwargs.pop('error_map', None)
|
||||
kwargs.pop('content_type', None)
|
||||
|
||||
def get_long_running_output(pipeline_response):
|
||||
if cls:
|
||||
return cls(pipeline_response, None, {})
|
||||
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
|
||||
if polling is True: polling_method = AsyncARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs)
|
||||
elif polling is False: polling_method = AsyncNoPolling()
|
||||
else: polling_method = polling
|
||||
if cont_token:
|
||||
return AsyncLROPoller.from_continuation_token(
|
||||
polling_method=polling_method,
|
||||
continuation_token=cont_token,
|
||||
client=self._client,
|
||||
deserialization_callback=get_long_running_output
|
||||
)
|
||||
else:
|
||||
return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method)
|
||||
begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
async def update(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
tags: Optional[Dict[str, str]] = None,
|
||||
authentication: Optional["_models.CustomLocationPropertiesAuthentication"] = None,
|
||||
cluster_extension_ids: Optional[List[str]] = None,
|
||||
display_name: Optional[str] = None,
|
||||
host_resource_id: Optional[str] = None,
|
||||
host_type: Optional[Union[str, "_models.HostType"]] = None,
|
||||
namespace: Optional[str] = None,
|
||||
provisioning_state: Optional[str] = None,
|
||||
**kwargs
|
||||
) -> "_models.CustomLocation":
|
||||
"""Updates a Custom Location.
|
||||
|
||||
Updates a Custom Location with the specified Resource Name in the specified Resource Group and
|
||||
Subscription.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:param tags: Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: CustomLocation, or the result of cls(response)
|
||||
:rtype: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocation
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
|
||||
_parameters = _models.PatchableCustomLocations(tags=tags, authentication=authentication, cluster_extension_ids=cluster_extension_ids, display_name=display_name, host_resource_id=host_resource_id, host_type=host_type, namespace=namespace, provisioning_state=provisioning_state)
|
||||
api_version = "2021-03-15-preview"
|
||||
content_type = kwargs.pop("content_type", "application/json")
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self.update.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str')
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
body_content_kwargs = {} # type: Dict[str, Any]
|
||||
body_content = self._serialize.body(_parameters, 'PatchableCustomLocations')
|
||||
body_content_kwargs['content'] = body_content
|
||||
request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs)
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def list_enabled_resource_types(
|
||||
self,
|
||||
resource_group_name: str,
|
||||
resource_name: str,
|
||||
**kwargs
|
||||
) -> AsyncIterable["_models.EnabledResourceTypesListResult"]:
|
||||
"""Gets the list of Enabled Resource Types.
|
||||
|
||||
Gets the list of the Enabled Resource Types.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either EnabledResourceTypesListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.EnabledResourceTypesListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.EnabledResourceTypesListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_enabled_resource_types.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
async def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('EnabledResourceTypesListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, AsyncList(list_of_elem)
|
||||
|
||||
async def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return AsyncItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_enabled_resource_types.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}/enabledResourceTypes'} # type: ignore
|
|
@ -1,68 +0,0 @@
|
|||
# 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 CustomLocation
|
||||
from ._models_py3 import CustomLocationListResult
|
||||
from ._models_py3 import CustomLocationOperation
|
||||
from ._models_py3 import CustomLocationOperationsList
|
||||
from ._models_py3 import CustomLocationPropertiesAuthentication
|
||||
from ._models_py3 import EnabledResourceType
|
||||
from ._models_py3 import EnabledResourceTypePropertiesTypesMetadataItem
|
||||
from ._models_py3 import EnabledResourceTypesListResult
|
||||
from ._models_py3 import ErrorAdditionalInfo
|
||||
from ._models_py3 import ErrorDetail
|
||||
from ._models_py3 import ErrorResponse
|
||||
from ._models_py3 import PatchableCustomLocations
|
||||
from ._models_py3 import ProxyResource
|
||||
from ._models_py3 import Resource
|
||||
from ._models_py3 import SystemData
|
||||
from ._models_py3 import TrackedResource
|
||||
except (SyntaxError, ImportError):
|
||||
from ._models import CustomLocation # type: ignore
|
||||
from ._models import CustomLocationListResult # type: ignore
|
||||
from ._models import CustomLocationOperation # type: ignore
|
||||
from ._models import CustomLocationOperationsList # type: ignore
|
||||
from ._models import CustomLocationPropertiesAuthentication # type: ignore
|
||||
from ._models import EnabledResourceType # type: ignore
|
||||
from ._models import EnabledResourceTypePropertiesTypesMetadataItem # type: ignore
|
||||
from ._models import EnabledResourceTypesListResult # type: ignore
|
||||
from ._models import ErrorAdditionalInfo # type: ignore
|
||||
from ._models import ErrorDetail # type: ignore
|
||||
from ._models import ErrorResponse # type: ignore
|
||||
from ._models import PatchableCustomLocations # type: ignore
|
||||
from ._models import ProxyResource # type: ignore
|
||||
from ._models import Resource # type: ignore
|
||||
from ._models import SystemData # type: ignore
|
||||
from ._models import TrackedResource # type: ignore
|
||||
|
||||
from ._custom_locations_enums import (
|
||||
CreatedByType,
|
||||
HostType,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
'CustomLocation',
|
||||
'CustomLocationListResult',
|
||||
'CustomLocationOperation',
|
||||
'CustomLocationOperationsList',
|
||||
'CustomLocationPropertiesAuthentication',
|
||||
'EnabledResourceType',
|
||||
'EnabledResourceTypePropertiesTypesMetadataItem',
|
||||
'EnabledResourceTypesListResult',
|
||||
'ErrorAdditionalInfo',
|
||||
'ErrorDetail',
|
||||
'ErrorResponse',
|
||||
'PatchableCustomLocations',
|
||||
'ProxyResource',
|
||||
'Resource',
|
||||
'SystemData',
|
||||
'TrackedResource',
|
||||
'CreatedByType',
|
||||
'HostType',
|
||||
]
|
|
@ -1,42 +0,0 @@
|
|||
# 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 enum import Enum, EnumMeta
|
||||
from six import with_metaclass
|
||||
|
||||
class _CaseInsensitiveEnumMeta(EnumMeta):
|
||||
def __getitem__(self, name):
|
||||
return super().__getitem__(name.upper())
|
||||
|
||||
def __getattr__(cls, name):
|
||||
"""Return the enum member matching `name`
|
||||
We use __getattr__ instead of descriptors or inserting into the enum
|
||||
class' __dict__ in order to support `name` and `value` being both
|
||||
properties for enum members (which live in the class' __dict__) and
|
||||
enum members themselves.
|
||||
"""
|
||||
try:
|
||||
return cls._member_map_[name.upper()]
|
||||
except KeyError:
|
||||
raise AttributeError(name)
|
||||
|
||||
|
||||
class CreatedByType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
|
||||
"""The type of identity that created the resource.
|
||||
"""
|
||||
|
||||
USER = "User"
|
||||
APPLICATION = "Application"
|
||||
MANAGED_IDENTITY = "ManagedIdentity"
|
||||
KEY = "Key"
|
||||
|
||||
class HostType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
|
||||
"""Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
"""
|
||||
|
||||
KUBERNETES = "Kubernetes"
|
|
@ -1,645 +0,0 @@
|
|||
# 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 azure.core.exceptions import HttpResponseError
|
||||
import msrest.serialization
|
||||
|
||||
|
||||
class Resource(msrest.serialization.Model):
|
||||
"""Common fields that are returned in the response for all Azure Resource Manager resources.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(Resource, self).__init__(**kwargs)
|
||||
self.id = None
|
||||
self.name = None
|
||||
self.type = None
|
||||
|
||||
|
||||
class TrackedResource(Resource):
|
||||
"""The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param location: Required. The geo-location where the resource lives.
|
||||
:type location: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'location': {'required': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'location': {'key': 'location', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(TrackedResource, self).__init__(**kwargs)
|
||||
self.tags = kwargs.get('tags', None)
|
||||
self.location = kwargs['location']
|
||||
|
||||
|
||||
class CustomLocation(TrackedResource):
|
||||
"""Custom Locations definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param location: Required. The geo-location where the resource lives.
|
||||
:type location: str
|
||||
:ivar system_data: Metadata pertaining to creation and last modification of the resource.
|
||||
:vartype system_data: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.SystemData
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication:
|
||||
~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
Possible values include: "Kubernetes".
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'location': {'required': True},
|
||||
'system_data': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'location': {'key': 'location', 'type': 'str'},
|
||||
'system_data': {'key': 'systemData', 'type': 'SystemData'},
|
||||
'authentication': {'key': 'properties.authentication', 'type': 'CustomLocationPropertiesAuthentication'},
|
||||
'cluster_extension_ids': {'key': 'properties.clusterExtensionIds', 'type': '[str]'},
|
||||
'display_name': {'key': 'properties.displayName', 'type': 'str'},
|
||||
'host_resource_id': {'key': 'properties.hostResourceId', 'type': 'str'},
|
||||
'host_type': {'key': 'properties.hostType', 'type': 'str'},
|
||||
'namespace': {'key': 'properties.namespace', 'type': 'str'},
|
||||
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocation, self).__init__(**kwargs)
|
||||
self.system_data = None
|
||||
self.authentication = kwargs.get('authentication', None)
|
||||
self.cluster_extension_ids = kwargs.get('cluster_extension_ids', None)
|
||||
self.display_name = kwargs.get('display_name', None)
|
||||
self.host_resource_id = kwargs.get('host_resource_id', None)
|
||||
self.host_type = kwargs.get('host_type', None)
|
||||
self.namespace = kwargs.get('namespace', None)
|
||||
self.provisioning_state = kwargs.get('provisioning_state', None)
|
||||
|
||||
|
||||
class CustomLocationListResult(msrest.serialization.Model):
|
||||
"""The List Custom Locations operation response.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar next_link: The URL to use for getting the next set of results.
|
||||
:vartype next_link: str
|
||||
:ivar value: The list of Custom Locations.
|
||||
:vartype value: list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocation]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'next_link': {'readonly': True},
|
||||
'value': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[CustomLocation]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationListResult, self).__init__(**kwargs)
|
||||
self.next_link = None
|
||||
self.value = None
|
||||
|
||||
|
||||
class CustomLocationOperation(msrest.serialization.Model):
|
||||
"""Custom Locations operation.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar is_data_action: Is this Operation a data plane operation.
|
||||
:vartype is_data_action: bool
|
||||
:ivar name: The name of the compute operation.
|
||||
:vartype name: str
|
||||
:ivar origin: The origin of the compute operation.
|
||||
:vartype origin: str
|
||||
:ivar description: The description of the operation.
|
||||
:vartype description: str
|
||||
:ivar operation: The display name of the compute operation.
|
||||
:vartype operation: str
|
||||
:ivar provider: The resource provider for the operation.
|
||||
:vartype provider: str
|
||||
:ivar resource: The display name of the resource the operation applies to.
|
||||
:vartype resource: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'is_data_action': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'origin': {'readonly': True},
|
||||
'description': {'readonly': True},
|
||||
'operation': {'readonly': True},
|
||||
'provider': {'readonly': True},
|
||||
'resource': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'is_data_action': {'key': 'isDataAction', 'type': 'bool'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'origin': {'key': 'origin', 'type': 'str'},
|
||||
'description': {'key': 'display.description', 'type': 'str'},
|
||||
'operation': {'key': 'display.operation', 'type': 'str'},
|
||||
'provider': {'key': 'display.provider', 'type': 'str'},
|
||||
'resource': {'key': 'display.resource', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationOperation, self).__init__(**kwargs)
|
||||
self.is_data_action = None
|
||||
self.name = None
|
||||
self.origin = None
|
||||
self.description = None
|
||||
self.operation = None
|
||||
self.provider = None
|
||||
self.resource = None
|
||||
|
||||
|
||||
class CustomLocationOperationsList(msrest.serialization.Model):
|
||||
"""Lists of Custom Locations operations.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:param next_link: Next page of operations.
|
||||
:type next_link: str
|
||||
:param value: Required. Array of customLocationOperation.
|
||||
:type value:
|
||||
list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationOperation]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'value': {'required': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[CustomLocationOperation]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationOperationsList, self).__init__(**kwargs)
|
||||
self.next_link = kwargs.get('next_link', None)
|
||||
self.value = kwargs['value']
|
||||
|
||||
|
||||
class CustomLocationPropertiesAuthentication(msrest.serialization.Model):
|
||||
"""This is optional input that contains the authentication that should be used to generate the namespace.
|
||||
|
||||
:param type: The type of the Custom Locations authentication.
|
||||
:type type: str
|
||||
:param value: The kubeconfig value.
|
||||
:type value: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationPropertiesAuthentication, self).__init__(**kwargs)
|
||||
self.type = kwargs.get('type', None)
|
||||
self.value = kwargs.get('value', None)
|
||||
|
||||
|
||||
class EnabledResourceType(Resource):
|
||||
"""EnabledResourceType definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:ivar system_data: Metadata pertaining to creation and last modification of the resource.
|
||||
:vartype system_data: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.SystemData
|
||||
:param cluster_extension_id: Cluster Extension ID.
|
||||
:type cluster_extension_id: str
|
||||
:param extension_type: Cluster Extension Type.
|
||||
:type extension_type: str
|
||||
:param types_metadata: Metadata of the Resource Type.
|
||||
:type types_metadata:
|
||||
list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.EnabledResourceTypePropertiesTypesMetadataItem]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'system_data': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'system_data': {'key': 'systemData', 'type': 'SystemData'},
|
||||
'cluster_extension_id': {'key': 'properties.clusterExtensionId', 'type': 'str'},
|
||||
'extension_type': {'key': 'properties.extensionType', 'type': 'str'},
|
||||
'types_metadata': {'key': 'properties.typesMetadata', 'type': '[EnabledResourceTypePropertiesTypesMetadataItem]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceType, self).__init__(**kwargs)
|
||||
self.system_data = None
|
||||
self.cluster_extension_id = kwargs.get('cluster_extension_id', None)
|
||||
self.extension_type = kwargs.get('extension_type', None)
|
||||
self.types_metadata = kwargs.get('types_metadata', None)
|
||||
|
||||
|
||||
class EnabledResourceTypePropertiesTypesMetadataItem(msrest.serialization.Model):
|
||||
"""Metadata of the Resource Type.
|
||||
|
||||
:param api_version: Api Version of Resource Type.
|
||||
:type api_version: str
|
||||
:param resource_provider_namespace: Resource Provider Namespace of Resource Type.
|
||||
:type resource_provider_namespace: str
|
||||
:param resource_type: Resource Type.
|
||||
:type resource_type: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'api_version': {'key': 'apiVersion', 'type': 'str'},
|
||||
'resource_provider_namespace': {'key': 'resourceProviderNamespace', 'type': 'str'},
|
||||
'resource_type': {'key': 'resourceType', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceTypePropertiesTypesMetadataItem, self).__init__(**kwargs)
|
||||
self.api_version = kwargs.get('api_version', None)
|
||||
self.resource_provider_namespace = kwargs.get('resource_provider_namespace', None)
|
||||
self.resource_type = kwargs.get('resource_type', None)
|
||||
|
||||
|
||||
class EnabledResourceTypesListResult(msrest.serialization.Model):
|
||||
"""List of EnabledResourceTypes definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar next_link: The URL to use for getting the next set of results.
|
||||
:vartype next_link: str
|
||||
:ivar value: The list of EnabledResourceTypes available for a customLocation.
|
||||
:vartype value:
|
||||
list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.EnabledResourceType]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'next_link': {'readonly': True},
|
||||
'value': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[EnabledResourceType]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceTypesListResult, self).__init__(**kwargs)
|
||||
self.next_link = None
|
||||
self.value = None
|
||||
|
||||
|
||||
class ErrorAdditionalInfo(msrest.serialization.Model):
|
||||
"""The resource management error additional info.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar type: The additional info type.
|
||||
:vartype type: str
|
||||
:ivar info: The additional info.
|
||||
:vartype info: object
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'type': {'readonly': True},
|
||||
'info': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'info': {'key': 'info', 'type': 'object'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorAdditionalInfo, self).__init__(**kwargs)
|
||||
self.type = None
|
||||
self.info = None
|
||||
|
||||
|
||||
class ErrorDetail(msrest.serialization.Model):
|
||||
"""The error detail.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar code: The error code.
|
||||
:vartype code: str
|
||||
:ivar message: The error message.
|
||||
:vartype message: str
|
||||
:ivar target: The error target.
|
||||
:vartype target: str
|
||||
:ivar details: The error details.
|
||||
:vartype details: list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.ErrorDetail]
|
||||
:ivar additional_info: The error additional info.
|
||||
:vartype additional_info:
|
||||
list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.ErrorAdditionalInfo]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'code': {'readonly': True},
|
||||
'message': {'readonly': True},
|
||||
'target': {'readonly': True},
|
||||
'details': {'readonly': True},
|
||||
'additional_info': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'code': {'key': 'code', 'type': 'str'},
|
||||
'message': {'key': 'message', 'type': 'str'},
|
||||
'target': {'key': 'target', 'type': 'str'},
|
||||
'details': {'key': 'details', 'type': '[ErrorDetail]'},
|
||||
'additional_info': {'key': 'additionalInfo', 'type': '[ErrorAdditionalInfo]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorDetail, self).__init__(**kwargs)
|
||||
self.code = None
|
||||
self.message = None
|
||||
self.target = None
|
||||
self.details = None
|
||||
self.additional_info = None
|
||||
|
||||
|
||||
class ErrorResponse(msrest.serialization.Model):
|
||||
"""Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
|
||||
|
||||
:param error: The error object.
|
||||
:type error: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.ErrorDetail
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'error': {'key': 'error', 'type': 'ErrorDetail'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorResponse, self).__init__(**kwargs)
|
||||
self.error = kwargs.get('error', None)
|
||||
|
||||
|
||||
class PatchableCustomLocations(msrest.serialization.Model):
|
||||
"""The Custom Locations patchable resource definition.
|
||||
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication:
|
||||
~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
Possible values include: "Kubernetes".
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'authentication': {'key': 'properties.authentication', 'type': 'CustomLocationPropertiesAuthentication'},
|
||||
'cluster_extension_ids': {'key': 'properties.clusterExtensionIds', 'type': '[str]'},
|
||||
'display_name': {'key': 'properties.displayName', 'type': 'str'},
|
||||
'host_resource_id': {'key': 'properties.hostResourceId', 'type': 'str'},
|
||||
'host_type': {'key': 'properties.hostType', 'type': 'str'},
|
||||
'namespace': {'key': 'properties.namespace', 'type': 'str'},
|
||||
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(PatchableCustomLocations, self).__init__(**kwargs)
|
||||
self.tags = kwargs.get('tags', None)
|
||||
self.authentication = kwargs.get('authentication', None)
|
||||
self.cluster_extension_ids = kwargs.get('cluster_extension_ids', None)
|
||||
self.display_name = kwargs.get('display_name', None)
|
||||
self.host_resource_id = kwargs.get('host_resource_id', None)
|
||||
self.host_type = kwargs.get('host_type', None)
|
||||
self.namespace = kwargs.get('namespace', None)
|
||||
self.provisioning_state = kwargs.get('provisioning_state', None)
|
||||
|
||||
|
||||
class ProxyResource(Resource):
|
||||
"""The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ProxyResource, self).__init__(**kwargs)
|
||||
|
||||
|
||||
class SystemData(msrest.serialization.Model):
|
||||
"""Metadata pertaining to creation and last modification of the resource.
|
||||
|
||||
:param created_by: The identity that created the resource.
|
||||
:type created_by: str
|
||||
:param created_by_type: The type of identity that created the resource. Possible values
|
||||
include: "User", "Application", "ManagedIdentity", "Key".
|
||||
:type created_by_type: str or
|
||||
~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CreatedByType
|
||||
:param created_at: The timestamp of resource creation (UTC).
|
||||
:type created_at: ~datetime.datetime
|
||||
:param last_modified_by: The identity that last modified the resource.
|
||||
:type last_modified_by: str
|
||||
:param last_modified_by_type: The type of identity that last modified the resource. Possible
|
||||
values include: "User", "Application", "ManagedIdentity", "Key".
|
||||
:type last_modified_by_type: str or
|
||||
~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CreatedByType
|
||||
:param last_modified_at: The timestamp of resource last modification (UTC).
|
||||
:type last_modified_at: ~datetime.datetime
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'created_by': {'key': 'createdBy', 'type': 'str'},
|
||||
'created_by_type': {'key': 'createdByType', 'type': 'str'},
|
||||
'created_at': {'key': 'createdAt', 'type': 'iso-8601'},
|
||||
'last_modified_by': {'key': 'lastModifiedBy', 'type': 'str'},
|
||||
'last_modified_by_type': {'key': 'lastModifiedByType', 'type': 'str'},
|
||||
'last_modified_at': {'key': 'lastModifiedAt', 'type': 'iso-8601'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(SystemData, self).__init__(**kwargs)
|
||||
self.created_by = kwargs.get('created_by', None)
|
||||
self.created_by_type = kwargs.get('created_by_type', None)
|
||||
self.created_at = kwargs.get('created_at', None)
|
||||
self.last_modified_by = kwargs.get('last_modified_by', None)
|
||||
self.last_modified_by_type = kwargs.get('last_modified_by_type', None)
|
||||
self.last_modified_at = kwargs.get('last_modified_at', None)
|
|
@ -1,695 +0,0 @@
|
|||
# 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.
|
||||
# --------------------------------------------------------------------------
|
||||
|
||||
import datetime
|
||||
from typing import Dict, List, Optional, Union
|
||||
|
||||
from azure.core.exceptions import HttpResponseError
|
||||
import msrest.serialization
|
||||
|
||||
from ._custom_locations_enums import *
|
||||
|
||||
|
||||
class Resource(msrest.serialization.Model):
|
||||
"""Common fields that are returned in the response for all Azure Resource Manager resources.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(Resource, self).__init__(**kwargs)
|
||||
self.id = None
|
||||
self.name = None
|
||||
self.type = None
|
||||
|
||||
|
||||
class TrackedResource(Resource):
|
||||
"""The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location'.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param location: Required. The geo-location where the resource lives.
|
||||
:type location: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'location': {'required': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'location': {'key': 'location', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
location: str,
|
||||
tags: Optional[Dict[str, str]] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(TrackedResource, self).__init__(**kwargs)
|
||||
self.tags = tags
|
||||
self.location = location
|
||||
|
||||
|
||||
class CustomLocation(TrackedResource):
|
||||
"""Custom Locations definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param location: Required. The geo-location where the resource lives.
|
||||
:type location: str
|
||||
:ivar system_data: Metadata pertaining to creation and last modification of the resource.
|
||||
:vartype system_data: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.SystemData
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication:
|
||||
~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
Possible values include: "Kubernetes".
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'location': {'required': True},
|
||||
'system_data': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'location': {'key': 'location', 'type': 'str'},
|
||||
'system_data': {'key': 'systemData', 'type': 'SystemData'},
|
||||
'authentication': {'key': 'properties.authentication', 'type': 'CustomLocationPropertiesAuthentication'},
|
||||
'cluster_extension_ids': {'key': 'properties.clusterExtensionIds', 'type': '[str]'},
|
||||
'display_name': {'key': 'properties.displayName', 'type': 'str'},
|
||||
'host_resource_id': {'key': 'properties.hostResourceId', 'type': 'str'},
|
||||
'host_type': {'key': 'properties.hostType', 'type': 'str'},
|
||||
'namespace': {'key': 'properties.namespace', 'type': 'str'},
|
||||
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
location: str,
|
||||
tags: Optional[Dict[str, str]] = None,
|
||||
authentication: Optional["CustomLocationPropertiesAuthentication"] = None,
|
||||
cluster_extension_ids: Optional[List[str]] = None,
|
||||
display_name: Optional[str] = None,
|
||||
host_resource_id: Optional[str] = None,
|
||||
host_type: Optional[Union[str, "HostType"]] = None,
|
||||
namespace: Optional[str] = None,
|
||||
provisioning_state: Optional[str] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocation, self).__init__(tags=tags, location=location, **kwargs)
|
||||
self.system_data = None
|
||||
self.authentication = authentication
|
||||
self.cluster_extension_ids = cluster_extension_ids
|
||||
self.display_name = display_name
|
||||
self.host_resource_id = host_resource_id
|
||||
self.host_type = host_type
|
||||
self.namespace = namespace
|
||||
self.provisioning_state = provisioning_state
|
||||
|
||||
|
||||
class CustomLocationListResult(msrest.serialization.Model):
|
||||
"""The List Custom Locations operation response.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar next_link: The URL to use for getting the next set of results.
|
||||
:vartype next_link: str
|
||||
:ivar value: The list of Custom Locations.
|
||||
:vartype value: list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocation]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'next_link': {'readonly': True},
|
||||
'value': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[CustomLocation]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationListResult, self).__init__(**kwargs)
|
||||
self.next_link = None
|
||||
self.value = None
|
||||
|
||||
|
||||
class CustomLocationOperation(msrest.serialization.Model):
|
||||
"""Custom Locations operation.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar is_data_action: Is this Operation a data plane operation.
|
||||
:vartype is_data_action: bool
|
||||
:ivar name: The name of the compute operation.
|
||||
:vartype name: str
|
||||
:ivar origin: The origin of the compute operation.
|
||||
:vartype origin: str
|
||||
:ivar description: The description of the operation.
|
||||
:vartype description: str
|
||||
:ivar operation: The display name of the compute operation.
|
||||
:vartype operation: str
|
||||
:ivar provider: The resource provider for the operation.
|
||||
:vartype provider: str
|
||||
:ivar resource: The display name of the resource the operation applies to.
|
||||
:vartype resource: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'is_data_action': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'origin': {'readonly': True},
|
||||
'description': {'readonly': True},
|
||||
'operation': {'readonly': True},
|
||||
'provider': {'readonly': True},
|
||||
'resource': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'is_data_action': {'key': 'isDataAction', 'type': 'bool'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'origin': {'key': 'origin', 'type': 'str'},
|
||||
'description': {'key': 'display.description', 'type': 'str'},
|
||||
'operation': {'key': 'display.operation', 'type': 'str'},
|
||||
'provider': {'key': 'display.provider', 'type': 'str'},
|
||||
'resource': {'key': 'display.resource', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationOperation, self).__init__(**kwargs)
|
||||
self.is_data_action = None
|
||||
self.name = None
|
||||
self.origin = None
|
||||
self.description = None
|
||||
self.operation = None
|
||||
self.provider = None
|
||||
self.resource = None
|
||||
|
||||
|
||||
class CustomLocationOperationsList(msrest.serialization.Model):
|
||||
"""Lists of Custom Locations operations.
|
||||
|
||||
All required parameters must be populated in order to send to Azure.
|
||||
|
||||
:param next_link: Next page of operations.
|
||||
:type next_link: str
|
||||
:param value: Required. Array of customLocationOperation.
|
||||
:type value:
|
||||
list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationOperation]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'value': {'required': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[CustomLocationOperation]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
value: List["CustomLocationOperation"],
|
||||
next_link: Optional[str] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationOperationsList, self).__init__(**kwargs)
|
||||
self.next_link = next_link
|
||||
self.value = value
|
||||
|
||||
|
||||
class CustomLocationPropertiesAuthentication(msrest.serialization.Model):
|
||||
"""This is optional input that contains the authentication that should be used to generate the namespace.
|
||||
|
||||
:param type: The type of the Custom Locations authentication.
|
||||
:type type: str
|
||||
:param value: The kubeconfig value.
|
||||
:type value: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
type: Optional[str] = None,
|
||||
value: Optional[str] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(CustomLocationPropertiesAuthentication, self).__init__(**kwargs)
|
||||
self.type = type
|
||||
self.value = value
|
||||
|
||||
|
||||
class EnabledResourceType(Resource):
|
||||
"""EnabledResourceType definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
:ivar system_data: Metadata pertaining to creation and last modification of the resource.
|
||||
:vartype system_data: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.SystemData
|
||||
:param cluster_extension_id: Cluster Extension ID.
|
||||
:type cluster_extension_id: str
|
||||
:param extension_type: Cluster Extension Type.
|
||||
:type extension_type: str
|
||||
:param types_metadata: Metadata of the Resource Type.
|
||||
:type types_metadata:
|
||||
list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.EnabledResourceTypePropertiesTypesMetadataItem]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
'system_data': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'system_data': {'key': 'systemData', 'type': 'SystemData'},
|
||||
'cluster_extension_id': {'key': 'properties.clusterExtensionId', 'type': 'str'},
|
||||
'extension_type': {'key': 'properties.extensionType', 'type': 'str'},
|
||||
'types_metadata': {'key': 'properties.typesMetadata', 'type': '[EnabledResourceTypePropertiesTypesMetadataItem]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
cluster_extension_id: Optional[str] = None,
|
||||
extension_type: Optional[str] = None,
|
||||
types_metadata: Optional[List["EnabledResourceTypePropertiesTypesMetadataItem"]] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceType, self).__init__(**kwargs)
|
||||
self.system_data = None
|
||||
self.cluster_extension_id = cluster_extension_id
|
||||
self.extension_type = extension_type
|
||||
self.types_metadata = types_metadata
|
||||
|
||||
|
||||
class EnabledResourceTypePropertiesTypesMetadataItem(msrest.serialization.Model):
|
||||
"""Metadata of the Resource Type.
|
||||
|
||||
:param api_version: Api Version of Resource Type.
|
||||
:type api_version: str
|
||||
:param resource_provider_namespace: Resource Provider Namespace of Resource Type.
|
||||
:type resource_provider_namespace: str
|
||||
:param resource_type: Resource Type.
|
||||
:type resource_type: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'api_version': {'key': 'apiVersion', 'type': 'str'},
|
||||
'resource_provider_namespace': {'key': 'resourceProviderNamespace', 'type': 'str'},
|
||||
'resource_type': {'key': 'resourceType', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
api_version: Optional[str] = None,
|
||||
resource_provider_namespace: Optional[str] = None,
|
||||
resource_type: Optional[str] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceTypePropertiesTypesMetadataItem, self).__init__(**kwargs)
|
||||
self.api_version = api_version
|
||||
self.resource_provider_namespace = resource_provider_namespace
|
||||
self.resource_type = resource_type
|
||||
|
||||
|
||||
class EnabledResourceTypesListResult(msrest.serialization.Model):
|
||||
"""List of EnabledResourceTypes definition.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar next_link: The URL to use for getting the next set of results.
|
||||
:vartype next_link: str
|
||||
:ivar value: The list of EnabledResourceTypes available for a customLocation.
|
||||
:vartype value:
|
||||
list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.EnabledResourceType]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'next_link': {'readonly': True},
|
||||
'value': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'next_link': {'key': 'nextLink', 'type': 'str'},
|
||||
'value': {'key': 'value', 'type': '[EnabledResourceType]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(EnabledResourceTypesListResult, self).__init__(**kwargs)
|
||||
self.next_link = None
|
||||
self.value = None
|
||||
|
||||
|
||||
class ErrorAdditionalInfo(msrest.serialization.Model):
|
||||
"""The resource management error additional info.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar type: The additional info type.
|
||||
:vartype type: str
|
||||
:ivar info: The additional info.
|
||||
:vartype info: object
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'type': {'readonly': True},
|
||||
'info': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
'info': {'key': 'info', 'type': 'object'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorAdditionalInfo, self).__init__(**kwargs)
|
||||
self.type = None
|
||||
self.info = None
|
||||
|
||||
|
||||
class ErrorDetail(msrest.serialization.Model):
|
||||
"""The error detail.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar code: The error code.
|
||||
:vartype code: str
|
||||
:ivar message: The error message.
|
||||
:vartype message: str
|
||||
:ivar target: The error target.
|
||||
:vartype target: str
|
||||
:ivar details: The error details.
|
||||
:vartype details: list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.ErrorDetail]
|
||||
:ivar additional_info: The error additional info.
|
||||
:vartype additional_info:
|
||||
list[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.ErrorAdditionalInfo]
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'code': {'readonly': True},
|
||||
'message': {'readonly': True},
|
||||
'target': {'readonly': True},
|
||||
'details': {'readonly': True},
|
||||
'additional_info': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'code': {'key': 'code', 'type': 'str'},
|
||||
'message': {'key': 'message', 'type': 'str'},
|
||||
'target': {'key': 'target', 'type': 'str'},
|
||||
'details': {'key': 'details', 'type': '[ErrorDetail]'},
|
||||
'additional_info': {'key': 'additionalInfo', 'type': '[ErrorAdditionalInfo]'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorDetail, self).__init__(**kwargs)
|
||||
self.code = None
|
||||
self.message = None
|
||||
self.target = None
|
||||
self.details = None
|
||||
self.additional_info = None
|
||||
|
||||
|
||||
class ErrorResponse(msrest.serialization.Model):
|
||||
"""Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.).
|
||||
|
||||
:param error: The error object.
|
||||
:type error: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.ErrorDetail
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'error': {'key': 'error', 'type': 'ErrorDetail'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
error: Optional["ErrorDetail"] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(ErrorResponse, self).__init__(**kwargs)
|
||||
self.error = error
|
||||
|
||||
|
||||
class PatchableCustomLocations(msrest.serialization.Model):
|
||||
"""The Custom Locations patchable resource definition.
|
||||
|
||||
:param tags: A set of tags. Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication:
|
||||
~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
Possible values include: "Kubernetes".
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'tags': {'key': 'tags', 'type': '{str}'},
|
||||
'authentication': {'key': 'properties.authentication', 'type': 'CustomLocationPropertiesAuthentication'},
|
||||
'cluster_extension_ids': {'key': 'properties.clusterExtensionIds', 'type': '[str]'},
|
||||
'display_name': {'key': 'properties.displayName', 'type': 'str'},
|
||||
'host_resource_id': {'key': 'properties.hostResourceId', 'type': 'str'},
|
||||
'host_type': {'key': 'properties.hostType', 'type': 'str'},
|
||||
'namespace': {'key': 'properties.namespace', 'type': 'str'},
|
||||
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
tags: Optional[Dict[str, str]] = None,
|
||||
authentication: Optional["CustomLocationPropertiesAuthentication"] = None,
|
||||
cluster_extension_ids: Optional[List[str]] = None,
|
||||
display_name: Optional[str] = None,
|
||||
host_resource_id: Optional[str] = None,
|
||||
host_type: Optional[Union[str, "HostType"]] = None,
|
||||
namespace: Optional[str] = None,
|
||||
provisioning_state: Optional[str] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(PatchableCustomLocations, self).__init__(**kwargs)
|
||||
self.tags = tags
|
||||
self.authentication = authentication
|
||||
self.cluster_extension_ids = cluster_extension_ids
|
||||
self.display_name = display_name
|
||||
self.host_resource_id = host_resource_id
|
||||
self.host_type = host_type
|
||||
self.namespace = namespace
|
||||
self.provisioning_state = provisioning_state
|
||||
|
||||
|
||||
class ProxyResource(Resource):
|
||||
"""The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location.
|
||||
|
||||
Variables are only populated by the server, and will be ignored when sending a request.
|
||||
|
||||
:ivar id: Fully qualified resource ID for the resource. Ex -
|
||||
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
|
||||
:vartype id: str
|
||||
:ivar name: The name of the resource.
|
||||
:vartype name: str
|
||||
:ivar type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or
|
||||
"Microsoft.Storage/storageAccounts".
|
||||
:vartype type: str
|
||||
"""
|
||||
|
||||
_validation = {
|
||||
'id': {'readonly': True},
|
||||
'name': {'readonly': True},
|
||||
'type': {'readonly': True},
|
||||
}
|
||||
|
||||
_attribute_map = {
|
||||
'id': {'key': 'id', 'type': 'str'},
|
||||
'name': {'key': 'name', 'type': 'str'},
|
||||
'type': {'key': 'type', 'type': 'str'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
**kwargs
|
||||
):
|
||||
super(ProxyResource, self).__init__(**kwargs)
|
||||
|
||||
|
||||
class SystemData(msrest.serialization.Model):
|
||||
"""Metadata pertaining to creation and last modification of the resource.
|
||||
|
||||
:param created_by: The identity that created the resource.
|
||||
:type created_by: str
|
||||
:param created_by_type: The type of identity that created the resource. Possible values
|
||||
include: "User", "Application", "ManagedIdentity", "Key".
|
||||
:type created_by_type: str or
|
||||
~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CreatedByType
|
||||
:param created_at: The timestamp of resource creation (UTC).
|
||||
:type created_at: ~datetime.datetime
|
||||
:param last_modified_by: The identity that last modified the resource.
|
||||
:type last_modified_by: str
|
||||
:param last_modified_by_type: The type of identity that last modified the resource. Possible
|
||||
values include: "User", "Application", "ManagedIdentity", "Key".
|
||||
:type last_modified_by_type: str or
|
||||
~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CreatedByType
|
||||
:param last_modified_at: The timestamp of resource last modification (UTC).
|
||||
:type last_modified_at: ~datetime.datetime
|
||||
"""
|
||||
|
||||
_attribute_map = {
|
||||
'created_by': {'key': 'createdBy', 'type': 'str'},
|
||||
'created_by_type': {'key': 'createdByType', 'type': 'str'},
|
||||
'created_at': {'key': 'createdAt', 'type': 'iso-8601'},
|
||||
'last_modified_by': {'key': 'lastModifiedBy', 'type': 'str'},
|
||||
'last_modified_by_type': {'key': 'lastModifiedByType', 'type': 'str'},
|
||||
'last_modified_at': {'key': 'lastModifiedAt', 'type': 'iso-8601'},
|
||||
}
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
*,
|
||||
created_by: Optional[str] = None,
|
||||
created_by_type: Optional[Union[str, "CreatedByType"]] = None,
|
||||
created_at: Optional[datetime.datetime] = None,
|
||||
last_modified_by: Optional[str] = None,
|
||||
last_modified_by_type: Optional[Union[str, "CreatedByType"]] = None,
|
||||
last_modified_at: Optional[datetime.datetime] = None,
|
||||
**kwargs
|
||||
):
|
||||
super(SystemData, self).__init__(**kwargs)
|
||||
self.created_by = created_by
|
||||
self.created_by_type = created_by_type
|
||||
self.created_at = created_at
|
||||
self.last_modified_by = last_modified_by
|
||||
self.last_modified_by_type = last_modified_by_type
|
||||
self.last_modified_at = last_modified_at
|
|
@ -1,13 +0,0 @@
|
|||
# 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 ._custom_locations_operations import CustomLocationsOperations
|
||||
|
||||
__all__ = [
|
||||
'CustomLocationsOperations',
|
||||
]
|
|
@ -1,742 +0,0 @@
|
|||
# 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 typing import TYPE_CHECKING
|
||||
import warnings
|
||||
|
||||
from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error
|
||||
from azure.core.paging import ItemPaged
|
||||
from azure.core.pipeline import PipelineResponse
|
||||
from azure.core.pipeline.transport import HttpRequest, HttpResponse
|
||||
from azure.core.polling import LROPoller, NoPolling, PollingMethod
|
||||
from azure.mgmt.core.exceptions import ARMErrorFormat
|
||||
from azure.mgmt.core.polling.arm_polling import ARMPolling
|
||||
|
||||
from .. import models as _models
|
||||
|
||||
if TYPE_CHECKING:
|
||||
# pylint: disable=unused-import,ungrouped-imports
|
||||
from typing import Any, Callable, Dict, Generic, Iterable, List, Optional, TypeVar, Union
|
||||
|
||||
T = TypeVar('T')
|
||||
ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]]
|
||||
|
||||
class CustomLocationsOperations(object):
|
||||
"""CustomLocationsOperations operations.
|
||||
|
||||
You should not instantiate this class directly. Instead, you should create a Client instance that
|
||||
instantiates it for you and attaches it as an attribute.
|
||||
|
||||
:ivar models: Alias to model classes used in this operation group.
|
||||
:type models: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models
|
||||
:param client: Client for service requests.
|
||||
:param config: Configuration of service client.
|
||||
:param serializer: An object model serializer.
|
||||
:param deserializer: An object model deserializer.
|
||||
"""
|
||||
|
||||
models = _models
|
||||
|
||||
def __init__(self, client, config, serializer, deserializer):
|
||||
self._client = client
|
||||
self._serialize = serializer
|
||||
self._deserialize = deserializer
|
||||
self._config = config
|
||||
|
||||
def list_operations(
|
||||
self,
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> Iterable["_models.CustomLocationOperationsList"]
|
||||
"""Lists all available Custom Locations operations.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationOperationsList or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationOperationsList]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationOperationsList"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_operations.metadata['url'] # type: ignore
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationOperationsList', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, iter(list_of_elem)
|
||||
|
||||
def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return ItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_operations.metadata = {'url': '/providers/Microsoft.ExtendedLocation/operations'} # type: ignore
|
||||
|
||||
def list_by_subscription(
|
||||
self,
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> Iterable["_models.CustomLocationListResult"]
|
||||
"""Gets a list of Custom Locations in a subscription.
|
||||
|
||||
Gets a list of Custom Locations in the specified subscription. The operation returns properties
|
||||
of each Custom Location.
|
||||
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_by_subscription.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, iter(list_of_elem)
|
||||
|
||||
def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return ItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_by_subscription.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.ExtendedLocation/customLocations'} # type: ignore
|
||||
|
||||
def list_by_resource_group(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> Iterable["_models.CustomLocationListResult"]
|
||||
"""Gets a list of Custom Locations in the specified subscription and resource group.
|
||||
|
||||
Gets a list of Custom Locations in the specified subscription and resource group. The operation
|
||||
returns properties of each Custom Location.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either CustomLocationListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocationListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_by_resource_group.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocationListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, iter(list_of_elem)
|
||||
|
||||
def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return ItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_by_resource_group.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations'} # type: ignore
|
||||
|
||||
def get(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> "_models.CustomLocation"
|
||||
"""Gets a Custom Location.
|
||||
|
||||
Gets the details of the customLocation with a specified resource group and name.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: CustomLocation, or the result of cls(response)
|
||||
:rtype: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocation
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self.get.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def _create_or_update_initial(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
parameters, # type: "_models.CustomLocation"
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> "_models.CustomLocation"
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
content_type = kwargs.pop("content_type", "application/json")
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self._create_or_update_initial.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str')
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
body_content_kwargs = {} # type: Dict[str, Any]
|
||||
body_content = self._serialize.body(parameters, 'CustomLocation')
|
||||
body_content_kwargs['content'] = body_content
|
||||
request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs)
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200, 201]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
if response.status_code == 200:
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if response.status_code == 201:
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
_create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def begin_create_or_update(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
parameters, # type: "_models.CustomLocation"
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> LROPoller["_models.CustomLocation"]
|
||||
"""Creates or updates a Custom Location.
|
||||
|
||||
Creates or updates a Custom Location in the specified Subscription and Resource Group.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:param parameters: Parameters supplied to create or update a Custom Location.
|
||||
:type parameters: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocation
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: True for ARMPolling, False for no polling, or a
|
||||
polling object for personal polling strategy
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either CustomLocation or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocation]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
"""
|
||||
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
lro_delay = kwargs.pop(
|
||||
'polling_interval',
|
||||
self._config.polling_interval
|
||||
)
|
||||
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
|
||||
if cont_token is None:
|
||||
raw_result = self._create_or_update_initial(
|
||||
resource_group_name=resource_group_name,
|
||||
resource_name=resource_name,
|
||||
parameters=parameters,
|
||||
cls=lambda x,y,z: x,
|
||||
**kwargs
|
||||
)
|
||||
|
||||
kwargs.pop('error_map', None)
|
||||
kwargs.pop('content_type', None)
|
||||
|
||||
def get_long_running_output(pipeline_response):
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
return deserialized
|
||||
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
|
||||
if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs)
|
||||
elif polling is False: polling_method = NoPolling()
|
||||
else: polling_method = polling
|
||||
if cont_token:
|
||||
return LROPoller.from_continuation_token(
|
||||
polling_method=polling_method,
|
||||
continuation_token=cont_token,
|
||||
client=self._client,
|
||||
deserialization_callback=get_long_running_output
|
||||
)
|
||||
else:
|
||||
return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
|
||||
begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def _delete_initial(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> None
|
||||
cls = kwargs.pop('cls', None) # type: ClsType[None]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self._delete_initial.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
request = self._client.delete(url, query_parameters, header_parameters)
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [202, 204]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, None, {})
|
||||
|
||||
_delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def begin_delete(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> LROPoller[None]
|
||||
"""Deletes a Custom Location.
|
||||
|
||||
Deletes the Custom Location with the specified Resource Name, Resource Group, and Subscription
|
||||
Id.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:keyword str continuation_token: A continuation token to restart a poller from a saved state.
|
||||
:keyword polling: True for ARMPolling, False for no polling, or a
|
||||
polling object for personal polling strategy
|
||||
:paramtype polling: bool or ~azure.core.polling.PollingMethod
|
||||
:keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present.
|
||||
:return: An instance of LROPoller that returns either None or the result of cls(response)
|
||||
:rtype: ~azure.core.polling.LROPoller[None]
|
||||
:raises ~azure.core.exceptions.HttpResponseError:
|
||||
"""
|
||||
polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod]
|
||||
cls = kwargs.pop('cls', None) # type: ClsType[None]
|
||||
lro_delay = kwargs.pop(
|
||||
'polling_interval',
|
||||
self._config.polling_interval
|
||||
)
|
||||
cont_token = kwargs.pop('continuation_token', None) # type: Optional[str]
|
||||
if cont_token is None:
|
||||
raw_result = self._delete_initial(
|
||||
resource_group_name=resource_group_name,
|
||||
resource_name=resource_name,
|
||||
cls=lambda x,y,z: x,
|
||||
**kwargs
|
||||
)
|
||||
|
||||
kwargs.pop('error_map', None)
|
||||
kwargs.pop('content_type', None)
|
||||
|
||||
def get_long_running_output(pipeline_response):
|
||||
if cls:
|
||||
return cls(pipeline_response, None, {})
|
||||
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
|
||||
if polling is True: polling_method = ARMPolling(lro_delay, lro_options={'final-state-via': 'azure-async-operation'}, path_format_arguments=path_format_arguments, **kwargs)
|
||||
elif polling is False: polling_method = NoPolling()
|
||||
else: polling_method = polling
|
||||
if cont_token:
|
||||
return LROPoller.from_continuation_token(
|
||||
polling_method=polling_method,
|
||||
continuation_token=cont_token,
|
||||
client=self._client,
|
||||
deserialization_callback=get_long_running_output
|
||||
)
|
||||
else:
|
||||
return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
|
||||
begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def update(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
tags=None, # type: Optional[Dict[str, str]]
|
||||
authentication=None, # type: Optional["_models.CustomLocationPropertiesAuthentication"]
|
||||
cluster_extension_ids=None, # type: Optional[List[str]]
|
||||
display_name=None, # type: Optional[str]
|
||||
host_resource_id=None, # type: Optional[str]
|
||||
host_type=None, # type: Optional[Union[str, "_models.HostType"]]
|
||||
namespace=None, # type: Optional[str]
|
||||
provisioning_state=None, # type: Optional[str]
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> "_models.CustomLocation"
|
||||
"""Updates a Custom Location.
|
||||
|
||||
Updates a Custom Location with the specified Resource Name in the specified Resource Group and
|
||||
Subscription.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:param tags: Resource tags.
|
||||
:type tags: dict[str, str]
|
||||
:param authentication: This is optional input that contains the authentication that should be
|
||||
used to generate the namespace.
|
||||
:type authentication: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocationPropertiesAuthentication
|
||||
:param cluster_extension_ids: Contains the reference to the add-on that contains charts to
|
||||
deploy CRDs and operators.
|
||||
:type cluster_extension_ids: list[str]
|
||||
:param display_name: Display name for the Custom Locations location.
|
||||
:type display_name: str
|
||||
:param host_resource_id: Connected Cluster or AKS Cluster. The Custom Locations RP will perform
|
||||
a checkAccess API for listAdminCredentials permissions.
|
||||
:type host_resource_id: str
|
||||
:param host_type: Type of host the Custom Locations is referencing (Kubernetes, etc...).
|
||||
:type host_type: str or ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.HostType
|
||||
:param namespace: Kubernetes namespace that will be created on the specified cluster.
|
||||
:type namespace: str
|
||||
:param provisioning_state: Provisioning State for the Custom Location.
|
||||
:type provisioning_state: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: CustomLocation, or the result of cls(response)
|
||||
:rtype: ~azure.mgmt.extendedlocation.v2021_03_15_preview.models.CustomLocation
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.CustomLocation"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
|
||||
_parameters = _models.PatchableCustomLocations(tags=tags, authentication=authentication, cluster_extension_ids=cluster_extension_ids, display_name=display_name, host_resource_id=host_resource_id, host_type=host_type, namespace=namespace, provisioning_state=provisioning_state)
|
||||
api_version = "2021-03-15-preview"
|
||||
content_type = kwargs.pop("content_type", "application/json")
|
||||
accept = "application/json"
|
||||
|
||||
# Construct URL
|
||||
url = self.update.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str')
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
body_content_kwargs = {} # type: Dict[str, Any]
|
||||
body_content = self._serialize.body(_parameters, 'PatchableCustomLocations')
|
||||
body_content_kwargs['content'] = body_content
|
||||
request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs)
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
deserialized = self._deserialize('CustomLocation', pipeline_response)
|
||||
|
||||
if cls:
|
||||
return cls(pipeline_response, deserialized, {})
|
||||
|
||||
return deserialized
|
||||
update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}'} # type: ignore
|
||||
|
||||
def list_enabled_resource_types(
|
||||
self,
|
||||
resource_group_name, # type: str
|
||||
resource_name, # type: str
|
||||
**kwargs # type: Any
|
||||
):
|
||||
# type: (...) -> Iterable["_models.EnabledResourceTypesListResult"]
|
||||
"""Gets the list of Enabled Resource Types.
|
||||
|
||||
Gets the list of the Enabled Resource Types.
|
||||
|
||||
:param resource_group_name: The name of the resource group. The name is case insensitive.
|
||||
:type resource_group_name: str
|
||||
:param resource_name: Custom Locations name.
|
||||
:type resource_name: str
|
||||
:keyword callable cls: A custom type or function that will be passed the direct response
|
||||
:return: An iterator like instance of either EnabledResourceTypesListResult or the result of cls(response)
|
||||
:rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.extendedlocation.v2021_03_15_preview.models.EnabledResourceTypesListResult]
|
||||
:raises: ~azure.core.exceptions.HttpResponseError
|
||||
"""
|
||||
cls = kwargs.pop('cls', None) # type: ClsType["_models.EnabledResourceTypesListResult"]
|
||||
error_map = {
|
||||
401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError
|
||||
}
|
||||
error_map.update(kwargs.pop('error_map', {}))
|
||||
api_version = "2021-03-15-preview"
|
||||
accept = "application/json"
|
||||
|
||||
def prepare_request(next_link=None):
|
||||
# Construct headers
|
||||
header_parameters = {} # type: Dict[str, Any]
|
||||
header_parameters['Accept'] = self._serialize.header("accept", accept, 'str')
|
||||
|
||||
if not next_link:
|
||||
# Construct URL
|
||||
url = self.list_enabled_resource_types.metadata['url'] # type: ignore
|
||||
path_format_arguments = {
|
||||
'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str', min_length=1),
|
||||
'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
|
||||
'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'),
|
||||
}
|
||||
url = self._client.format_url(url, **path_format_arguments)
|
||||
# Construct parameters
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str')
|
||||
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
else:
|
||||
url = next_link
|
||||
query_parameters = {} # type: Dict[str, Any]
|
||||
request = self._client.get(url, query_parameters, header_parameters)
|
||||
return request
|
||||
|
||||
def extract_data(pipeline_response):
|
||||
deserialized = self._deserialize('EnabledResourceTypesListResult', pipeline_response)
|
||||
list_of_elem = deserialized.value
|
||||
if cls:
|
||||
list_of_elem = cls(list_of_elem)
|
||||
return deserialized.next_link or None, iter(list_of_elem)
|
||||
|
||||
def get_next(next_link=None):
|
||||
request = prepare_request(next_link)
|
||||
|
||||
pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs)
|
||||
response = pipeline_response.http_response
|
||||
|
||||
if response.status_code not in [200]:
|
||||
error = self._deserialize(_models.ErrorResponse, response)
|
||||
map_error(status_code=response.status_code, response=response, error_map=error_map)
|
||||
raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat)
|
||||
|
||||
return pipeline_response
|
||||
|
||||
return ItemPaged(
|
||||
get_next, extract_data
|
||||
)
|
||||
list_enabled_resource_types.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ExtendedLocation/customLocations/{resourceName}/enabledResourceTypes'} # type: ignore
|
|
@ -1 +0,0 @@
|
|||
# Marker file for PEP 561.
|
|
@ -1,8 +0,0 @@
|
|||
[packaging]
|
||||
package_name = "azure-mgmt-extendedlocation"
|
||||
package_nspkg = "azure-mgmt-nspkg"
|
||||
package_pprint_name = "Extendedlocation Management"
|
||||
package_doc_id = ""
|
||||
is_stable = false
|
||||
is_arm = true
|
||||
need_msrestazure = true
|
|
@ -1,2 +0,0 @@
|
|||
[bdist_wheel]
|
||||
universal=1
|
|
@ -1,91 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
#-------------------------------------------------------------------------
|
||||
# Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
# Licensed under the MIT License. See License.txt in the project root for
|
||||
# license information.
|
||||
#--------------------------------------------------------------------------
|
||||
|
||||
import re
|
||||
import os.path
|
||||
from io import open
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
# Change the PACKAGE_NAME only to change folder and different name
|
||||
PACKAGE_NAME = "azure-mgmt-extendedlocation"
|
||||
PACKAGE_PPRINT_NAME = "Extendedlocation Management"
|
||||
|
||||
# a-b-c => a/b/c
|
||||
package_folder_path = PACKAGE_NAME.replace('-', '/')
|
||||
# a-b-c => a.b.c
|
||||
namespace_name = PACKAGE_NAME.replace('-', '.')
|
||||
|
||||
# azure v0.x is not compatible with this package
|
||||
# azure v0.x used to have a __version__ attribute (newer versions don't)
|
||||
try:
|
||||
import azure
|
||||
try:
|
||||
ver = azure.__version__
|
||||
raise Exception(
|
||||
'This package is incompatible with azure=={}. '.format(ver) +
|
||||
'Uninstall it with "pip uninstall azure".'
|
||||
)
|
||||
except AttributeError:
|
||||
pass
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
# Version extraction inspired from 'requests'
|
||||
with open(os.path.join(package_folder_path, 'version.py')
|
||||
if os.path.exists(os.path.join(package_folder_path, 'version.py'))
|
||||
else os.path.join(package_folder_path, '_version.py'), 'r') as fd:
|
||||
version = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]',
|
||||
fd.read(), re.MULTILINE).group(1)
|
||||
|
||||
if not version:
|
||||
raise RuntimeError('Cannot find version information')
|
||||
|
||||
with open('README.md', encoding='utf-8') as f:
|
||||
readme = f.read()
|
||||
with open('CHANGELOG.md', encoding='utf-8') as f:
|
||||
changelog = f.read()
|
||||
|
||||
setup(
|
||||
name=PACKAGE_NAME,
|
||||
version=version,
|
||||
description='Microsoft Azure {} Client Library for Python'.format(PACKAGE_PPRINT_NAME),
|
||||
long_description=readme + '\n\n' + changelog,
|
||||
long_description_content_type='text/markdown',
|
||||
license='MIT License',
|
||||
author='Microsoft Corporation',
|
||||
author_email='azpysdkhelp@microsoft.com',
|
||||
url='https://github.com/Azure/azure-sdk-for-python',
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
],
|
||||
zip_safe=False,
|
||||
packages=find_packages(exclude=[
|
||||
'tests',
|
||||
# Exclude packages that will be covered by PEP420 or nspkg
|
||||
'azure',
|
||||
'azure.mgmt',
|
||||
]),
|
||||
install_requires=[
|
||||
'msrest>=0.5.0',
|
||||
'azure-mgmt-core>=1.2.0,<2.0.0',
|
||||
'azure-common~=1.1',
|
||||
],
|
||||
extras_require={
|
||||
":python_version<'3.0'": ['azure-mgmt-nspkg'],
|
||||
}
|
||||
)
|
|
@ -1,35 +0,0 @@
|
|||
# DO NOT EDIT THIS FILE
|
||||
# This file is generated automatically and any changes will be lost.
|
||||
|
||||
trigger:
|
||||
branches:
|
||||
include:
|
||||
- master
|
||||
- main
|
||||
- hotfix/*
|
||||
- release/*
|
||||
- restapi*
|
||||
paths:
|
||||
include:
|
||||
- sdk/extendedlocation/
|
||||
|
||||
pr:
|
||||
branches:
|
||||
include:
|
||||
- master
|
||||
- main
|
||||
- feature/*
|
||||
- hotfix/*
|
||||
- release/*
|
||||
- restapi*
|
||||
paths:
|
||||
include:
|
||||
- sdk/extendedlocation/
|
||||
|
||||
extends:
|
||||
template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml
|
||||
parameters:
|
||||
ServiceDirectory: extendedlocation
|
||||
Artifacts:
|
||||
- name: azure-mgmt-extendedlocation
|
||||
safeName: azuremgmtextendedlocation
|
Загрузка…
Ссылка в новой задаче