From c12f4dbe4e7a6921ba0b2e4e5df610cbf816f4cf Mon Sep 17 00:00:00 2001 From: 00Kai0 Date: Tue, 15 Sep 2020 17:01:25 +0800 Subject: [PATCH 1/4] generate appconfiguration track2 ga version --- .../azure-mgmt-appconfiguration/CHANGELOG.md | 29 + .../azure/mgmt/appconfiguration/__init__.py | 2 +- .../_app_configuration_management_client.py | 1 + .../mgmt/appconfiguration/_configuration.py | 7 +- .../azure/mgmt/appconfiguration/_version.py | 2 +- .../mgmt/appconfiguration/aio/__init__.py | 2 +- ...> _app_configuration_management_client.py} | 19 +- ...nfiguration_async.py => _configuration.py} | 7 +- .../__init__.py | 8 +- .../_configuration_stores_operations.py} | 170 +++--- .../_operations.py} | 38 +- ...rivate_endpoint_connections_operations.py} | 72 +-- .../_private_link_resources_operations.py} | 33 +- .../mgmt/appconfiguration/models/__init__.py | 2 + ...p_configuration_management_client_enums.py | 72 ++- .../mgmt/appconfiguration/models/_models.py | 19 +- .../appconfiguration/models/_models_py3.py | 21 +- .../_configuration_stores_operations.py | 158 +++--- .../operations/_operations.py | 38 +- ...private_endpoint_connections_operations.py | 64 ++- .../_private_link_resources_operations.py | 33 +- ...ppconfiguration.test_appconfiguration.yaml | 454 ++++++--------- ...test_appconfiguration_list_key_values.yaml | 96 ++-- ...iguration_async.test_appconfiguration.yaml | 519 ++++++++---------- ...test_appconfiguration_list_key_values.yaml | 106 ++-- .../tests/test_cli_mgmt_appconfiguration.py | 4 +- 26 files changed, 964 insertions(+), 1012 deletions(-) rename sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/{_app_configuration_management_client_async.py => _app_configuration_management_client.py} (86%) rename sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/{_configuration_async.py => _configuration.py} (90%) rename sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/{operations_async => operations}/__init__.py (66%) rename sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/{operations_async/_configuration_stores_operations_async.py => operations/_configuration_stores_operations.py} (88%) rename sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/{operations_async/_operations_async.py => operations/_operations.py} (87%) rename sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/{operations_async/_private_endpoint_connections_operations_async.py => operations/_private_endpoint_connections_operations.py} (90%) rename sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/{operations_async/_private_link_resources_operations_async.py => operations/_private_link_resources_operations.py} (90%) diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md b/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md index b7d8c55cc3d9..cd0b1588cf34 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md @@ -1,5 +1,34 @@ # Release History +## 1.0.0 (2020-09-15) + +**Features** + + - Model ConfigurationStoreUpdateParameters has a new parameter properties + - Added operation ConfigurationStoresOperations.create + - Added operation ConfigurationStoresOperations.update + - Added operation ConfigurationStoresOperations.delete + +**Breaking changes** + + - Operation Operations.list has a new signature + - Operation ConfigurationStoresOperations.list_keys has a new signature + - Operation ConfigurationStoresOperations.list_by_resource_group has a new signature + - Operation ConfigurationStoresOperations.list has a new signature + - Operation ConfigurationStoresOperations.get has a new signature + - Model ConfigurationStore no longer has parameter private_endpoint_connections + - Model ConfigurationStore no longer has parameter public_network_access + - Model ConfigurationStore no longer has parameter encryption + - Model ConfigurationStoreUpdateParameters no longer has parameter encryption + - Operation ConfigurationStoresOperations.list_key_value has a new signature + - Operation ConfigurationStoresOperations.regenerate_key has a new signature + - Operation Operations.check_name_availability has a new signature + - Removed operation ConfigurationStoresOperations.begin_update + - Removed operation ConfigurationStoresOperations.begin_delete + - Removed operation ConfigurationStoresOperations.begin_create + - Removed operation group PrivateLinkResourcesOperations + - Removed operation group PrivateEndpointConnectionsOperations + ## 1.0.0b1 (2020-06-17) This is beta preview version. diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/__init__.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/__init__.py index 405488c0cf2e..3b2345ad6d27 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/__init__.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/__init__.py @@ -13,7 +13,7 @@ __all__ = ['AppConfigurationManagementClient'] try: - from ._patch import patch_sdk + from ._patch import patch_sdk # type: ignore patch_sdk() except ImportError: pass diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_app_configuration_management_client.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_app_configuration_management_client.py index 5f5af79f458f..517eb0b81d71 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_app_configuration_management_client.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_app_configuration_management_client.py @@ -59,6 +59,7 @@ def __init__( 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.configuration_stores = ConfigurationStoresOperations( diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_configuration.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_configuration.py index 5eb57d1e1aa6..606c3fdbe7c5 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_configuration.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_configuration.py @@ -10,6 +10,7 @@ from azure.core.configuration import Configuration from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMHttpLoggingPolicy from ._version import VERSION @@ -47,9 +48,8 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2019-11-01-preview" - self.credential_scopes = ['https://management.azure.com/.default'] - self.credential_scopes.extend(kwargs.pop('credential_scopes', [])) + self.api_version = "2020-06-01" + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-appconfiguration/{}'.format(VERSION)) self._configure(**kwargs) @@ -62,6 +62,7 @@ def _configure( 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) diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_version.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_version.py index e5754a47ce68..645cd18c85d4 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_version.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_version.py @@ -6,4 +6,4 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -VERSION = "1.0.0b1" +VERSION = "16.0.0" diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/__init__.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/__init__.py index 552f45d61269..c247eefbacdd 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/__init__.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/__init__.py @@ -6,5 +6,5 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from ._app_configuration_management_client_async import AppConfigurationManagementClient +from ._app_configuration_management_client import AppConfigurationManagementClient __all__ = ['AppConfigurationManagementClient'] diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_app_configuration_management_client_async.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_app_configuration_management_client.py similarity index 86% rename from sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_app_configuration_management_client_async.py rename to sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_app_configuration_management_client.py index 0547082a6865..ba53cbbe22ee 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_app_configuration_management_client_async.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_app_configuration_management_client.py @@ -15,11 +15,11 @@ # pylint: disable=unused-import,ungrouped-imports from azure.core.credentials_async import AsyncTokenCredential -from ._configuration_async import AppConfigurationManagementClientConfiguration -from .operations_async import ConfigurationStoresOperations -from .operations_async import Operations -from .operations_async import PrivateEndpointConnectionsOperations -from .operations_async import PrivateLinkResourcesOperations +from ._configuration import AppConfigurationManagementClientConfiguration +from .operations import ConfigurationStoresOperations +from .operations import Operations +from .operations import PrivateEndpointConnectionsOperations +from .operations import PrivateLinkResourcesOperations from .. import models @@ -27,13 +27,13 @@ class AppConfigurationManagementClient(object): """AppConfigurationManagementClient. :ivar configuration_stores: ConfigurationStoresOperations operations - :vartype configuration_stores: app_configuration_management_client.aio.operations_async.ConfigurationStoresOperations + :vartype configuration_stores: app_configuration_management_client.aio.operations.ConfigurationStoresOperations :ivar operations: Operations operations - :vartype operations: app_configuration_management_client.aio.operations_async.Operations + :vartype operations: app_configuration_management_client.aio.operations.Operations :ivar private_endpoint_connections: PrivateEndpointConnectionsOperations operations - :vartype private_endpoint_connections: app_configuration_management_client.aio.operations_async.PrivateEndpointConnectionsOperations + :vartype private_endpoint_connections: app_configuration_management_client.aio.operations.PrivateEndpointConnectionsOperations :ivar private_link_resources: PrivateLinkResourcesOperations operations - :vartype private_link_resources: app_configuration_management_client.aio.operations_async.PrivateLinkResourcesOperations + :vartype private_link_resources: app_configuration_management_client.aio.operations.PrivateLinkResourcesOperations :param credential: Credential needed for the client to connect to Azure. :type credential: ~azure.core.credentials_async.AsyncTokenCredential :param subscription_id: The Microsoft Azure subscription ID. @@ -56,6 +56,7 @@ def __init__( 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.configuration_stores = ConfigurationStoresOperations( diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_configuration_async.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_configuration.py similarity index 90% rename from sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_configuration_async.py rename to sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_configuration.py index cde6efa24eba..a380a0b58b5f 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_configuration_async.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/_configuration.py @@ -10,6 +10,7 @@ from azure.core.configuration import Configuration from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMHttpLoggingPolicy from .._version import VERSION @@ -44,9 +45,8 @@ def __init__( self.credential = credential self.subscription_id = subscription_id - self.api_version = "2019-11-01-preview" - self.credential_scopes = ['https://management.azure.com/.default'] - self.credential_scopes.extend(kwargs.pop('credential_scopes', [])) + self.api_version = "2020-06-01" + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) kwargs.setdefault('sdk_moniker', 'mgmt-appconfiguration/{}'.format(VERSION)) self._configure(**kwargs) @@ -58,6 +58,7 @@ def _configure( 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) diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/__init__.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/__init__.py similarity index 66% rename from sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/__init__.py rename to sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/__init__.py index 96ed1313e5fb..934a0920b836 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/__init__.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/__init__.py @@ -6,10 +6,10 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from ._configuration_stores_operations_async import ConfigurationStoresOperations -from ._operations_async import Operations -from ._private_endpoint_connections_operations_async import PrivateEndpointConnectionsOperations -from ._private_link_resources_operations_async import PrivateLinkResourcesOperations +from ._configuration_stores_operations import ConfigurationStoresOperations +from ._operations import Operations +from ._private_endpoint_connections_operations import PrivateEndpointConnectionsOperations +from ._private_link_resources_operations import PrivateLinkResourcesOperations __all__ = [ 'ConfigurationStoresOperations', diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_configuration_stores_operations_async.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_configuration_stores_operations.py similarity index 88% rename from sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_configuration_stores_operations_async.py rename to sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_configuration_stores_operations.py index 370de91c916d..dcf1d1351ce1 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_configuration_stores_operations_async.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_configuration_stores_operations.py @@ -9,7 +9,7 @@ import warnings from azure.core.async_paging import AsyncItemPaged, AsyncList -from azure.core.exceptions import HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +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 @@ -51,9 +51,9 @@ def list( """Lists the configuration stores for a given subscription. :param skip_token: A skip token is used to continue retrieving items after an operation returns - a partial result. If a previous response contains a nextLink element, the value of the nextLink - element will include a skipToken parameter that specifies a starting point to use for - subsequent calls. + a partial result. If a previous response contains a nextLink element, the value of the nextLink + element will include a skipToken parameter that specifies a starting point to use for + subsequent calls. :type skip_token: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ConfigurationStoreListResult or the result of cls(response) @@ -61,11 +61,18 @@ def list( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.ConfigurationStoreListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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.metadata['url'] # type: ignore @@ -79,15 +86,11 @@ def prepare_request(next_link=None): if skip_token is not None: query_parameters['$skipToken'] = self._serialize.query("skip_token", skip_token, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link query_parameters = {} # type: Dict[str, Any] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request async def extract_data(pipeline_response): @@ -124,12 +127,12 @@ def list_by_resource_group( """Lists the configuration stores for a given resource group. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param skip_token: A skip token is used to continue retrieving items after an operation returns - a partial result. If a previous response contains a nextLink element, the value of the nextLink - element will include a skipToken parameter that specifies a starting point to use for - subsequent calls. + a partial result. If a previous response contains a nextLink element, the value of the nextLink + element will include a skipToken parameter that specifies a starting point to use for + subsequent calls. :type skip_token: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ConfigurationStoreListResult or the result of cls(response) @@ -137,11 +140,18 @@ def list_by_resource_group( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.ConfigurationStoreListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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 @@ -156,15 +166,11 @@ def prepare_request(next_link=None): if skip_token is not None: query_parameters['$skipToken'] = self._serialize.query("skip_token", skip_token, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link query_parameters = {} # type: Dict[str, Any] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request async def extract_data(pipeline_response): @@ -211,9 +217,12 @@ async def get( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.ConfigurationStore"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -230,9 +239,8 @@ async def get( # Construct headers header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request 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 @@ -258,10 +266,13 @@ async def _create_initial( **kwargs ) -> "models.ConfigurationStore": cls = kwargs.pop('cls', None) # type: ClsType["models.ConfigurationStore"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self._create_initial.metadata['url'] # type: ignore @@ -279,14 +290,12 @@ async def _create_initial( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(config_store_creation_parameters, 'ConfigurationStore') 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 @@ -295,7 +304,6 @@ async def _create_initial( error = self._deserialize(models.Error, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None if response.status_code == 200: deserialized = self._deserialize('ConfigurationStore', pipeline_response) @@ -314,11 +322,11 @@ async def begin_create( config_store_name: str, config_store_creation_parameters: "models.ConfigurationStore", **kwargs - ) -> "models.ConfigurationStore": + ) -> AsyncLROPoller["models.ConfigurationStore"]: """Creates a configuration store with the specified parameters. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -330,8 +338,8 @@ async def begin_create( 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: ConfigurationStore, or the result of cls(response) - :rtype: ~app_configuration_management_client.models.ConfigurationStore + :return: An instance of AsyncLROPoller that returns either ConfigurationStore or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~app_configuration_management_client.models.ConfigurationStore] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -381,9 +389,12 @@ async def _delete_initial( **kwargs ) -> None: cls = kwargs.pop('cls', None) # type: ClsType[None] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + accept = "application/json" # Construct URL url = self._delete_initial.metadata['url'] # type: ignore @@ -400,8 +411,8 @@ async def _delete_initial( # Construct headers header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request 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 @@ -421,11 +432,11 @@ async def begin_delete( resource_group_name: str, config_store_name: str, **kwargs - ) -> None: + ) -> AsyncLROPoller[None]: """Deletes a configuration store. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -435,8 +446,8 @@ async def begin_delete( 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: None, or the result of cls(response) - :rtype: None + :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] @@ -483,10 +494,13 @@ async def _update_initial( **kwargs ) -> "models.ConfigurationStore": cls = kwargs.pop('cls', None) # type: ClsType["models.ConfigurationStore"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self._update_initial.metadata['url'] # type: ignore @@ -504,14 +518,12 @@ async def _update_initial( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(config_store_update_parameters, 'ConfigurationStoreUpdateParameters') 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 @@ -520,7 +532,6 @@ async def _update_initial( error = self._deserialize(models.Error, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None if response.status_code == 200: deserialized = self._deserialize('ConfigurationStore', pipeline_response) @@ -539,11 +550,11 @@ async def begin_update( config_store_name: str, config_store_update_parameters: "models.ConfigurationStoreUpdateParameters", **kwargs - ) -> "models.ConfigurationStore": + ) -> AsyncLROPoller["models.ConfigurationStore"]: """Updates a configuration store with the specified parameters. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -555,8 +566,8 @@ async def begin_update( 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: ConfigurationStore, or the result of cls(response) - :rtype: ~app_configuration_management_client.models.ConfigurationStore + :return: An instance of AsyncLROPoller that returns either ConfigurationStore or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~app_configuration_management_client.models.ConfigurationStore] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -609,14 +620,14 @@ def list_keys( """Lists the access key for the specified configuration store. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str :param skip_token: A skip token is used to continue retrieving items after an operation returns - a partial result. If a previous response contains a nextLink element, the value of the nextLink - element will include a skipToken parameter that specifies a starting point to use for - subsequent calls. + a partial result. If a previous response contains a nextLink element, the value of the nextLink + element will include a skipToken parameter that specifies a starting point to use for + subsequent calls. :type skip_token: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ApiKeyListResult or the result of cls(response) @@ -624,11 +635,18 @@ def list_keys( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.ApiKeyListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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_keys.metadata['url'] # type: ignore @@ -644,15 +662,11 @@ def prepare_request(next_link=None): if skip_token is not None: query_parameters['$skipToken'] = self._serialize.query("skip_token", skip_token, 'str') + request = self._client.post(url, query_parameters, header_parameters) else: url = next_link query_parameters = {} # type: Dict[str, Any] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request async def extract_data(pipeline_response): @@ -702,10 +716,13 @@ async def regenerate_key( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.ApiKey"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self.regenerate_key.metadata['url'] # type: ignore @@ -723,14 +740,12 @@ async def regenerate_key( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(regenerate_key_parameters, 'RegenerateKeyParameters') body_content_kwargs['content'] = body_content request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response @@ -769,10 +784,13 @@ async def list_key_value( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.KeyValue"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self.list_key_value.metadata['url'] # type: ignore @@ -790,14 +808,12 @@ async def list_key_value( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(list_key_value_parameters, 'ListKeyValueParameters') body_content_kwargs['content'] = body_content request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_operations_async.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_operations.py similarity index 87% rename from sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_operations_async.py rename to sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_operations.py index a506909a9f92..c6ec8c357f6c 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_operations_async.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_operations.py @@ -9,7 +9,7 @@ import warnings from azure.core.async_paging import AsyncItemPaged, AsyncList -from azure.core.exceptions import HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +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.mgmt.core.exceptions import ARMErrorFormat @@ -57,10 +57,13 @@ async def check_name_availability( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.NameAvailabilityStatus"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self.check_name_availability.metadata['url'] # type: ignore @@ -76,14 +79,12 @@ async def check_name_availability( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(check_name_availability_parameters, 'CheckNameAvailabilityParameters') body_content_kwargs['content'] = body_content request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) - pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response @@ -108,9 +109,9 @@ def list( """Lists the operations available from this provider. :param skip_token: A skip token is used to continue retrieving items after an operation returns - a partial result. If a previous response contains a nextLink element, the value of the nextLink - element will include a skipToken parameter that specifies a starting point to use for - subsequent calls. + a partial result. If a previous response contains a nextLink element, the value of the nextLink + element will include a skipToken parameter that specifies a starting point to use for + subsequent calls. :type skip_token: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OperationDefinitionListResult or the result of cls(response) @@ -118,11 +119,18 @@ def list( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.OperationDefinitionListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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.metadata['url'] # type: ignore @@ -132,15 +140,11 @@ def prepare_request(next_link=None): if skip_token is not None: query_parameters['$skipToken'] = self._serialize.query("skip_token", skip_token, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link query_parameters = {} # type: Dict[str, Any] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request async def extract_data(pipeline_response): diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_private_endpoint_connections_operations_async.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_private_endpoint_connections_operations.py similarity index 90% rename from sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_private_endpoint_connections_operations_async.py rename to sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_private_endpoint_connections_operations.py index 3ef13f029fb6..ce23398c3f49 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_private_endpoint_connections_operations_async.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_private_endpoint_connections_operations.py @@ -9,7 +9,7 @@ import warnings from azure.core.async_paging import AsyncItemPaged, AsyncList -from azure.core.exceptions import HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +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 @@ -52,7 +52,7 @@ def list_by_configuration_store( """Lists all private endpoint connections for a configuration store. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -62,11 +62,18 @@ def list_by_configuration_store( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnectionListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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_configuration_store.metadata['url'] # type: ignore @@ -80,15 +87,11 @@ def prepare_request(next_link=None): 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] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request async def extract_data(pipeline_response): @@ -138,9 +141,12 @@ async def get( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnection"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -158,9 +164,8 @@ async def get( # Construct headers header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request 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 @@ -187,10 +192,13 @@ async def _create_or_update_initial( **kwargs ) -> "models.PrivateEndpointConnection": cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnection"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self._create_or_update_initial.metadata['url'] # type: ignore @@ -209,14 +217,12 @@ async def _create_or_update_initial( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(private_endpoint_connection, 'PrivateEndpointConnection') 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 @@ -225,7 +231,6 @@ async def _create_or_update_initial( error = self._deserialize(models.Error, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None if response.status_code == 200: deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) @@ -245,12 +250,12 @@ async def begin_create_or_update( private_endpoint_connection_name: str, private_endpoint_connection: "models.PrivateEndpointConnection", **kwargs - ) -> "models.PrivateEndpointConnection": + ) -> AsyncLROPoller["models.PrivateEndpointConnection"]: """Update the state of the specified private endpoint connection associated with the configuration - store. + store. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -264,8 +269,8 @@ async def begin_create_or_update( 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: PrivateEndpointConnection, or the result of cls(response) - :rtype: ~app_configuration_management_client.models.PrivateEndpointConnection + :return: An instance of AsyncLROPoller that returns either PrivateEndpointConnection or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~app_configuration_management_client.models.PrivateEndpointConnection] :raises ~azure.core.exceptions.HttpResponseError: """ polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] @@ -317,9 +322,12 @@ async def _delete_initial( **kwargs ) -> None: cls = kwargs.pop('cls', None) # type: ClsType[None] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + accept = "application/json" # Construct URL url = self._delete_initial.metadata['url'] # type: ignore @@ -337,8 +345,8 @@ async def _delete_initial( # Construct headers header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request 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 @@ -359,11 +367,11 @@ async def begin_delete( config_store_name: str, private_endpoint_connection_name: str, **kwargs - ) -> None: + ) -> AsyncLROPoller[None]: """Deletes a private endpoint connection. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -375,8 +383,8 @@ async def begin_delete( 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: None, or the result of cls(response) - :rtype: None + :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] diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_private_link_resources_operations_async.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_private_link_resources_operations.py similarity index 90% rename from sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_private_link_resources_operations_async.py rename to sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_private_link_resources_operations.py index 488d8dad289c..d2b6120f26af 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations_async/_private_link_resources_operations_async.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/aio/operations/_private_link_resources_operations.py @@ -9,7 +9,7 @@ import warnings from azure.core.async_paging import AsyncItemPaged, AsyncList -from azure.core.exceptions import HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +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.mgmt.core.exceptions import ARMErrorFormat @@ -50,7 +50,7 @@ def list_by_configuration_store( """Gets the private link resources that need to be created for a configuration store. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -60,11 +60,18 @@ def list_by_configuration_store( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateLinkResourceListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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_configuration_store.metadata['url'] # type: ignore @@ -78,15 +85,11 @@ def prepare_request(next_link=None): 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] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request async def extract_data(pipeline_response): @@ -136,9 +139,12 @@ async def get( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateLinkResource"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -156,9 +162,8 @@ async def get( # Construct headers header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request 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 diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/__init__.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/__init__.py index 8b353db33550..a9c87685eb6f 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/__init__.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/__init__.py @@ -65,6 +65,7 @@ from ._app_configuration_management_client_enums import ( ActionsRequired, + ConfigurationResourceType, ConnectionStatus, IdentityType, ProvisioningState, @@ -100,6 +101,7 @@ 'Sku', 'UserIdentity', 'ActionsRequired', + 'ConfigurationResourceType', 'ConnectionStatus', 'IdentityType', 'ProvisioningState', diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_app_configuration_management_client_enums.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_app_configuration_management_client_enums.py index 449939342327..a5230dec6ff2 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_app_configuration_management_client_enums.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_app_configuration_management_client_enums.py @@ -6,50 +6,74 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from enum import Enum +from enum import Enum, EnumMeta +from six import with_metaclass -class ActionsRequired(str, Enum): +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 ActionsRequired(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Any action that is required beyond basic workflow (approve/ reject/ disconnect) """ - none = "None" - recreate = "Recreate" + NONE = "None" + RECREATE = "Recreate" + +class ConfigurationResourceType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """The resource type to check for name availability. + """ + + MICROSOFT_APP_CONFIGURATION_CONFIGURATION_STORES = "Microsoft.AppConfiguration/configurationStores" -class ConnectionStatus(str, Enum): +class ConnectionStatus(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The private link service connection status. """ - pending = "Pending" - approved = "Approved" - rejected = "Rejected" - disconnected = "Disconnected" + PENDING = "Pending" + APPROVED = "Approved" + REJECTED = "Rejected" + DISCONNECTED = "Disconnected" -class IdentityType(str, Enum): +class IdentityType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities. """ - none = "None" - system_assigned = "SystemAssigned" - user_assigned = "UserAssigned" - system_assigned_user_assigned = "SystemAssigned, UserAssigned" + NONE = "None" + SYSTEM_ASSIGNED = "SystemAssigned" + USER_ASSIGNED = "UserAssigned" + SYSTEM_ASSIGNED_USER_ASSIGNED = "SystemAssigned, UserAssigned" -class ProvisioningState(str, Enum): +class ProvisioningState(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """The provisioning state of the configuration store. """ - creating = "Creating" - updating = "Updating" - deleting = "Deleting" - succeeded = "Succeeded" - failed = "Failed" - canceled = "Canceled" + CREATING = "Creating" + UPDATING = "Updating" + DELETING = "Deleting" + SUCCEEDED = "Succeeded" + FAILED = "Failed" + CANCELED = "Canceled" -class PublicNetworkAccess(str, Enum): +class PublicNetworkAccess(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Control permission for data plane traffic coming from public networks while private endpoint is enabled. """ - enabled = "Enabled" - disabled = "Disabled" + ENABLED = "Enabled" + DISABLED = "Disabled" diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_models.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_models.py index 9ec6ba956e76..6301e3516c2e 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_models.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_models.py @@ -87,20 +87,18 @@ def __init__( class CheckNameAvailabilityParameters(msrest.serialization.Model): """Parameters used for checking whether a resource name is available. - 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. :param name: Required. The name to check for availability. :type name: str - :ivar type: Required. The resource type to check for name availability. Default value: - "Microsoft.AppConfiguration/configurationStores". - :vartype type: str + :param type: Required. The resource type to check for name availability. Possible values + include: "Microsoft.AppConfiguration/configurationStores". + :type type: str or ~app_configuration_management_client.models.ConfigurationResourceType """ _validation = { 'name': {'required': True}, - 'type': {'required': True, 'constant': True}, + 'type': {'required': True}, } _attribute_map = { @@ -108,14 +106,13 @@ class CheckNameAvailabilityParameters(msrest.serialization.Model): 'type': {'key': 'type', 'type': 'str'}, } - type = "Microsoft.AppConfiguration/configurationStores" - def __init__( self, **kwargs ): super(CheckNameAvailabilityParameters, self).__init__(**kwargs) self.name = kwargs['name'] + self.type = kwargs['type'] class Resource(msrest.serialization.Model): @@ -284,6 +281,10 @@ class ConfigurationStoreUpdateParameters(msrest.serialization.Model): :type tags: dict[str, str] :param encryption: The encryption settings of the configuration store. :type encryption: ~app_configuration_management_client.models.EncryptionProperties + :param public_network_access: Control permission for data plane traffic coming from public + networks while private endpoint is enabled. Possible values include: "Enabled", "Disabled". + :type public_network_access: str or + ~app_configuration_management_client.models.PublicNetworkAccess """ _attribute_map = { @@ -291,6 +292,7 @@ class ConfigurationStoreUpdateParameters(msrest.serialization.Model): 'sku': {'key': 'sku', 'type': 'Sku'}, 'tags': {'key': 'tags', 'type': '{str}'}, 'encryption': {'key': 'properties.encryption', 'type': 'EncryptionProperties'}, + 'public_network_access': {'key': 'properties.publicNetworkAccess', 'type': 'str'}, } def __init__( @@ -302,6 +304,7 @@ def __init__( self.sku = kwargs.get('sku', None) self.tags = kwargs.get('tags', None) self.encryption = kwargs.get('encryption', None) + self.public_network_access = kwargs.get('public_network_access', None) class EncryptionProperties(msrest.serialization.Model): diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_models_py3.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_models_py3.py index 3155e3d530bb..afb3e9ba8063 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_models_py3.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/models/_models_py3.py @@ -94,20 +94,18 @@ def __init__( class CheckNameAvailabilityParameters(msrest.serialization.Model): """Parameters used for checking whether a resource name is available. - 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. :param name: Required. The name to check for availability. :type name: str - :ivar type: Required. The resource type to check for name availability. Default value: - "Microsoft.AppConfiguration/configurationStores". - :vartype type: str + :param type: Required. The resource type to check for name availability. Possible values + include: "Microsoft.AppConfiguration/configurationStores". + :type type: str or ~app_configuration_management_client.models.ConfigurationResourceType """ _validation = { 'name': {'required': True}, - 'type': {'required': True, 'constant': True}, + 'type': {'required': True}, } _attribute_map = { @@ -115,16 +113,16 @@ class CheckNameAvailabilityParameters(msrest.serialization.Model): 'type': {'key': 'type', 'type': 'str'}, } - type = "Microsoft.AppConfiguration/configurationStores" - def __init__( self, *, name: str, + type: Union[str, "ConfigurationResourceType"], **kwargs ): super(CheckNameAvailabilityParameters, self).__init__(**kwargs) self.name = name + self.type = type class Resource(msrest.serialization.Model): @@ -306,6 +304,10 @@ class ConfigurationStoreUpdateParameters(msrest.serialization.Model): :type tags: dict[str, str] :param encryption: The encryption settings of the configuration store. :type encryption: ~app_configuration_management_client.models.EncryptionProperties + :param public_network_access: Control permission for data plane traffic coming from public + networks while private endpoint is enabled. Possible values include: "Enabled", "Disabled". + :type public_network_access: str or + ~app_configuration_management_client.models.PublicNetworkAccess """ _attribute_map = { @@ -313,6 +315,7 @@ class ConfigurationStoreUpdateParameters(msrest.serialization.Model): 'sku': {'key': 'sku', 'type': 'Sku'}, 'tags': {'key': 'tags', 'type': '{str}'}, 'encryption': {'key': 'properties.encryption', 'type': 'EncryptionProperties'}, + 'public_network_access': {'key': 'properties.publicNetworkAccess', 'type': 'str'}, } def __init__( @@ -322,6 +325,7 @@ def __init__( sku: Optional["Sku"] = None, tags: Optional[Dict[str, str]] = None, encryption: Optional["EncryptionProperties"] = None, + public_network_access: Optional[Union[str, "PublicNetworkAccess"]] = None, **kwargs ): super(ConfigurationStoreUpdateParameters, self).__init__(**kwargs) @@ -329,6 +333,7 @@ def __init__( self.sku = sku self.tags = tags self.encryption = encryption + self.public_network_access = public_network_access class EncryptionProperties(msrest.serialization.Model): diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_configuration_stores_operations.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_configuration_stores_operations.py index 145f4969edc3..6002c4330264 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_configuration_stores_operations.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_configuration_stores_operations.py @@ -8,7 +8,7 @@ from typing import TYPE_CHECKING import warnings -from azure.core.exceptions import HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +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 @@ -56,9 +56,9 @@ def list( """Lists the configuration stores for a given subscription. :param skip_token: A skip token is used to continue retrieving items after an operation returns - a partial result. If a previous response contains a nextLink element, the value of the nextLink - element will include a skipToken parameter that specifies a starting point to use for - subsequent calls. + a partial result. If a previous response contains a nextLink element, the value of the nextLink + element will include a skipToken parameter that specifies a starting point to use for + subsequent calls. :type skip_token: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ConfigurationStoreListResult or the result of cls(response) @@ -66,11 +66,18 @@ def list( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.ConfigurationStoreListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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.metadata['url'] # type: ignore @@ -84,15 +91,11 @@ def prepare_request(next_link=None): if skip_token is not None: query_parameters['$skipToken'] = self._serialize.query("skip_token", skip_token, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link query_parameters = {} # type: Dict[str, Any] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request def extract_data(pipeline_response): @@ -130,12 +133,12 @@ def list_by_resource_group( """Lists the configuration stores for a given resource group. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param skip_token: A skip token is used to continue retrieving items after an operation returns - a partial result. If a previous response contains a nextLink element, the value of the nextLink - element will include a skipToken parameter that specifies a starting point to use for - subsequent calls. + a partial result. If a previous response contains a nextLink element, the value of the nextLink + element will include a skipToken parameter that specifies a starting point to use for + subsequent calls. :type skip_token: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ConfigurationStoreListResult or the result of cls(response) @@ -143,11 +146,18 @@ def list_by_resource_group( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.ConfigurationStoreListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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 @@ -162,15 +172,11 @@ def prepare_request(next_link=None): if skip_token is not None: query_parameters['$skipToken'] = self._serialize.query("skip_token", skip_token, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link query_parameters = {} # type: Dict[str, Any] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request def extract_data(pipeline_response): @@ -218,9 +224,12 @@ def get( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.ConfigurationStore"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -237,9 +246,8 @@ def get( # Construct headers header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request request = self._client.get(url, query_parameters, header_parameters) pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response @@ -266,10 +274,13 @@ def _create_initial( ): # type: (...) -> "models.ConfigurationStore" cls = kwargs.pop('cls', None) # type: ClsType["models.ConfigurationStore"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self._create_initial.metadata['url'] # type: ignore @@ -287,14 +298,12 @@ def _create_initial( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(config_store_creation_parameters, 'ConfigurationStore') 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 @@ -303,7 +312,6 @@ def _create_initial( error = self._deserialize(models.Error, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None if response.status_code == 200: deserialized = self._deserialize('ConfigurationStore', pipeline_response) @@ -323,11 +331,11 @@ def begin_create( config_store_creation_parameters, # type: "models.ConfigurationStore" **kwargs # type: Any ): - # type: (...) -> LROPoller + # type: (...) -> LROPoller["models.ConfigurationStore"] """Creates a configuration store with the specified parameters. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -391,9 +399,12 @@ def _delete_initial( ): # type: (...) -> None cls = kwargs.pop('cls', None) # type: ClsType[None] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + accept = "application/json" # Construct URL url = self._delete_initial.metadata['url'] # type: ignore @@ -410,8 +421,8 @@ def _delete_initial( # Construct headers header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request request = self._client.delete(url, query_parameters, header_parameters) pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response @@ -432,11 +443,11 @@ def begin_delete( config_store_name, # type: str **kwargs # type: Any ): - # type: (...) -> LROPoller + # type: (...) -> LROPoller[None] """Deletes a configuration store. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -495,10 +506,13 @@ def _update_initial( ): # type: (...) -> "models.ConfigurationStore" cls = kwargs.pop('cls', None) # type: ClsType["models.ConfigurationStore"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self._update_initial.metadata['url'] # type: ignore @@ -516,14 +530,12 @@ def _update_initial( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(config_store_update_parameters, 'ConfigurationStoreUpdateParameters') 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 @@ -532,7 +544,6 @@ def _update_initial( error = self._deserialize(models.Error, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None if response.status_code == 200: deserialized = self._deserialize('ConfigurationStore', pipeline_response) @@ -552,11 +563,11 @@ def begin_update( config_store_update_parameters, # type: "models.ConfigurationStoreUpdateParameters" **kwargs # type: Any ): - # type: (...) -> LROPoller + # type: (...) -> LROPoller["models.ConfigurationStore"] """Updates a configuration store with the specified parameters. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -623,14 +634,14 @@ def list_keys( """Lists the access key for the specified configuration store. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str :param skip_token: A skip token is used to continue retrieving items after an operation returns - a partial result. If a previous response contains a nextLink element, the value of the nextLink - element will include a skipToken parameter that specifies a starting point to use for - subsequent calls. + a partial result. If a previous response contains a nextLink element, the value of the nextLink + element will include a skipToken parameter that specifies a starting point to use for + subsequent calls. :type skip_token: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either ApiKeyListResult or the result of cls(response) @@ -638,11 +649,18 @@ def list_keys( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.ApiKeyListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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_keys.metadata['url'] # type: ignore @@ -658,15 +676,11 @@ def prepare_request(next_link=None): if skip_token is not None: query_parameters['$skipToken'] = self._serialize.query("skip_token", skip_token, 'str') + request = self._client.post(url, query_parameters, header_parameters) else: url = next_link query_parameters = {} # type: Dict[str, Any] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request def extract_data(pipeline_response): @@ -717,10 +731,13 @@ def regenerate_key( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.ApiKey"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self.regenerate_key.metadata['url'] # type: ignore @@ -738,14 +755,12 @@ def regenerate_key( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(regenerate_key_parameters, 'RegenerateKeyParameters') body_content_kwargs['content'] = body_content request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response @@ -785,10 +800,13 @@ def list_key_value( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.KeyValue"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self.list_key_value.metadata['url'] # type: ignore @@ -806,14 +824,12 @@ def list_key_value( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(list_key_value_parameters, 'ListKeyValueParameters') body_content_kwargs['content'] = body_content request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_operations.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_operations.py index ca9147a51697..c5f4919fdae3 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_operations.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_operations.py @@ -8,7 +8,7 @@ from typing import TYPE_CHECKING import warnings -from azure.core.exceptions import HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +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 @@ -62,10 +62,13 @@ def check_name_availability( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.NameAvailabilityStatus"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self.check_name_availability.metadata['url'] # type: ignore @@ -81,14 +84,12 @@ def check_name_availability( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(check_name_availability_parameters, 'CheckNameAvailabilityParameters') body_content_kwargs['content'] = body_content request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) - pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response @@ -114,9 +115,9 @@ def list( """Lists the operations available from this provider. :param skip_token: A skip token is used to continue retrieving items after an operation returns - a partial result. If a previous response contains a nextLink element, the value of the nextLink - element will include a skipToken parameter that specifies a starting point to use for - subsequent calls. + a partial result. If a previous response contains a nextLink element, the value of the nextLink + element will include a skipToken parameter that specifies a starting point to use for + subsequent calls. :type skip_token: str :keyword callable cls: A custom type or function that will be passed the direct response :return: An iterator like instance of either OperationDefinitionListResult or the result of cls(response) @@ -124,11 +125,18 @@ def list( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.OperationDefinitionListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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.metadata['url'] # type: ignore @@ -138,15 +146,11 @@ def prepare_request(next_link=None): if skip_token is not None: query_parameters['$skipToken'] = self._serialize.query("skip_token", skip_token, 'str') + request = self._client.get(url, query_parameters, header_parameters) else: url = next_link query_parameters = {} # type: Dict[str, Any] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request def extract_data(pipeline_response): diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_private_endpoint_connections_operations.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_private_endpoint_connections_operations.py index 48f646c5dd56..9cd77a91583b 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_private_endpoint_connections_operations.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_private_endpoint_connections_operations.py @@ -8,7 +8,7 @@ from typing import TYPE_CHECKING import warnings -from azure.core.exceptions import HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +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 @@ -57,7 +57,7 @@ def list_by_configuration_store( """Lists all private endpoint connections for a configuration store. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -67,11 +67,18 @@ def list_by_configuration_store( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnectionListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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_configuration_store.metadata['url'] # type: ignore @@ -85,15 +92,11 @@ def prepare_request(next_link=None): 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] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request def extract_data(pipeline_response): @@ -144,9 +147,12 @@ def get( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnection"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -164,9 +170,8 @@ def get( # Construct headers header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request request = self._client.get(url, query_parameters, header_parameters) pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response @@ -194,10 +199,13 @@ def _create_or_update_initial( ): # type: (...) -> "models.PrivateEndpointConnection" cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateEndpointConnection"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" # Construct URL url = self._create_or_update_initial.metadata['url'] # type: ignore @@ -216,14 +224,12 @@ def _create_or_update_initial( # Construct headers header_parameters = {} # type: Dict[str, Any] header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request body_content_kwargs = {} # type: Dict[str, Any] body_content = self._serialize.body(private_endpoint_connection, 'PrivateEndpointConnection') 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 @@ -232,7 +238,6 @@ def _create_or_update_initial( error = self._deserialize(models.Error, response) raise HttpResponseError(response=response, model=error, error_format=ARMErrorFormat) - deserialized = None if response.status_code == 200: deserialized = self._deserialize('PrivateEndpointConnection', pipeline_response) @@ -253,12 +258,12 @@ def begin_create_or_update( private_endpoint_connection, # type: "models.PrivateEndpointConnection" **kwargs # type: Any ): - # type: (...) -> LROPoller + # type: (...) -> LROPoller["models.PrivateEndpointConnection"] """Update the state of the specified private endpoint connection associated with the configuration - store. + store. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -326,9 +331,12 @@ def _delete_initial( ): # type: (...) -> None cls = kwargs.pop('cls', None) # type: ClsType[None] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + accept = "application/json" # Construct URL url = self._delete_initial.metadata['url'] # type: ignore @@ -346,8 +354,8 @@ def _delete_initial( # Construct headers header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request request = self._client.delete(url, query_parameters, header_parameters) pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response @@ -369,11 +377,11 @@ def begin_delete( private_endpoint_connection_name, # type: str **kwargs # type: Any ): - # type: (...) -> LROPoller + # type: (...) -> LROPoller[None] """Deletes a private endpoint connection. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_private_link_resources_operations.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_private_link_resources_operations.py index 20feb4554a19..319f6f2d9fef 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_private_link_resources_operations.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/operations/_private_link_resources_operations.py @@ -8,7 +8,7 @@ from typing import TYPE_CHECKING import warnings -from azure.core.exceptions import HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +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 @@ -55,7 +55,7 @@ def list_by_configuration_store( """Gets the private link resources that need to be created for a configuration store. :param resource_group_name: The name of the resource group to which the container registry - belongs. + belongs. :type resource_group_name: str :param config_store_name: The name of the configuration store. :type config_store_name: str @@ -65,11 +65,18 @@ def list_by_configuration_store( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateLinkResourceListResult"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + 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_configuration_store.metadata['url'] # type: ignore @@ -83,15 +90,11 @@ def prepare_request(next_link=None): 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] - # Construct headers - header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' - - # Construct and send request - request = self._client.get(url, query_parameters, header_parameters) + request = self._client.get(url, query_parameters, header_parameters) return request def extract_data(pipeline_response): @@ -142,9 +145,12 @@ def get( :raises: ~azure.core.exceptions.HttpResponseError """ cls = kwargs.pop('cls', None) # type: ClsType["models.PrivateLinkResource"] - error_map = {404: ResourceNotFoundError, 409: ResourceExistsError} + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } error_map.update(kwargs.pop('error_map', {})) - api_version = "2019-11-01-preview" + api_version = "2020-06-01" + accept = "application/json" # Construct URL url = self.get.metadata['url'] # type: ignore @@ -162,9 +168,8 @@ def get( # Construct headers header_parameters = {} # type: Dict[str, Any] - header_parameters['Accept'] = 'application/json' + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') - # Construct and send request request = self._client.get(url, query_parameters, header_parameters) pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) response = pipeline_response.http_response diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration.test_appconfiguration.yaml b/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration.test_appconfiguration.yaml index 025634a03c87..fb2d0f0d5bf0 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration.test_appconfiguration.yaml +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration.test_appconfiguration.yaml @@ -14,35 +14,35 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2020-05-19T08:55:20.8429316+00:00","endpoint":null,"encryption":null,"privateEndpointConnections":null},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a","name":"configuration39c8158a","location":"westus","tags":{}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2020-09-14T08:13:40.6877203+00:00","endpoint":null,"encryption":null,"privateEndpointConnections":null},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a","name":"configuration39c8158a","location":"westus","tags":{}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/119bc219-ad5c-fd45-2f73-4a720afbb783?api-version=2019-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/e4e30ade-46bf-1756-826e-3943db403541?api-version=2020-06-01 cache-control: - no-cache content-length: - - '508' + - '523' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:55:21 GMT + - Mon, 14 Sep 2020 08:13:42 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -56,15 +56,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/119bc219-ad5c-fd45-2f73-4a720afbb783?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/e4e30ade-46bf-1756-826e-3943db403541?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/119bc219-ad5c-fd45-2f73-4a720afbb783","name":"119bc219-ad5c-fd45-2f73-4a720afbb783","status":"Succeeded","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/e4e30ade-46bf-1756-826e-3943db403541","name":"e4e30ade-46bf-1756-826e-3943db403541","status":"Succeeded","error":null}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/119bc219-ad5c-fd45-2f73-4a720afbb783?api-version=2019-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/e4e30ade-46bf-1756-826e-3943db403541?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -72,13 +72,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:55:31 GMT + - Mon, 14 Sep 2020 08:13:52 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -100,29 +100,29 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-05-19T08:55:22+00:00","endpoint":"https://configuration39c8158a.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":null},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a","name":"configuration39c8158a","location":"westus","tags":{"my_tag":"myTagValue"}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-09-14T08:13:42+00:00","endpoint":"https://configuration39c8158a.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":null},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a","name":"configuration39c8158a","location":"westus","tags":{"my_tag":"myTagValue"}}' headers: cache-control: - no-cache content-length: - - '599' + - '614' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:55:31 GMT + - Mon, 14 Sep 2020 08:13:52 GMT etag: - - W/"9e00330e-0000-0700-0000-5ec39ef90000" + - W/"7d00eebc-0000-0700-0000-5f5f26350000" expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -150,18 +150,18 @@ interactions: - application/json; charset=utf-8 User-Agent: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"vnetname\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname\"\ - ,\r\n \"etag\": \"W/\\\"86513df7-ac82-4df2-8311-c25fd80eaf5b\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"cee7bfd2-85d2-448c-8a5b-02c915580018\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"a403b02f-9bab-4ff9-94c2-c3503d0a1bef\",\r\n \"\ + \ \"resourceGuid\": \"15968288-5763-4190-9aeb-6555c74153e1\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -170,15 +170,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/56d3e719-81e0-4179-8209-0f925887a165?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ec94dabf-e25a-40c2-8f24-d704287768e9?api-version=2019-09-01 cache-control: - no-cache content-length: - - '688' + - '703' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:55:36 GMT + - Mon, 14 Sep 2020 08:14:03 GMT expires: - '-1' pragma: @@ -191,7 +191,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bc0de5bc-2ec3-476c-9920-79cb6d11d007 + - a00e3f64-9a34-4ed9-a722-aede646b5929 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -208,9 +208,9 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/56d3e719-81e0-4179-8209-0f925887a165?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/ec94dabf-e25a-40c2-8f24-d704287768e9?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -222,7 +222,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:55:41 GMT + - Mon, 14 Sep 2020 08:14:07 GMT expires: - '-1' pragma: @@ -239,7 +239,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d2e35b9c-a8de-47ad-a7b9-4794c81b42e3 + - 2078a0c3-c61f-4ad1-82ca-14058362caa0 status: code: 200 message: OK @@ -254,16 +254,16 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"vnetname\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname\"\ - ,\r\n \"etag\": \"W/\\\"47e79ef6-2e46-4d2b-b400-32609e426921\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"1b5e58f0-5205-4512-8440-6daa622a9a1c\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"a403b02f-9bab-4ff9-94c2-c3503d0a1bef\",\r\n \"\ + \ \"resourceGuid\": \"15968288-5763-4190-9aeb-6555c74153e1\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -272,13 +272,13 @@ interactions: cache-control: - no-cache content-length: - - '689' + - '704' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:55:41 GMT + - Mon, 14 Sep 2020 08:14:07 GMT etag: - - W/"47e79ef6-2e46-4d2b-b400-32609e426921" + - W/"1b5e58f0-5205-4512-8440-6daa622a9a1c" expires: - '-1' pragma: @@ -295,7 +295,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1d524e82-b179-4a65-907d-1423aa436964 + - 9edcc03a-2878-4ec6-9a47-6ca72a4a88fc status: code: 200 message: OK @@ -315,30 +315,30 @@ interactions: - application/json; charset=utf-8 User-Agent: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnetname?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnetname?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"subnetname\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnetname\"\ - ,\r\n \"etag\": \"W/\\\"1610ca65-dd2f-4d7f-8009-d90d99a5e00c\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"4200e534-801f-424f-9dff-bd0ac2b59815\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\ \r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1d62bc94-eb64-489b-bb0e-b7255cd5d7ad?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6a303308-5ced-4ba5-aa40-7d986564fb4a?api-version=2019-09-01 cache-control: - no-cache content-length: - - '581' + - '596' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:55:42 GMT + - Mon, 14 Sep 2020 08:14:08 GMT expires: - '-1' pragma: @@ -351,7 +351,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 91a2e132-f8a1-4b0b-bd6b-bd33e4f45df9 + - c6cafb7f-dc7b-4989-9dd3-420339555422 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -368,9 +368,9 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1d62bc94-eb64-489b-bb0e-b7255cd5d7ad?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6a303308-5ced-4ba5-aa40-7d986564fb4a?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -382,7 +382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:55:45 GMT + - Mon, 14 Sep 2020 08:14:12 GMT expires: - '-1' pragma: @@ -399,7 +399,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - da8c2646-074d-40b1-a8db-b44eabd8f2fe + - 54517a4a-c84a-4353-96ef-ba195b5e4053 status: code: 200 message: OK @@ -414,13 +414,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnetname?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnetname?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"subnetname\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnetname\"\ - ,\r\n \"etag\": \"W/\\\"271a082e-cc7a-40a9-b839-0841be084881\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"56b0620e-b0ab-4256-b468-638a30c1eaba\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\ @@ -429,13 +429,13 @@ interactions: cache-control: - no-cache content-length: - - '582' + - '597' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:55:46 GMT + - Mon, 14 Sep 2020 08:14:13 GMT etag: - - W/"271a082e-cc7a-40a9-b839-0841be084881" + - W/"56b0620e-b0ab-4256-b468-638a30c1eaba" expires: - '-1' pragma: @@ -452,14 +452,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d791addb-86a9-4dbe-847c-130c5723f3d1 + - 3c5a3720-0904-4f11-9e8a-79851c468510 status: code: 200 message: OK - request: - body: 'b''{"location": "eastus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnetname"}, + body: 'b''b\''{"location": "eastus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnetname"}, "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a", - "groupIds": ["configurationStores"]}, "name": "myconnection"}]}}''' + "groupIds": ["configurationStores"]}, "name": "myconnection"}]}}\''''' headers: Accept: - application/json @@ -468,26 +468,26 @@ interactions: Connection: - keep-alive Content-Length: - - '607' + - '637' Content-Type: - application/json; charset=utf-8 User-Agent: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"endpointxyz\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz\"\ - ,\r\n \"etag\": \"W/\\\"145d252d-4cbb-4277-a1e3-bf4377630630\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"3a1f8b80-adeb-4190-91ce-e3ec2b5d69fe\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"\ eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"resourceGuid\": \"cad9e8d5-cc13-423a-95a2-480a52784f2e\",\r\n \ + ,\r\n \"resourceGuid\": \"1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0\",\r\n \ \ \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"\ myconnection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz/privateLinkServiceConnections/myconnection\"\ - ,\r\n \"etag\": \"W/\\\"145d252d-4cbb-4277-a1e3-bf4377630630\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3a1f8b80-adeb-4190-91ce-e3ec2b5d69fe\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a\"\ ,\r\n \"groupIds\": [\r\n \"configurationStores\"\r\n\ @@ -498,21 +498,21 @@ interactions: \r\n }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\ \n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnetname\"\ \r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/endpointxyz.nic.067e04db-8917-4519-9444-41212c719df2\"\ - \r\n }\r\n ],\r\n \"customDnsConfigs\": []\r\n }\r\n}" + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/endpointxyz.nic.d241c8bb-ca48-4b25-8c26-cf72dab14267\"\ + \r\n }\r\n ]\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/33669c52-9882-424d-9259-c30540b1f9cb?api-version=2020-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7c7779ec-8a46-4f48-b674-4d7557fe0a25?api-version=2019-09-01 cache-control: - no-cache content-length: - - '2157' + - '2203' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:55:50 GMT + - Mon, 14 Sep 2020 08:14:18 GMT expires: - '-1' pragma: @@ -525,7 +525,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a9db9842-c53b-4653-b2cf-bdad22f01bf5 + - 995dbe2a-a7c7-4ea7-ad86-4ca06c187b9f x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -542,101 +542,9 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/33669c52-9882-424d-9259-c30540b1f9cb?api-version=2020-04-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 May 2020 08:56:01 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f012810b-6800-4612-ab8f-881b8e6f3167 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/33669c52-9882-424d-9259-c30540b1f9cb?api-version=2020-04-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 May 2020 08:56:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - daa0acdb-6188-46d8-9e80-5933f89a1588 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/33669c52-9882-424d-9259-c30540b1f9cb?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7c7779ec-8a46-4f48-b674-4d7557fe0a25?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -648,7 +556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:22 GMT + - Mon, 14 Sep 2020 08:14:29 GMT expires: - '-1' pragma: @@ -665,7 +573,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 596b470b-cd1f-4b78-a227-01df251a9c12 + - 3841fcaf-eea6-48bf-a304-cc2f58a667dd status: code: 200 message: OK @@ -680,19 +588,19 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/10.2.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz?api-version=2020-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz?api-version=2019-09-01 response: body: string: "{\r\n \"name\": \"endpointxyz\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz\"\ - ,\r\n \"etag\": \"W/\\\"65ff1f5f-85ae-44d9-9445-0a53b4f35f34\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"3d547491-b696-4e9d-960b-2624824d3df3\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"\ eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"cad9e8d5-cc13-423a-95a2-480a52784f2e\",\r\n \ + ,\r\n \"resourceGuid\": \"1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0\",\r\n \ \ \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"\ myconnection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz/privateLinkServiceConnections/myconnection\"\ - ,\r\n \"etag\": \"W/\\\"65ff1f5f-85ae-44d9-9445-0a53b4f35f34\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3d547491-b696-4e9d-960b-2624824d3df3\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a\"\ ,\r\n \"groupIds\": [\r\n \"configurationStores\"\r\n\ @@ -703,21 +611,19 @@ interactions: \r\n }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\ \n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnetname\"\ \r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/endpointxyz.nic.067e04db-8917-4519-9444-41212c719df2\"\ - \r\n }\r\n ],\r\n \"customDnsConfigs\": [\r\n {\r\n \ - \ \"fqdn\": \"configuration39c8158a.azconfig.io\",\r\n \"ipAddresses\"\ - : [\r\n \"10.0.0.4\"\r\n ]\r\n }\r\n ]\r\n }\r\n}" + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/endpointxyz.nic.d241c8bb-ca48-4b25-8c26-cf72dab14267\"\ + \r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2308' + - '2217' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:22 GMT + - Mon, 14 Sep 2020 08:14:30 GMT etag: - - W/"65ff1f5f-85ae-44d9-9445-0a53b4f35f34" + - W/"3d547491-b696-4e9d-960b-2624824d3df3" expires: - '-1' pragma: @@ -734,7 +640,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4e7d9468-2c5a-42bf-84e3-e5e3a91f5d51 + - 76552d54-f39d-478d-9249-0d8dbd525f8d status: code: 200 message: OK @@ -748,29 +654,29 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-05-19T08:55:22+00:00","endpoint":"https://configuration39c8158a.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e","name":"endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a","name":"configuration39c8158a","location":"westus","tags":{"my_tag":"myTagValue"}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-09-14T08:13:42+00:00","endpoint":"https://configuration39c8158a.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","name":"endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a","name":"configuration39c8158a","location":"westus","tags":{"my_tag":"myTagValue"}}' headers: cache-control: - no-cache content-length: - - '1401' + - '1446' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:22 GMT + - Mon, 14 Sep 2020 08:14:31 GMT etag: - - W/"9e00e814-0000-0700-0000-5ec39f320000" + - W/"7d001abd-0000-0700-0000-5f5f26600000" expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -783,8 +689,8 @@ interactions: code: 200 message: OK - request: - body: 'b''{"properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"}, - "privateLinkServiceConnectionState": {"status": "Approved", "description": "Auto-Approved"}}}''' + body: 'b''b\''{"properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": "Auto-Approved"}}}\''''' headers: Accept: - application/json @@ -793,39 +699,39 @@ interactions: Connection: - keep-alive Content-Length: - - '324' + - '339' Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Updating","privateEndpoint":null,"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e","name":"endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e","location":null,"tags":null}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Updating","privateEndpoint":null,"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","name":"endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","location":null,"tags":null}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/30c88986-5fae-086f-3bd3-8d7ad6cbc8d0?api-version=2019-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/1906b641-9eca-56f4-9d78-d717faae3f76?api-version=2020-06-01 cache-control: - no-cache content-length: - - '617' + - '632' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:23 GMT + - Mon, 14 Sep 2020 08:14:31 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -839,15 +745,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/30c88986-5fae-086f-3bd3-8d7ad6cbc8d0?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/1906b641-9eca-56f4-9d78-d717faae3f76?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/30c88986-5fae-086f-3bd3-8d7ad6cbc8d0","name":"30c88986-5fae-086f-3bd3-8d7ad6cbc8d0","status":"Succeeded","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/1906b641-9eca-56f4-9d78-d717faae3f76","name":"1906b641-9eca-56f4-9d78-d717faae3f76","status":"Succeeded","error":null}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/30c88986-5fae-086f-3bd3-8d7ad6cbc8d0?api-version=2019-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/1906b641-9eca-56f4-9d78-d717faae3f76?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -855,13 +761,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:33 GMT + - Mon, 14 Sep 2020 08:14:41 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -883,27 +789,27 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e","name":null,"location":"westus","tags":null}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","name":"endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","location":"westus","tags":null}' headers: cache-control: - no-cache content-length: - - '765' + - '841' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:33 GMT + - Mon, 14 Sep 2020 08:14:42 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -925,27 +831,27 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e","name":null,"location":"westus","tags":null}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","name":"endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","location":"westus","tags":null}' headers: cache-control: - no-cache content-length: - - '765' + - '841' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:33 GMT + - Mon, 14 Sep 2020 08:14:42 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -967,9 +873,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateLinkResources?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateLinkResources?api-version=2020-06-01 response: body: string: '{"value":[{"id":"subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateLinkResources/configurationStores","name":"configurationStores","type":"Microsoft.AppConfiguration/configurationStores/privateLinkResources","properties":{"groupId":"configurationStores","requiredMembers":["configurationStores"],"requiredZoneNames":["privatelink.azconfig.io"]}}],"nextLink":null}' @@ -977,17 +883,17 @@ interactions: cache-control: - no-cache content-length: - - '526' + - '541' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:33 GMT + - Mon, 14 Sep 2020 08:14:42 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1009,9 +915,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateLinkResources/configurationStores?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateLinkResources/configurationStores?api-version=2020-06-01 response: body: string: '{"id":"subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateLinkResources/configurationStores","name":"configurationStores","type":"Microsoft.AppConfiguration/configurationStores/privateLinkResources","properties":{"groupId":"configurationStores","requiredMembers":["configurationStores"],"requiredZoneNames":["privatelink.azconfig.io"]}}' @@ -1019,17 +925,17 @@ interactions: cache-control: - no-cache content-length: - - '498' + - '513' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:34 GMT + - Mon, 14 Sep 2020 08:14:42 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1051,27 +957,27 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections?api-version=2020-06-01 response: body: - string: '{"value":[{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e","name":null,"location":"westus","tags":null}],"nextLink":null}' + string: '{"value":[{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","name":"endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","location":"westus","tags":null}],"nextLink":null}' headers: cache-control: - no-cache content-length: - - '793' + - '869' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:34 GMT + - Mon, 14 Sep 2020 08:14:43 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1097,29 +1003,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-05-19T08:55:22+00:00","endpoint":"https://configuration39c8158a.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e","name":"endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a","name":"configuration39c8158a","location":"westus","tags":{"category":"Marketing"}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-09-14T08:13:42+00:00","endpoint":"https://configuration39c8158a.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","name":"endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a","name":"configuration39c8158a","location":"westus","tags":{"category":"Marketing"}}' headers: cache-control: - no-cache content-length: - - '1402' + - '1447' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:37 GMT + - Mon, 14 Sep 2020 08:14:48 GMT etag: - - W/"9e004517-0000-0700-0000-5ec39f440000" + - W/"7d002ebd-0000-0700-0000-5f5f26740000" expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1129,7 +1035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -1147,9 +1053,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2020-06-01 response: body: string: '{"nameAvailable":false,"message":"The specified name is already in @@ -1162,13 +1068,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:38 GMT + - Mon, 14 Sep 2020 08:14:48 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1194,9 +1100,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2020-06-01 response: body: string: '{"nameAvailable":false,"message":"The specified name is already in @@ -1209,13 +1115,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:38 GMT + - Mon, 14 Sep 2020 08:14:48 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1231,7 +1137,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -1239,15 +1145,15 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a/privateEndpointConnections/endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Deleting","privateEndpoint":null,"privateLinkServiceConnectionState":null},"id":null,"name":"endpointxyz.cad9e8d5-cc13-423a-95a2-480a52784f2e","location":null,"tags":null}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Deleting","privateEndpoint":null,"privateLinkServiceConnectionState":null},"id":null,"name":"endpointxyz.1fd8a38c-6df5-4ea8-b5e4-a0b8d3eff9a0","location":null,"tags":null}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/2881e91c-5493-6d89-0180-c4226047acff?api-version=2019-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/312a49da-8801-538d-8220-942fef50d72a?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -1255,13 +1161,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:39 GMT + - Mon, 14 Sep 2020 08:14:49 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -1281,15 +1187,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/2881e91c-5493-6d89-0180-c4226047acff?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/312a49da-8801-538d-8220-942fef50d72a?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/2881e91c-5493-6d89-0180-c4226047acff","name":"2881e91c-5493-6d89-0180-c4226047acff","status":"Deleting","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/312a49da-8801-538d-8220-942fef50d72a","name":"312a49da-8801-538d-8220-942fef50d72a","status":"Deleting","error":null}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/2881e91c-5493-6d89-0180-c4226047acff?api-version=2019-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/312a49da-8801-538d-8220-942fef50d72a?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -1297,13 +1203,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:49 GMT + - Mon, 14 Sep 2020 08:14:59 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1325,15 +1231,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/2881e91c-5493-6d89-0180-c4226047acff?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/312a49da-8801-538d-8220-942fef50d72a?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/2881e91c-5493-6d89-0180-c4226047acff","name":"2881e91c-5493-6d89-0180-c4226047acff","status":"Succeeded","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/312a49da-8801-538d-8220-942fef50d72a","name":"312a49da-8801-538d-8220-942fef50d72a","status":"Succeeded","error":null}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/2881e91c-5493-6d89-0180-c4226047acff?api-version=2019-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/312a49da-8801-538d-8220-942fef50d72a?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -1341,13 +1247,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:56:59 GMT + - Mon, 14 Sep 2020 08:15:09 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1363,7 +1269,7 @@ interactions: body: null headers: Accept: - - '*/*' + - application/json Accept-Encoding: - gzip, deflate Connection: @@ -1371,9 +1277,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration39c8158a?api-version=2020-06-01 response: body: string: '' @@ -1383,13 +1289,13 @@ interactions: content-length: - '0' date: - - Tue, 19 May 2020 08:57:01 GMT + - Mon, 14 Sep 2020 08:15:16 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration.test_appconfiguration_list_key_values.yaml b/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration.test_appconfiguration_list_key_values.yaml index 267c6c45e46d..2546afc84701 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration.test_appconfiguration_list_key_values.yaml +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration.test_appconfiguration_list_key_values.yaml @@ -14,35 +14,35 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2020-05-19T08:57:13.2303458+00:00","endpoint":null,"encryption":null,"privateEndpointConnections":null},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c","name":"configurationcae61c3c","location":"westus","tags":{}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2020-09-14T08:15:31.8743642+00:00","endpoint":null,"encryption":null,"privateEndpointConnections":null},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c","name":"configurationcae61c3c","location":"westus","tags":{}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/4b7906d9-01af-c5da-6553-219f6afca280?api-version=2019-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/aff8af00-5b34-5f16-165b-f920c2b1c519?api-version=2020-06-01 cache-control: - no-cache content-length: - - '524' + - '523' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:57:13 GMT + - Mon, 14 Sep 2020 08:15:32 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 201 message: Created @@ -56,15 +56,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/4b7906d9-01af-c5da-6553-219f6afca280?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/aff8af00-5b34-5f16-165b-f920c2b1c519?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/4b7906d9-01af-c5da-6553-219f6afca280","name":"4b7906d9-01af-c5da-6553-219f6afca280","status":"Succeeded","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/aff8af00-5b34-5f16-165b-f920c2b1c519","name":"aff8af00-5b34-5f16-165b-f920c2b1c519","status":"Succeeded","error":null}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/4b7906d9-01af-c5da-6553-219f6afca280?api-version=2019-11-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/aff8af00-5b34-5f16-165b-f920c2b1c519?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -72,13 +72,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:57:24 GMT + - Mon, 14 Sep 2020 08:15:42 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -100,29 +100,29 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-05-19T08:57:14+00:00","endpoint":"https://configurationcae61c3c.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":null},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c","name":"configurationcae61c3c","location":"westus","tags":{"my_tag":"myTagValue"}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-09-14T08:15:38+00:00","endpoint":"https://configurationcae61c3c.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":null},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c","name":"configurationcae61c3c","location":"westus","tags":{"my_tag":"myTagValue"}}' headers: cache-control: - no-cache content-length: - - '615' + - '614' content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:57:24 GMT + - Mon, 14 Sep 2020 08:15:42 GMT etag: - - W/"0000b548-0000-0700-0000-5ec39f690000" + - W/"56009200-0000-0700-0000-5f5f26a90000" expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -146,14 +146,14 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c/ListKeys?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c/ListKeys?api-version=2020-06-01 response: body: - string: '{"value":[{"id":"Sgky-l1-s0:fNte7Ua+153vjZOJ7IoR","name":"Primary","value":"fyVQ+s6HeRWoGOTnAKn0uF0lPiQWTW5RiccwnCYLmC0=","connectionString":"Endpoint=https://configurationcae61c3c.azconfig.io;Id=Sgky-l1-s0:fNte7Ua+153vjZOJ7IoR;Secret=fyVQ+s6HeRWoGOTnAKn0uF0lPiQWTW5RiccwnCYLmC0=","lastModified":"2020-05-19T08:57:13+00:00","readOnly":false},{"id":"JI8n-l1-s0:T6ltsLF7184Cqq/QGe4r","name":"Secondary","value":"Q3kJO/K1DKFIOaBqbnAFiqiyGF4JJERrsqBL76hBlv4=","connectionString":"Endpoint=https://configurationcae61c3c.azconfig.io;Id=JI8n-l1-s0:T6ltsLF7184Cqq/QGe4r;Secret=Q3kJO/K1DKFIOaBqbnAFiqiyGF4JJERrsqBL76hBlv4=","lastModified":"2020-05-19T08:57:13+00:00","readOnly":false},{"id":"jZvw-l1-s0:E4cLlCI2p9MBJYiNUmWp","name":"Primary - Read Only","value":"cK5XWXkGn6KGyx4AEZEC5Jd59AH8XbSm/YcFOQn/bD0=","connectionString":"Endpoint=https://configurationcae61c3c.azconfig.io;Id=jZvw-l1-s0:E4cLlCI2p9MBJYiNUmWp;Secret=cK5XWXkGn6KGyx4AEZEC5Jd59AH8XbSm/YcFOQn/bD0=","lastModified":"2020-05-19T08:57:13+00:00","readOnly":true},{"id":"DgHr-l1-s0:5Fn5wAmA6+mun/rMDuLm","name":"Secondary - Read Only","value":"jP/o7jNIJDjcH6aNJl/DfyVc1nqzz5TumKNPWoLSBSQ=","connectionString":"Endpoint=https://configurationcae61c3c.azconfig.io;Id=DgHr-l1-s0:5Fn5wAmA6+mun/rMDuLm;Secret=jP/o7jNIJDjcH6aNJl/DfyVc1nqzz5TumKNPWoLSBSQ=","lastModified":"2020-05-19T08:57:13+00:00","readOnly":true}],"nextLink":null}' + string: '{"value":[{"id":"R3g7-l1-s0:I5/reC29Nk+pvMXgcJpz","name":"Primary","value":"V0EDlQxb6kNnqInoLFy97aKD6t5jaFHWhN7WC11Y7Y4=","connectionString":"Endpoint=https://configurationcae61c3c.azconfig.io;Id=R3g7-l1-s0:I5/reC29Nk+pvMXgcJpz;Secret=V0EDlQxb6kNnqInoLFy97aKD6t5jaFHWhN7WC11Y7Y4=","lastModified":"2020-09-14T08:15:37+00:00","readOnly":false},{"id":"nqlI-l1-s0:779gYmzrJp8B56vAiW/R","name":"Secondary","value":"vXtc/Kww24mrsF++l5zTNZ8PQi95ywqTnWaQECaUwk4=","connectionString":"Endpoint=https://configurationcae61c3c.azconfig.io;Id=nqlI-l1-s0:779gYmzrJp8B56vAiW/R;Secret=vXtc/Kww24mrsF++l5zTNZ8PQi95ywqTnWaQECaUwk4=","lastModified":"2020-09-14T08:15:37+00:00","readOnly":false},{"id":"Ndta-l1-s0:Q/yFZqBrOOtutWWkk1J5","name":"Primary + Read Only","value":"lMj2eOnBBHSefbs0aFjRaaBHcc+j02BslKRSpc9f1kE=","connectionString":"Endpoint=https://configurationcae61c3c.azconfig.io;Id=Ndta-l1-s0:Q/yFZqBrOOtutWWkk1J5;Secret=lMj2eOnBBHSefbs0aFjRaaBHcc+j02BslKRSpc9f1kE=","lastModified":"2020-09-14T08:15:37+00:00","readOnly":true},{"id":"KEQI-l1-s0:myLMJ++rnqT+hF5CKe1H","name":"Secondary + Read Only","value":"G9u5R3wCLcDUZQBRFPYIApeK0bytt5ACelfwnghFE/k=","connectionString":"Endpoint=https://configurationcae61c3c.azconfig.io;Id=KEQI-l1-s0:myLMJ++rnqT+hF5CKe1H;Secret=G9u5R3wCLcDUZQBRFPYIApeK0bytt5ACelfwnghFE/k=","lastModified":"2020-09-14T08:15:37+00:00","readOnly":true}],"nextLink":null}' headers: cache-control: - no-cache @@ -162,13 +162,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:57:25 GMT + - Mon, 14 Sep 2020 08:15:43 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -183,7 +183,7 @@ interactions: code: 200 message: OK - request: - body: '{"id": "Sgky-l1-s0:fNte7Ua+153vjZOJ7IoR"}' + body: '{"id": "R3g7-l1-s0:I5/reC29Nk+pvMXgcJpz"}' headers: Accept: - application/json @@ -196,12 +196,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c/RegenerateKey?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c/RegenerateKey?api-version=2020-06-01 response: body: - string: '{"id":"EUlu-l1-s0:tuoDaxaMbI/bjA5EgzJZ","name":"Primary","value":"4V7qRp4EnBGs1650b45Ebgdy+htMtEPSY3kl/2z3ypg=","connectionString":"Endpoint=https://configurationcae61c3c.azconfig.io;Id=EUlu-l1-s0:tuoDaxaMbI/bjA5EgzJZ;Secret=4V7qRp4EnBGs1650b45Ebgdy+htMtEPSY3kl/2z3ypg=","lastModified":"2020-05-19T08:57:25+00:00","readOnly":false}' + string: '{"id":"jjmA-l1-s0:3Ct91hRpYTbPu8QdJ7LS","name":"Primary","value":"yY54SM9as0VZRQW9fV0+zbMFVkXo6tSVLe2C8PV85C0=","connectionString":"Endpoint=https://configurationcae61c3c.azconfig.io;Id=jjmA-l1-s0:3Ct91hRpYTbPu8QdJ7LS;Secret=yY54SM9as0VZRQW9fV0+zbMFVkXo6tSVLe2C8PV85C0=","lastModified":"2020-09-14T08:15:44+00:00","readOnly":false}' headers: cache-control: - no-cache @@ -210,13 +210,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:57:25 GMT + - Mon, 14 Sep 2020 08:15:43 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -248,17 +248,17 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-appconfiguration/1.1.1 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) x-ms-content-sha256: - 5b/E4qQlXHTRod+n+f+xjK6c/tRVR8uxoC62FjvGJPw= x-ms-date: - - May, 19 2020 08:59:38 GMT + - Sep, 14 2020 08:15:44 GMT method: PUT uri: https://configurationcae61c3c.azconfig.io/kv/PYTHON_UNIT_test_key_a6af8952-54a6-11e9-b600-2816a84d0309?label=test_label1_1d7b2b28-549e-11e9-b51c-2816a84d0309&api-version=1.0 response: body: - string: '{"etag":"3yLNLCnTMTncP47u20svt6FZFsF","key":"PYTHON_UNIT_test_key_a6af8952-54a6-11e9-b600-2816a84d0309","label":"test_label1_1d7b2b28-549e-11e9-b51c-2816a84d0309","content_type":"test - content type","value":"test value","tags":{"tag1":"tag1","tag2":"tag2"},"locked":false,"last_modified":"2020-05-19T08:57:27+00:00"}' + string: '{"etag":"XuK4JkTld3O9xOQgSfAoz0Qq2dC","key":"PYTHON_UNIT_test_key_a6af8952-54a6-11e9-b600-2816a84d0309","label":"test_label1_1d7b2b28-549e-11e9-b51c-2816a84d0309","content_type":"test + content type","value":"test value","tags":{"tag1":"tag1","tag2":"tag2"},"locked":false,"last_modified":"2020-09-14T08:15:46+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -269,23 +269,23 @@ interactions: Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-useragent, x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, - Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + Link, Memento-Datetime, retry-after-ms, x-ms-request-id, WWW-Authenticate connection: - keep-alive content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 19 May 2020 08:57:27 GMT + - Mon, 14 Sep 2020 08:15:46 GMT etag: - - '"3yLNLCnTMTncP47u20svt6FZFsF"' + - '"XuK4JkTld3O9xOQgSfAoz0Qq2dC"' last-modified: - - Tue, 19 May 2020 08:57:27 GMT + - Mon, 14 Sep 2020 08:15:46 GMT server: - openresty/1.15.8.3 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=NjoxIzIwODA0MDk=;sn=2080409 + - zAJw6V16=ODo0IzIyOTY0MjcjMT0tMQ==;sn=2296427 transfer-encoding: - chunked status: @@ -306,13 +306,13 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c/listKeyValue?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationcae61c3c/listKeyValue?api-version=2020-06-01 response: body: string: '{"key":"PYTHON_UNIT_test_key_a6af8952-54a6-11e9-b600-2816a84d0309","label":"test_label1_1d7b2b28-549e-11e9-b51c-2816a84d0309","value":"test - value","contentType":"test content type","eTag":"3yLNLCnTMTncP47u20svt6FZFsF","lastModified":"2020-05-19T08:57:27+00:00","locked":false,"tags":{"tag1":"tag1","tag2":"tag2"}}' + value","contentType":"test content type","eTag":"XuK4JkTld3O9xOQgSfAoz0Qq2dC","lastModified":"2020-09-14T08:15:46+00:00","locked":false,"tags":{"tag1":"tag1","tag2":"tag2"}}' headers: cache-control: - no-cache @@ -321,13 +321,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 May 2020 08:57:32 GMT + - Mon, 14 Sep 2020 08:15:51 GMT expires: - '-1' pragma: - no-cache server: - - openresty/1.15.8.1 + - nginx/1.17.10 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration_async.test_appconfiguration.yaml b/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration_async.test_appconfiguration.yaml index fa0dbbd5250e..afab09b64b94 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration_async.test_appconfiguration.yaml +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration_async.test_appconfiguration.yaml @@ -10,47 +10,47 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2020-06-02T02:28:48.6492221+00:00","endpoint":null,"encryption":null,"privateEndpointConnections":null},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2020-09-14T08:20:14.3747537+00:00","endpoint":null,"encryption":null,"privateEndpointConnections":null},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{}}' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/0c65890e-5dcb-fb73-eae3-7a0e14b74e35?api-version=2019-11-01-preview + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/909b95dc-88d3-55cf-5a48-17c045061747?api-version=2020-06-01 cache-control: no-cache - content-length: '514' + content-length: '523' content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:28:50 GMT + date: Mon, 14 Sep 2020 08:20:14 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-subscription-writes: '1196' + x-ms-ratelimit-remaining-subscription-writes: '1199' status: code: 201 message: Created - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/0c65890e-5dcb-fb73-eae3-7a0e14b74e35?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/909b95dc-88d3-55cf-5a48-17c045061747?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/0c65890e-5dcb-fb73-eae3-7a0e14b74e35","name":"0c65890e-5dcb-fb73-eae3-7a0e14b74e35","status":"Succeeded","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/909b95dc-88d3-55cf-5a48-17c045061747","name":"909b95dc-88d3-55cf-5a48-17c045061747","status":"Succeeded","error":null}' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/0c65890e-5dcb-fb73-eae3-7a0e14b74e35?api-version=2019-11-01-preview + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/909b95dc-88d3-55cf-5a48-17c045061747?api-version=2020-06-01 cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:29:00 GMT + date: Mon, 14 Sep 2020 08:20:26 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding @@ -58,26 +58,26 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/0c65890e-5dcb-fb73-eae3-7a0e14b74e35?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/909b95dc-88d3-55cf-5a48-17c045061747?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-06-02T02:28:55+00:00","endpoint":"https://configurationc4331807.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":null},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{"my_tag":"myTagValue"}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-09-14T08:20:20+00:00","endpoint":"https://configurationc4331807.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":null},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{"my_tag":"myTagValue"}}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:29:00 GMT - etag: W/"10005999-0000-0700-0000-5ed5b9660000" + date: Mon, 14 Sep 2020 08:20:26 GMT + etag: W/"65004094-0000-0700-0000-5f5f27c40000" expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -85,7 +85,7 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2020-06-01 - request: body: '{"location": "eastus", "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}}}' @@ -110,10 +110,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vnetnamexxy\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetnamexxy\"\ - ,\r\n \"etag\": \"W/\\\"652f4424-7c28-4ab5-8614-4304a77757a4\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"3b6f9b24-e9bd-4393-8295-a3fb933460f2\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"7690d93b-9b1e-422b-8020-e171e4681ea4\",\r\n \"\ + \ \"resourceGuid\": \"83a9ef4b-5915-4dd9-b981-3ff4868ac2f9\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -122,15 +122,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d65eeef0-1b93-468c-874a-bca69ce902fd?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aacd5276-f6ee-43d6-94b4-8192be6f84c1?api-version=2019-09-01 cache-control: - no-cache content-length: - - '700' + - '709' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 02:29:04 GMT + - Mon, 14 Sep 2020 08:20:37 GMT expires: - '-1' pragma: @@ -143,9 +143,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f805863e-bfa9-4dd7-8536-430cf969ebce + - 6aead6a9-579e-44d1-8f24-c4bb76685cba x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' status: code: 201 message: Created @@ -162,7 +162,7 @@ interactions: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d65eeef0-1b93-468c-874a-bca69ce902fd?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/aacd5276-f6ee-43d6-94b4-8192be6f84c1?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -174,7 +174,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 02:29:09 GMT + - Mon, 14 Sep 2020 08:20:41 GMT expires: - '-1' pragma: @@ -191,7 +191,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c2209ada-68d4-4441-9793-67f86810da82 + - 5ec56c4f-1139-47d2-9b25-50e480807087 status: code: 200 message: OK @@ -212,10 +212,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vnetnamexxy\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetnamexxy\"\ - ,\r\n \"etag\": \"W/\\\"a22acb74-b8b8-4431-b970-023e4403f6bd\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"99843012-ab02-4b78-9d41-66ccfc6d1834\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"7690d93b-9b1e-422b-8020-e171e4681ea4\",\r\n \"\ + \ \"resourceGuid\": \"83a9ef4b-5915-4dd9-b981-3ff4868ac2f9\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -224,13 +224,13 @@ interactions: cache-control: - no-cache content-length: - - '701' + - '710' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 02:29:10 GMT + - Mon, 14 Sep 2020 08:20:41 GMT etag: - - W/"a22acb74-b8b8-4431-b970-023e4403f6bd" + - W/"99843012-ab02-4b78-9d41-66ccfc6d1834" expires: - '-1' pragma: @@ -247,7 +247,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4873799c-a45b-4547-adca-5f34281b369c + - b5038c38-405e-4a3f-8c75-0d92a7ad9ba5 status: code: 200 message: OK @@ -275,22 +275,22 @@ interactions: response: body: string: "{\r\n \"name\": \"subnetnamexxy\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetnamexxy/subnets/subnetnamexxy\"\ - ,\r\n \"etag\": \"W/\\\"82ae0073-b8e1-40cf-a62d-b5ddffb9b0c3\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"cda31e49-a484-4b73-a430-682c0c08dcf3\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\ \r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d544544f-3779-4415-8d0d-f5b15e67105e?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/788f977d-47ca-4b2a-a2a1-c2421d99e4bf?api-version=2019-09-01 cache-control: - no-cache content-length: - - '596' + - '605' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 02:29:11 GMT + - Mon, 14 Sep 2020 08:20:43 GMT expires: - '-1' pragma: @@ -303,9 +303,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f27055cb-a2d2-45f4-bbad-c798a48ae794 + - 92ebf5bd-83c7-4a3b-92b0-8ed2a240c18d x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1193' status: code: 201 message: Created @@ -322,7 +322,7 @@ interactions: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d544544f-3779-4415-8d0d-f5b15e67105e?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/788f977d-47ca-4b2a-a2a1-c2421d99e4bf?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 02:29:15 GMT + - Mon, 14 Sep 2020 08:20:46 GMT expires: - '-1' pragma: @@ -351,7 +351,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a807da44-6074-4186-b33c-f5b67e1f3fd8 + - 62393aef-ca09-4c9b-a36f-4527afe731e6 status: code: 200 message: OK @@ -372,7 +372,7 @@ interactions: response: body: string: "{\r\n \"name\": \"subnetnamexxy\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetnamexxy/subnets/subnetnamexxy\"\ - ,\r\n \"etag\": \"W/\\\"499b8cee-7860-463e-a11e-390580616d1f\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"5e1a41a2-c54f-426c-83ed-6bbafe024da9\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\ @@ -381,13 +381,13 @@ interactions: cache-control: - no-cache content-length: - - '597' + - '606' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 02:29:16 GMT + - Mon, 14 Sep 2020 08:20:46 GMT etag: - - W/"499b8cee-7860-463e-a11e-390580616d1f" + - W/"5e1a41a2-c54f-426c-83ed-6bbafe024da9" expires: - '-1' pragma: @@ -404,14 +404,14 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5e35ef6f-bd65-42e0-a96c-e9fa33ea3a4f + - dc01939a-b2dc-49c7-b7cb-145d4804c592 status: code: 200 message: OK - request: - body: 'b''{"location": "eastus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetnamexxy/subnets/subnetnamexxy"}, + body: 'b''b\''{"location": "eastus", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetnamexxy/subnets/subnetnamexxy"}, "privateLinkServiceConnections": [{"properties": {"privateLinkServiceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807", - "groupIds": ["configurationStores"]}, "name": "myconnection"}]}}''' + "groupIds": ["configurationStores"]}, "name": "myconnection"}]}}\''''' headers: Accept: - application/json @@ -420,7 +420,7 @@ interactions: Connection: - keep-alive Content-Length: - - '625' + - '643' Content-Type: - application/json; charset=utf-8 User-Agent: @@ -433,13 +433,13 @@ interactions: response: body: string: "{\r\n \"name\": \"endpointxyz\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz\"\ - ,\r\n \"etag\": \"W/\\\"07ca4e75-f7d4-4ad8-8aa0-3670f764498c\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"3ff2ce8b-4c7f-4fcf-be51-21af23b93b47\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"\ eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\"\ - ,\r\n \"resourceGuid\": \"b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e\",\r\n \ + ,\r\n \"resourceGuid\": \"6a7a909a-fd0c-405b-8368-2835ade5b223\",\r\n \ \ \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"\ myconnection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz/privateLinkServiceConnections/myconnection\"\ - ,\r\n \"etag\": \"W/\\\"07ca4e75-f7d4-4ad8-8aa0-3670f764498c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"3ff2ce8b-4c7f-4fcf-be51-21af23b93b47\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807\"\ ,\r\n \"groupIds\": [\r\n \"configurationStores\"\r\n\ @@ -450,21 +450,21 @@ interactions: \r\n }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\ \n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetnamexxy/subnets/subnetnamexxy\"\ \r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/endpointxyz.nic.0cc54afd-d70b-41a9-ae5c-0b6b86a2c209\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/endpointxyz.nic.c45cdfe0-391b-4eae-8e8f-beacc232669d\"\ \r\n }\r\n ]\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/622ef840-aecf-4fee-8fba-714cccb798ef?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1581ce4d-c642-497c-989c-3eaff74b81f3?api-version=2019-09-01 cache-control: - no-cache content-length: - - '2164' + - '2209' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 02:29:21 GMT + - Mon, 14 Sep 2020 08:20:51 GMT expires: - '-1' pragma: @@ -477,9 +477,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0c42c7da-9cc9-44dc-9cdc-df2a1662543e + - a596a126-7353-42d7-a1f5-86ff3ff4f21a x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1192' status: code: 201 message: Created @@ -496,99 +496,7 @@ interactions: - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/622ef840-aecf-4fee-8fba-714cccb798ef?api-version=2019-09-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Jun 2020 02:29:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 695f8c05-b27d-4e08-b656-6911acb36df0 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/622ef840-aecf-4fee-8fba-714cccb798ef?api-version=2019-09-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 02 Jun 2020 02:29:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 88fb6b84-4c96-4038-be50-432864ad9862 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/622ef840-aecf-4fee-8fba-714cccb798ef?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1581ce4d-c642-497c-989c-3eaff74b81f3?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -600,7 +508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 02:29:53 GMT + - Mon, 14 Sep 2020 08:21:02 GMT expires: - '-1' pragma: @@ -617,7 +525,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b56c1bd6-d30f-45eb-8ee1-27c495e4a892 + - 350060df-b4f2-43b8-b063-49a1cdc0481e status: code: 200 message: OK @@ -638,13 +546,13 @@ interactions: response: body: string: "{\r\n \"name\": \"endpointxyz\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz\"\ - ,\r\n \"etag\": \"W/\\\"b0c25cc9-b8ba-4041-8a97-56c2c7e7d63c\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"fa9d2bc4-a05a-4bbf-8b4d-067b629d5636\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/privateEndpoints\",\r\n \"location\": \"\ eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ - ,\r\n \"resourceGuid\": \"b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e\",\r\n \ + ,\r\n \"resourceGuid\": \"6a7a909a-fd0c-405b-8368-2835ade5b223\",\r\n \ \ \"privateLinkServiceConnections\": [\r\n {\r\n \"name\": \"\ myconnection\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz/privateLinkServiceConnections/myconnection\"\ - ,\r\n \"etag\": \"W/\\\"b0c25cc9-b8ba-4041-8a97-56c2c7e7d63c\\\"\"\ + ,\r\n \"etag\": \"W/\\\"fa9d2bc4-a05a-4bbf-8b4d-067b629d5636\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateLinkServiceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807\"\ ,\r\n \"groupIds\": [\r\n \"configurationStores\"\r\n\ @@ -655,19 +563,19 @@ interactions: \r\n }\r\n ],\r\n \"manualPrivateLinkServiceConnections\": [],\r\ \n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/vnetnamexxy/subnets/subnetnamexxy\"\ \r\n },\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"\ - /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/endpointxyz.nic.0cc54afd-d70b-41a9-ae5c-0b6b86a2c209\"\ + /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/endpointxyz.nic.c45cdfe0-391b-4eae-8e8f-beacc232669d\"\ \r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2178' + - '2223' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jun 2020 02:29:54 GMT + - Mon, 14 Sep 2020 08:21:02 GMT etag: - - W/"b0c25cc9-b8ba-4041-8a97-56c2c7e7d63c" + - W/"fa9d2bc4-a05a-4bbf-8b4d-067b629d5636" expires: - '-1' pragma: @@ -684,7 +592,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 65f39b7b-1404-40aa-b126-1d799e674d3c + - 47b7f7b0-45bf-49c6-969d-690da223f9cb status: code: 200 message: OK @@ -694,21 +602,21 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-06-02T02:28:55+00:00","endpoint":"https://configurationc4331807.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","name":"endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{"my_tag":"myTagValue"}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-09-14T08:20:20+00:00","endpoint":"https://configurationc4331807.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","name":"endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{"my_tag":"myTagValue"}}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:29:55 GMT - etag: W/"1000d499-0000-0700-0000-5ed5b9950000" + date: Mon, 14 Sep 2020 08:21:04 GMT + etag: W/"65004296-0000-0700-0000-5f5f27e60000" expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -716,59 +624,59 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2020-06-01 - request: - body: 'b''{"properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"}, - "privateLinkServiceConnectionState": {"status": "Approved", "description": "Auto-Approved"}}}''' + body: 'b''b\''{"properties": {"privateEndpoint": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"}, + "privateLinkServiceConnectionState": {"status": "Approved", "description": "Auto-Approved"}}}\''''' headers: Accept: - application/json Content-Length: - - '330' + - '339' Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Updating","privateEndpoint":null,"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","name":"endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","location":null,"tags":null}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Updating","privateEndpoint":null,"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","name":"endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","location":null,"tags":null}' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/d0f8cd6e-f8cc-8732-13ee-7b5458208640?api-version=2019-11-01-preview + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/f953626e-88ca-2f03-472e-c8b58a3fb402?api-version=2020-06-01 cache-control: no-cache - content-length: '623' + content-length: '632' content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:29:56 GMT + date: Mon, 14 Sep 2020 08:21:05 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-subscription-writes: '1195' + x-ms-ratelimit-remaining-subscription-writes: '1199' status: code: 201 message: Created - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/d0f8cd6e-f8cc-8732-13ee-7b5458208640?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/f953626e-88ca-2f03-472e-c8b58a3fb402?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/d0f8cd6e-f8cc-8732-13ee-7b5458208640","name":"d0f8cd6e-f8cc-8732-13ee-7b5458208640","status":"Succeeded","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/f953626e-88ca-2f03-472e-c8b58a3fb402","name":"f953626e-88ca-2f03-472e-c8b58a3fb402","status":"Succeeded","error":null}' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/d0f8cd6e-f8cc-8732-13ee-7b5458208640?api-version=2019-11-01-preview + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/f953626e-88ca-2f03-472e-c8b58a3fb402?api-version=2020-06-01 cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:06 GMT + date: Mon, 14 Sep 2020 08:21:15 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding @@ -776,25 +684,25 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/d0f8cd6e-f8cc-8732-13ee-7b5458208640?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/f953626e-88ca-2f03-472e-c8b58a3fb402?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","name":null,"location":"westus","tags":null}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","name":"endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","location":"westus","tags":null}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:06 GMT + date: Mon, 14 Sep 2020 08:21:15 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -802,27 +710,27 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","name":null,"location":"westus","tags":null}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","name":"endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","location":"westus","tags":null}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:07 GMT + date: Mon, 14 Sep 2020 08:21:15 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -830,16 +738,16 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateLinkResources?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateLinkResources?api-version=2020-06-01 response: body: string: '{"value":[{"id":"subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateLinkResources/configurationStores","name":"configurationStores","type":"Microsoft.AppConfiguration/configurationStores/privateLinkResources","properties":{"groupId":"configurationStores","requiredMembers":["configurationStores"],"requiredZoneNames":["privatelink.azconfig.io"]}}],"nextLink":null}' @@ -847,10 +755,10 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:07 GMT + date: Mon, 14 Sep 2020 08:21:16 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -858,16 +766,16 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateLinkResources?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateLinkResources?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateLinkResources/configurationStores?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateLinkResources/configurationStores?api-version=2020-06-01 response: body: string: '{"id":"subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateLinkResources/configurationStores","name":"configurationStores","type":"Microsoft.AppConfiguration/configurationStores/privateLinkResources","properties":{"groupId":"configurationStores","requiredMembers":["configurationStores"],"requiredZoneNames":["privatelink.azconfig.io"]}}' @@ -875,10 +783,10 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:07 GMT + date: Mon, 14 Sep 2020 08:21:16 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -886,27 +794,27 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateLinkResources/configurationStores?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateLinkResources/configurationStores?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections?api-version=2020-06-01 response: body: - string: '{"value":[{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","name":null,"location":"westus","tags":null}],"nextLink":null}' + string: '{"value":[{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved"}},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","name":"endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","location":"westus","tags":null}],"nextLink":null}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:08 GMT + date: Mon, 14 Sep 2020 08:21:16 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -914,16 +822,16 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/providers/Microsoft.AppConfiguration/operations?api-version=2019-11-01-preview + uri: https://management.azure.com/providers/Microsoft.AppConfiguration/operations?api-version=2020-06-01 response: body: string: '{"value":[{"origin":null,"name":"Microsoft.AppConfiguration/operations/read","isDataAction":false,"display":{"provider":"Microsoft @@ -931,7 +839,10 @@ interactions: all of the operations supported by Microsoft App Configuration."},"properties":null},{"origin":null,"name":"Microsoft.AppConfiguration/register/action","isDataAction":false,"display":{"provider":"Microsoft App Configuration","resource":"Microsoft App Configuration","operation":"Register for Microsoft App Configuration","description":"Registers a subscription to - use Microsoft App Configuration."},"properties":null},{"origin":null,"name":"Microsoft.AppConfiguration/locations/operationsStatus/read","isDataAction":false,"display":{"provider":"Microsoft + use Microsoft App Configuration."},"properties":null},{"origin":null,"name":"Microsoft.AppConfiguration/unregister/action","isDataAction":false,"display":{"provider":"Microsoft + App Configuration","resource":"Microsoft App Configuration","operation":"Unregister + for Microsoft App Configuration","description":"Unregisters a subscription + from using Microsoft App Configuration."},"properties":null},{"origin":null,"name":"Microsoft.AppConfiguration/locations/operationsStatus/read","isDataAction":false,"display":{"provider":"Microsoft App Configuration","resource":null,"operation":"Get Operation Status","description":"Get the status of an operation."},"properties":null},{"origin":null,"name":"Microsoft.AppConfiguration/checkNameAvailability/read","isDataAction":false,"display":{"provider":"Microsoft App Configuration","resource":null,"operation":"Check Name Availability","description":"Check @@ -1014,10 +925,10 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:08 GMT + date: Mon, 14 Sep 2020 08:21:17 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -1025,29 +936,29 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/providers/Microsoft.AppConfiguration/operations?api-version=2019-11-01-preview + url: https://management.azure.com/providers/Microsoft.AppConfiguration/operations?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores?api-version=2020-06-01 response: body: - string: '{"value":[{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-06-02T02:28:55+00:00","endpoint":"https://configurationc4331807.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","name":"endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{"my_tag":"myTagValue"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-11-01-preview&$skipToken=configurationc4331807"}' + string: '{"value":[{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-09-14T08:20:20+00:00","endpoint":"https://configurationc4331807.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","name":"endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{"my_tag":"myTagValue"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores?api-version=2020-06-01&$skipToken=configurationc4331807"}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:09 GMT + date: Mon, 14 Sep 2020 08:21:17 GMT expires: '-1' - link: ; + link: ; rel="next" pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -1055,16 +966,16 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-11-01-preview&$skipToken=configurationc4331807 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores?api-version=2020-06-01&$skipToken=configurationc4331807 response: body: string: '{"value":[],"nextLink":null}' @@ -1072,10 +983,10 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:09 GMT + date: Mon, 14 Sep 2020 08:21:18 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding @@ -1083,65 +994,63 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-11-01-preview&$skipToken=configurationc4331807 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores?api-version=2020-06-01&$skipToken=configurationc4331807 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2020-06-01 response: body: - string: '{"value":[{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-06-02T02:28:55+00:00","endpoint":"https://configurationc4331807.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","name":"endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{"my_tag":"myTagValue"}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-11-01-preview&$skipToken=configurationc4331807"}' + string: '{"value":[{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-09-14T08:20:20+00:00","endpoint":"https://configurationc4331807.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","name":"endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{"my_tag":"myTagValue"}},{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-06-24T07:08:22+00:00","endpoint":"https://configstorexyz.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":null},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test-changlong/providers/Microsoft.AppConfiguration/configurationStores/configstorexyz","name":"configstorexyz","location":"eastus","tags":{}}],"nextLink":"https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2020-06-01&%24skiptoken=1Y%2fLisIwGEbfJYirSXNptRcQKdKds6qD6%2fg3cUJpEvKn4ii%2bu7qbeYRZfnycA%2bdOnL6mvXUjkuZOjl1%2f%2bOpJQ75TCtgwNimnznrSLmXqNkedgZ8YzieEaEOy3iGrpalXQ2VoDuuSFkIWtBZQ0goML2E4GVkIFqK%2f2EFHZJ8WokdvUtaGsPPO2PMc1VvF4Pfqk48atypYenlxr38jueSUrykXywWONhz8qN3mDwVFnouKl%2bSDdO1%2fbcF3%2bvXnRh6PJw%3d%3d"}' headers: cache-control: no-cache content-encoding: gzip + content-length: '1118' content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:09 GMT + date: Mon, 14 Sep 2020 08:21:19 GMT expires: '-1' - link: ; - rel="next" pragma: no-cache - server: openresty/1.15.8.1 strict-transport-security: max-age=31536000; includeSubDomains - transfer-encoding: chunked - vary: Accept-Encoding,Accept-Encoding + vary: Accept-Encoding x-content-type-options: nosniff + x-ms-original-request-ids: 92acab71-c16a-4473-af14-e1bb917cc33d status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/configurationStores?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-11-01-preview&$skipToken=configurationc4331807 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/configurationStores?api-version=2020-06-01&$skiptoken=1Y/LisIwGEbfJYirSXNptRcQKdKds6qD6/g3cUJpEvKn4ii%2Bu7qbeYRZfnycA%2BdOnL6mvXUjkuZOjl1/%2BOpJQ75TCtgwNimnznrSLmXqNkedgZ8YzieEaEOy3iGrpalXQ2VoDuuSFkIWtBZQ0goML2E4GVkIFqK/2EFHZJ8WokdvUtaGsPPO2PMc1VvF4Pfqk48atypYenlxr38jueSUrykXywWONhz8qN3mDwVFnouKl%2BSDdO1/bcF3%2BvXnRh6PJw%3D%3D response: body: - string: '{"value":[],"nextLink":null}' + string: '{"value":[]}' headers: cache-control: no-cache content-encoding: gzip + content-length: '133' content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:10 GMT + date: Mon, 14 Sep 2020 08:21:19 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 strict-transport-security: max-age=31536000; includeSubDomains - transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff + x-ms-original-request-ids: e46abe65-9703-4185-baa9-c297a219d9b9 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/configurationStores?api-version=2019-11-01-preview&$skipToken=configurationc4331807 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/configurationStores?api-version=2020-06-01&$skiptoken=1Y/LisIwGEbfJYirSXNptRcQKdKds6qD6/g3cUJpEvKn4ii%2Bu7qbeYRZfnycA%2BdOnL6mvXUjkuZOjl1/%2BOpJQ75TCtgwNimnznrSLmXqNkedgZ8YzieEaEOy3iGrpalXQ2VoDuuSFkIWtBZQ0goML2E4GVkIFqK/2EFHZJ8WokdvUtaGsPPO2PMc1VvF4Pfqk48atypYenlxr38jueSUrykXywWONhz8qN3mDwVFnouKl%2BSDdO1/bcF3%2BvXnRh6PJw%3D%3D - request: body: '{"sku": {"name": "Standard"}, "tags": {"category": "Marketing"}}' headers: @@ -1152,30 +1061,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-06-02T02:28:55+00:00","endpoint":"https://configurationc4331807.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","name":"endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{"category":"Marketing"}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-09-14T08:20:20+00:00","endpoint":"https://configurationc4331807.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","name":"endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Succeeded","privateEndpoint":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/privateEndpoints/endpointxyz"},"privateLinkServiceConnectionState":{"status":"Approved","description":"Auto-Approved","actionsRequired":"None"}}}]},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807","name":"configurationc4331807","location":"westus","tags":{"category":"Marketing"}}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:14 GMT - etag: W/"1000319a-0000-0700-0000-5ed5b9b30000" + date: Mon, 14 Sep 2020 08:21:27 GMT + etag: W/"65006997-0000-0700-0000-5f5f28040000" expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-subscription-writes: '1194' + x-ms-ratelimit-remaining-subscription-writes: '1198' status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2020-06-01 - request: body: '{"name": "contoso", "type": "Microsoft.AppConfiguration/configurationStores"}' headers: @@ -1186,9 +1095,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2020-06-01 response: body: string: '{"nameAvailable":false,"message":"The specified name is already in @@ -1197,10 +1106,10 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:14 GMT + date: Mon, 14 Sep 2020 08:21:27 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding @@ -1208,7 +1117,7 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2020-06-01 - request: body: '{"name": "contoso", "type": "Microsoft.AppConfiguration/configurationStores"}' headers: @@ -1219,9 +1128,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2020-06-01 response: body: string: '{"nameAvailable":false,"message":"The specified name is already in @@ -1230,10 +1139,10 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:15 GMT + date: Mon, 14 Sep 2020 08:21:27 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding @@ -1241,52 +1150,54 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/checkNameAvailability?api-version=2020-06-01 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Deleting","privateEndpoint":null,"privateLinkServiceConnectionState":null},"id":null,"name":"endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e","location":null,"tags":null}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections","properties":{"provisioningState":"Deleting","privateEndpoint":null,"privateLinkServiceConnectionState":null},"id":null,"name":"endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223","location":null,"tags":null}' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/fde98467-13a3-7181-7385-3023e1a426a1?api-version=2019-11-01-preview + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/b7891d14-5d51-4100-0af5-c7225e10fca4?api-version=2020-06-01 cache-control: no-cache content-length: '290' content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:15 GMT + date: Mon, 14 Sep 2020 08:21:27 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-subscription-deletes: '14995' + x-ms-ratelimit-remaining-subscription-deletes: '14999' status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.b29ca084-31f7-4a1d-ba2e-3c3e1fa9fb5e?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807/privateEndpointConnections/endpointxyz.6a7a909a-fd0c-405b-8368-2835ade5b223?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/fde98467-13a3-7181-7385-3023e1a426a1?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/b7891d14-5d51-4100-0af5-c7225e10fca4?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/fde98467-13a3-7181-7385-3023e1a426a1","name":"fde98467-13a3-7181-7385-3023e1a426a1","status":"Deleting","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/b7891d14-5d51-4100-0af5-c7225e10fca4","name":"b7891d14-5d51-4100-0af5-c7225e10fca4","status":"Deleting","error":null}' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/fde98467-13a3-7181-7385-3023e1a426a1?api-version=2019-11-01-preview + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/b7891d14-5d51-4100-0af5-c7225e10fca4?api-version=2020-06-01 cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:25 GMT + date: Mon, 14 Sep 2020 08:21:38 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding @@ -1294,26 +1205,26 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/fde98467-13a3-7181-7385-3023e1a426a1?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/b7891d14-5d51-4100-0af5-c7225e10fca4?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/fde98467-13a3-7181-7385-3023e1a426a1?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/b7891d14-5d51-4100-0af5-c7225e10fca4?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/fde98467-13a3-7181-7385-3023e1a426a1","name":"fde98467-13a3-7181-7385-3023e1a426a1","status":"Succeeded","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/b7891d14-5d51-4100-0af5-c7225e10fca4","name":"b7891d14-5d51-4100-0af5-c7225e10fca4","status":"Succeeded","error":null}' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/fde98467-13a3-7181-7385-3023e1a426a1?api-version=2019-11-01-preview + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/b7891d14-5d51-4100-0af5-c7225e10fca4?api-version=2020-06-01 cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:30:35 GMT + date: Mon, 14 Sep 2020 08:21:48 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding @@ -1321,29 +1232,31 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/fde98467-13a3-7181-7385-3023e1a426a1?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/b7891d14-5d51-4100-0af5-c7225e10fca4?api-version=2020-06-01 - request: body: null headers: + Accept: + - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2020-06-01 response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Tue, 02 Jun 2020 02:30:40 GMT + date: Mon, 14 Sep 2020 08:21:54 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-subscription-deletes: '14994' + x-ms-ratelimit-remaining-subscription-deletes: '14998' status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/c7ply643hvs5dt6rvkg4zj4vscpzionsiwy2uy4gkfm7gjuldrgwnxzlbd2fi3blgpgtkchc45a/providers/Microsoft.AppConfiguration/configurationStores/configurationc4331807?api-version=2020-06-01 version: 1 diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration_async.test_appconfiguration_list_key_values.yaml b/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration_async.test_appconfiguration_list_key_values.yaml index ae6b2ca8461e..3522733510d8 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration_async.test_appconfiguration_list_key_values.yaml +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/recordings/test_cli_mgmt_appconfiguration_async.test_appconfiguration_list_key_values.yaml @@ -10,47 +10,47 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2020-06-02T02:31:00.970748+00:00","endpoint":null,"encryption":null,"privateEndpointConnections":null},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9","name":"configuration7d301eb9","location":"westus","tags":{}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Creating","creationDate":"2020-09-14T08:22:14.8778137+00:00","endpoint":null,"encryption":null,"privateEndpointConnections":null},"sku":null,"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9","name":"configuration7d301eb9","location":"westus","tags":{}}' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/bd30628d-fccb-dedb-aee6-711fde187914?api-version=2019-11-01-preview + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/af2462b6-4923-0170-9d5f-41c9acbb77bb?api-version=2020-06-01 cache-control: no-cache - content-length: '529' + content-length: '523' content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:31:02 GMT + date: Mon, 14 Sep 2020 08:22:15 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-subscription-writes: '1196' + x-ms-ratelimit-remaining-subscription-writes: '1198' status: code: 201 message: Created - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/qpyq37lpr4venwsmzpmwra5ytwsyczrypbiubbyd2xkjo4ifkmmod4ctsgm2rbiv5uwzebvaro2/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/bd30628d-fccb-dedb-aee6-711fde187914?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/af2462b6-4923-0170-9d5f-41c9acbb77bb?api-version=2020-06-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/bd30628d-fccb-dedb-aee6-711fde187914","name":"bd30628d-fccb-dedb-aee6-711fde187914","status":"Succeeded","error":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/af2462b6-4923-0170-9d5f-41c9acbb77bb","name":"af2462b6-4923-0170-9d5f-41c9acbb77bb","status":"Succeeded","error":null}' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/bd30628d-fccb-dedb-aee6-711fde187914?api-version=2019-11-01-preview + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/af2462b6-4923-0170-9d5f-41c9acbb77bb?api-version=2020-06-01 cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:31:12 GMT + date: Mon, 14 Sep 2020 08:22:25 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding @@ -58,26 +58,26 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/bd30628d-fccb-dedb-aee6-711fde187914?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.AppConfiguration/locations/westus/operationsStatus/af2462b6-4923-0170-9d5f-41c9acbb77bb?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9?api-version=2020-06-01 response: body: - string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-06-02T02:31:02+00:00","endpoint":"https://configuration7d301eb9.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":null},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9","name":"configuration7d301eb9","location":"westus","tags":{"my_tag":"myTagValue"}}' + string: '{"type":"Microsoft.AppConfiguration/configurationStores","properties":{"provisioningState":"Succeeded","creationDate":"2020-09-14T08:22:21+00:00","endpoint":"https://configuration7d301eb9.azconfig.io","encryption":{"keyVaultProperties":null},"privateEndpointConnections":null},"sku":{"name":"standard"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9","name":"configuration7d301eb9","location":"westus","tags":{"my_tag":"myTagValue"}}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:31:12 GMT - etag: W/"0f00c844-0000-0700-0000-5ed5b9e50000" + date: Mon, 14 Sep 2020 08:22:26 GMT + etag: W/"c001fb42-0000-0700-0000-5f5f283c0000" expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -85,29 +85,29 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/qpyq37lpr4venwsmzpmwra5ytwsyczrypbiubbyd2xkjo4ifkmmod4ctsgm2rbiv5uwzebvaro2/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/ListKeys?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/ListKeys?api-version=2020-06-01 response: body: - string: '{"value":[{"id":"7u0h-l1-s0:QxVXlvvbknjc29cmrxev","name":"Primary","value":"Z9tBkqwNU2iDHWwd3uNOTmmDcUDNiDIdayi5bbaN3bY=","connectionString":"Endpoint=https://configuration7d301eb9.azconfig.io;Id=7u0h-l1-s0:QxVXlvvbknjc29cmrxev;Secret=Z9tBkqwNU2iDHWwd3uNOTmmDcUDNiDIdayi5bbaN3bY=","lastModified":"2020-06-02T02:31:01+00:00","readOnly":false},{"id":"/ZrY-l1-s0:vNPEe9DJXREWRf/CpuAn","name":"Secondary","value":"l7pOuBqo3dAA0jEVN+wKHGjWg0I+ydhiDijtEGJ46i4=","connectionString":"Endpoint=https://configuration7d301eb9.azconfig.io;Id=/ZrY-l1-s0:vNPEe9DJXREWRf/CpuAn;Secret=l7pOuBqo3dAA0jEVN+wKHGjWg0I+ydhiDijtEGJ46i4=","lastModified":"2020-06-02T02:31:01+00:00","readOnly":false},{"id":"ArJh-l1-s0:ANcViP0BM/Cm93gJF76t","name":"Primary - Read Only","value":"LHTzMXSe9KO4huPGTSCbiR2dFSL47jmorl9AkdeUXeU=","connectionString":"Endpoint=https://configuration7d301eb9.azconfig.io;Id=ArJh-l1-s0:ANcViP0BM/Cm93gJF76t;Secret=LHTzMXSe9KO4huPGTSCbiR2dFSL47jmorl9AkdeUXeU=","lastModified":"2020-06-02T02:31:01+00:00","readOnly":true},{"id":"zQU+-l1-s0:tFj//waf3jlaCnrolnl9","name":"Secondary - Read Only","value":"N7nb7x2ErKGR31+pahrXwibSSyppDrd3uia+NY0jd20=","connectionString":"Endpoint=https://configuration7d301eb9.azconfig.io;Id=zQU+-l1-s0:tFj//waf3jlaCnrolnl9;Secret=N7nb7x2ErKGR31+pahrXwibSSyppDrd3uia+NY0jd20=","lastModified":"2020-06-02T02:31:01+00:00","readOnly":true}],"nextLink":null}' + string: '{"value":[{"id":"9Q5p-l1-s0:zSYBLg8+K0hj1KKd5ZfH","name":"Primary","value":"19fn1Vuz5jDtUWWpU02izSrjhHQvJlz6ZbgKeErXoEw=","connectionString":"Endpoint=https://configuration7d301eb9.azconfig.io;Id=9Q5p-l1-s0:zSYBLg8+K0hj1KKd5ZfH;Secret=19fn1Vuz5jDtUWWpU02izSrjhHQvJlz6ZbgKeErXoEw=","lastModified":"2020-09-14T08:22:20+00:00","readOnly":false},{"id":"Vz4t-l1-s0:WdGRGz+cxAO+3F9SSuQg","name":"Secondary","value":"sGhltmtX/egJt3wk+f2gTUaQOpwjuNmeAqRy6MiZL2o=","connectionString":"Endpoint=https://configuration7d301eb9.azconfig.io;Id=Vz4t-l1-s0:WdGRGz+cxAO+3F9SSuQg;Secret=sGhltmtX/egJt3wk+f2gTUaQOpwjuNmeAqRy6MiZL2o=","lastModified":"2020-09-14T08:22:20+00:00","readOnly":false},{"id":"y64F-l1-s0:ZHTFND8wrau1qia1SjFj","name":"Primary + Read Only","value":"WnzHbYpyFV3gNZddMFFhW1J5/5gyo8RZE2/w+QMJc0g=","connectionString":"Endpoint=https://configuration7d301eb9.azconfig.io;Id=y64F-l1-s0:ZHTFND8wrau1qia1SjFj;Secret=WnzHbYpyFV3gNZddMFFhW1J5/5gyo8RZE2/w+QMJc0g=","lastModified":"2020-09-14T08:22:20+00:00","readOnly":true},{"id":"YTz2-l1-s0:EXHNOc2un2moj93pucc4","name":"Secondary + Read Only","value":"WN8LXnenu2vHgALX2pAWbvRJhP65bWBhtAo9LpLT1h0=","connectionString":"Endpoint=https://configuration7d301eb9.azconfig.io;Id=YTz2-l1-s0:EXHNOc2un2moj93pucc4;Secret=WN8LXnenu2vHgALX2pAWbvRJhP65bWBhtAo9LpLT1h0=","lastModified":"2020-09-14T08:22:20+00:00","readOnly":true}],"nextLink":null}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:31:13 GMT + date: Mon, 14 Sep 2020 08:22:26 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -116,9 +116,9 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/ListKeys?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/qpyq37lpr4venwsmzpmwra5ytwsyczrypbiubbyd2xkjo4ifkmmod4ctsgm2rbiv5uwzebvaro2/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/ListKeys?api-version=2020-06-01 - request: - body: '{"id": "7u0h-l1-s0:QxVXlvvbknjc29cmrxev"}' + body: '{"id": "9Q5p-l1-s0:zSYBLg8+K0hj1KKd5ZfH"}' headers: Accept: - application/json @@ -127,20 +127,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/RegenerateKey?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/RegenerateKey?api-version=2020-06-01 response: body: - string: '{"id":"W2Kp-l1-s0:kEijy4oUJE42VqVaEzSa","name":"Primary","value":"hwbjfLdOSZQ2CmTyKaHQcRriAXdH6xZCeSonopqph64=","connectionString":"Endpoint=https://configuration7d301eb9.azconfig.io;Id=W2Kp-l1-s0:kEijy4oUJE42VqVaEzSa;Secret=hwbjfLdOSZQ2CmTyKaHQcRriAXdH6xZCeSonopqph64=","lastModified":"2020-06-02T02:31:13+00:00","readOnly":false}' + string: '{"id":"LR6t-l1-s0:g1OViQOK61MpLQltPme2","name":"Primary","value":"zIbAejsIbjUI/B+DKSZ++/5CQHoyJ1n0gYvcwn/yd4M=","connectionString":"Endpoint=https://configuration7d301eb9.azconfig.io;Id=LR6t-l1-s0:g1OViQOK61MpLQltPme2;Secret=zIbAejsIbjUI/B+DKSZ++/5CQHoyJ1n0gYvcwn/yd4M=","lastModified":"2020-09-14T08:22:27+00:00","readOnly":false}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:31:13 GMT + date: Mon, 14 Sep 2020 08:22:26 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -149,7 +149,7 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/RegenerateKey?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/qpyq37lpr4venwsmzpmwra5ytwsyczrypbiubbyd2xkjo4ifkmmod4ctsgm2rbiv5uwzebvaro2/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/RegenerateKey?api-version=2020-06-01 - request: body: '{"key": "PYTHON_UNIT_test_key_a6af8952-54a6-11e9-b600-2816a84d0309", "label": "test_label1_1d7b2b28-549e-11e9-b51c-2816a84d0309", "content_type": "test content @@ -168,17 +168,17 @@ interactions: If-None-Match: - '*' User-Agent: - - azsdk-python-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-appconfiguration/1.1.1 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) x-ms-content-sha256: - 5b/E4qQlXHTRod+n+f+xjK6c/tRVR8uxoC62FjvGJPw= x-ms-date: - - Jun, 02 2020 02:31:12 GMT + - Sep, 14 2020 08:22:27 GMT method: PUT uri: https://configuration7d301eb9.azconfig.io/kv/PYTHON_UNIT_test_key_a6af8952-54a6-11e9-b600-2816a84d0309?label=test_label1_1d7b2b28-549e-11e9-b51c-2816a84d0309&api-version=1.0 response: body: - string: '{"etag":"wnBGgqlqouSLUDTn6Lu4gr4iqZS","key":"PYTHON_UNIT_test_key_a6af8952-54a6-11e9-b600-2816a84d0309","label":"test_label1_1d7b2b28-549e-11e9-b51c-2816a84d0309","content_type":"test - content type","value":"test value","tags":{"tag1":"tag1","tag2":"tag2"},"locked":false,"last_modified":"2020-06-02T02:31:15+00:00"}' + string: '{"etag":"4CeEorp8OITTdC0NeTxlMrXBCtu","key":"PYTHON_UNIT_test_key_a6af8952-54a6-11e9-b600-2816a84d0309","label":"test_label1_1d7b2b28-549e-11e9-b51c-2816a84d0309","content_type":"test + content type","value":"test value","tags":{"tag1":"tag1","tag2":"tag2"},"locked":false,"last_modified":"2020-09-14T08:22:29+00:00"}' headers: access-control-allow-credentials: - 'true' @@ -189,23 +189,23 @@ interactions: Cache-Control, Content-Type, Authorization, x-ms-client-request-id, x-ms-useragent, x-ms-content-sha256, x-ms-date, host, Accept, Accept-Datetime, Date, If-Match, If-None-Match, Sync-Token, x-ms-return-client-request-id, ETag, Last-Modified, - Link, Memento-Datetime, x-ms-retry-after, x-ms-request-id, WWW-Authenticate + Link, Memento-Datetime, retry-after-ms, x-ms-request-id, WWW-Authenticate connection: - keep-alive content-type: - application/vnd.microsoft.appconfig.kv+json; charset=utf-8 date: - - Tue, 02 Jun 2020 02:31:15 GMT + - Mon, 14 Sep 2020 08:22:28 GMT etag: - - '"wnBGgqlqouSLUDTn6Lu4gr4iqZS"' + - '"4CeEorp8OITTdC0NeTxlMrXBCtu"' last-modified: - - Tue, 02 Jun 2020 02:31:15 GMT + - Mon, 14 Sep 2020 08:22:29 GMT server: - openresty/1.15.8.3 strict-transport-security: - max-age=15724800; includeSubDomains sync-token: - - zAJw6V16=ODoxIzE3MzcyNTU=;sn=1737255 + - zAJw6V16=Mzo0IzE5NjkzODQjMT0tMQ==;sn=1969384 transfer-encoding: - chunked status: @@ -222,21 +222,21 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-mgmt-appconfiguration/0.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-mgmt-appconfiguration/1.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/listKeyValue?api-version=2019-11-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/listKeyValue?api-version=2020-06-01 response: body: string: '{"key":"PYTHON_UNIT_test_key_a6af8952-54a6-11e9-b600-2816a84d0309","label":"test_label1_1d7b2b28-549e-11e9-b51c-2816a84d0309","value":"test - value","contentType":"test content type","eTag":"wnBGgqlqouSLUDTn6Lu4gr4iqZS","lastModified":"2020-06-02T02:31:15+00:00","locked":false,"tags":{"tag1":"tag1","tag2":"tag2"}}' + value","contentType":"test content type","eTag":"4CeEorp8OITTdC0NeTxlMrXBCtu","lastModified":"2020-09-14T08:22:29+00:00","locked":false,"tags":{"tag1":"tag1","tag2":"tag2"}}' headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 02 Jun 2020 02:31:15 GMT + date: Mon, 14 Sep 2020 08:22:28 GMT expires: '-1' pragma: no-cache - server: openresty/1.15.8.1 + server: nginx/1.17.10 strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked vary: Accept-Encoding,Accept-Encoding @@ -245,5 +245,5 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rgname/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/listKeyValue?api-version=2019-11-01-preview + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/qpyq37lpr4venwsmzpmwra5ytwsyczrypbiubbyd2xkjo4ifkmmod4ctsgm2rbiv5uwzebvaro2/providers/Microsoft.AppConfiguration/configurationStores/configuration7d301eb9/listKeyValue?api-version=2020-06-01 version: 1 diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/test_cli_mgmt_appconfiguration.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/test_cli_mgmt_appconfiguration.py index f5465168be0a..a88421488ab5 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/test_cli_mgmt_appconfiguration.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/tests/test_cli_mgmt_appconfiguration.py @@ -10,10 +10,10 @@ # TEST SCENARIO COVERAGE # ---------------------- # Methods Total : 17 -# Methods Covered : 16 +# Methods Covered : 17 # Examples Total : 19 # Examples Tested : 19 -# Coverage % : 94.11764705882352 +# Coverage % : 100 # ---------------------- # covered ops: From 5399a3d27730177a26832d79ccf887f16015ced0 Mon Sep 17 00:00:00 2001 From: 00Kai0 Date: Tue, 15 Sep 2020 17:33:22 +0800 Subject: [PATCH 2/4] fix changelog --- .../azure-mgmt-appconfiguration/CHANGELOG.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md b/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md index cd0b1588cf34..c6c847c19635 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md @@ -4,10 +4,7 @@ **Features** - - Model ConfigurationStoreUpdateParameters has a new parameter properties - - Added operation ConfigurationStoresOperations.create - - Added operation ConfigurationStoresOperations.update - - Added operation ConfigurationStoresOperations.delete + - Model ConfigurationStoreUpdateParameters has a new parameter public_network_access **Breaking changes** From 11d8e5578f45a41b476bcaa1acb8655282eef49f Mon Sep 17 00:00:00 2001 From: 00Kai0 Date: Tue, 15 Sep 2020 17:40:41 +0800 Subject: [PATCH 3/4] fix version --- .../azure/mgmt/appconfiguration/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_version.py b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_version.py index 645cd18c85d4..c47f66669f1b 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_version.py +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/azure/mgmt/appconfiguration/_version.py @@ -6,4 +6,4 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -VERSION = "16.0.0" +VERSION = "1.0.0" From ce51668db5e7806eef2fab0a0368e61d7b302118 Mon Sep 17 00:00:00 2001 From: 00Kai0 Date: Wed, 16 Sep 2020 14:35:40 +0800 Subject: [PATCH 4/4] fix changelog --- .../azure-mgmt-appconfiguration/CHANGELOG.md | 20 ------------------- 1 file changed, 20 deletions(-) diff --git a/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md b/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md index c6c847c19635..740b563429a8 100644 --- a/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md +++ b/sdk/appconfiguration/azure-mgmt-appconfiguration/CHANGELOG.md @@ -6,26 +6,6 @@ - Model ConfigurationStoreUpdateParameters has a new parameter public_network_access -**Breaking changes** - - - Operation Operations.list has a new signature - - Operation ConfigurationStoresOperations.list_keys has a new signature - - Operation ConfigurationStoresOperations.list_by_resource_group has a new signature - - Operation ConfigurationStoresOperations.list has a new signature - - Operation ConfigurationStoresOperations.get has a new signature - - Model ConfigurationStore no longer has parameter private_endpoint_connections - - Model ConfigurationStore no longer has parameter public_network_access - - Model ConfigurationStore no longer has parameter encryption - - Model ConfigurationStoreUpdateParameters no longer has parameter encryption - - Operation ConfigurationStoresOperations.list_key_value has a new signature - - Operation ConfigurationStoresOperations.regenerate_key has a new signature - - Operation Operations.check_name_availability has a new signature - - Removed operation ConfigurationStoresOperations.begin_update - - Removed operation ConfigurationStoresOperations.begin_delete - - Removed operation ConfigurationStoresOperations.begin_create - - Removed operation group PrivateLinkResourcesOperations - - Removed operation group PrivateEndpointConnectionsOperations - ## 1.0.0b1 (2020-06-17) This is beta preview version.