From 802ef10d5e536a4fb995fb0a52e43ebb5e1b687f Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Tue, 24 Aug 2021 22:24:20 -0700 Subject: [PATCH 01/11] Add audience kwarg --- .../azure/containerregistry/__init__.py | 2 ++ .../_container_registry_client.py | 14 ++++++++----- .../azure/containerregistry/_enums.py | 17 ++++++++++++++++ .../aio/_async_container_registry_client.py | 11 +++++----- .../tests/asynctestcase.py | 10 +++++----- .../tests/test_container_registry_client.py | 9 ++++++--- .../test_container_registry_client_async.py | 8 ++++---- .../azure-containerregistry/tests/testcase.py | 20 +++++++++---------- 8 files changed, 58 insertions(+), 33 deletions(-) create mode 100644 sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py index 3ddc08fd3e1a..8791d0b10add 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py @@ -7,6 +7,7 @@ # -------------------------------------------------------------------------- from ._container_registry_client import ContainerRegistryClient +from ._enums import ContainerRegistryAudience from ._models import ( ArtifactArchitecture, ArtifactOperatingSystem, @@ -29,4 +30,5 @@ "RepositoryProperties", "TagOrder", "ArtifactTagProperties", + "ContainerRegistryAudience", ] diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py index 8a2ca2c0c170..1ac21b4ef393 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py @@ -31,10 +31,10 @@ def __init__(self, endpoint, credential=None, **kwargs): :param str endpoint: An ACR endpoint :param credential: The credential with which to authenticate :type credential: :class:`~azure.core.credentials.TokenCredential` - :keyword credential_scopes: URL for credential authentication if different from the default - :paramtype credential_scopes: List[str] + :keyword audience: URL to use for credential authentication with AAD + :paramtype audience: ~azure.containerregistry.ContainerRegistryAudience or str :returns: None - :raises: None + :raises ValueError: if audience keyword-only argument isn't provided .. admonition:: Example: @@ -45,11 +45,15 @@ def __init__(self, endpoint, credential=None, **kwargs): :dedent: 8 :caption: Instantiate an instance of `ContainerRegistryClient` """ + audience = kwargs.pop("audience", None) + if not audience: + raise ValueError("The argument audience must be set to initialize ContainerRegistryClient.") + defaultScope = [audience + "/.default"] if not endpoint.startswith("https://") and not endpoint.startswith("http://"): endpoint = "https://" + endpoint self._endpoint = endpoint - self._credential = credential - super(ContainerRegistryClient, self).__init__(endpoint=endpoint, credential=credential, **kwargs) + self._credential = credential + super(ContainerRegistryClient, self).__init__(endpoint=endpoint, credential=credential, credential_scopes=defaultScope, **kwargs) def _get_digest_from_tag(self, repository, tag): # type: (str, str) -> str diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py new file mode 100644 index 000000000000..25152b0cee74 --- /dev/null +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py @@ -0,0 +1,17 @@ +# ------------------------------------ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. +# ------------------------------------ +# pylint:skip-file (avoids crash due to six.with_metaclass https://github.com/PyCQA/astroid/issues/713) +from enum import Enum +from six import with_metaclass + +from azure.core import CaseInsensitiveEnumMeta + +class ContainerRegistryAudience(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Supported container registry audience""" + + ARM_CHINA_VALUE = "https://management.chinacloudapi.cn" + ARM_GERMANY_VALUE = "https://management.microsoftazure.de" + ARM_GOVERNMENT_VALUE = "https://management.usgovcloudapi.net" + ARM_PUBLIC_CLOUD_VALUE = "https://management.azure.com" diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py index f6c7c11b0090..443a3997c49d 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py @@ -26,15 +26,15 @@ class ContainerRegistryClient(ContainerRegistryBaseClient): - def __init__(self, endpoint: str, credential: Optional["AsyncTokenCredential"] = None, **kwargs: Any) -> None: + def __init__(self, endpoint: str, credential: Optional["AsyncTokenCredential"] = None, *, audience, **kwargs: Any) -> None: """Create a ContainerRegistryClient from an endpoint and a credential :param endpoint: An ACR endpoint :type endpoint: str :param credential: The credential with which to authenticate :type credential: :class:`~azure.core.credentials_async.AsyncTokenCredential` - :keyword credential_scopes: URL for credential authentication if different from the default - :paramtype credential_scopes: List[str] + :keyword audience: URL to use for credential authentication with AAD + :paramtype audience: ~azure.containerregistry.ContainerRegistryAudience or str :returns: None :raises: None @@ -46,12 +46,13 @@ def __init__(self, endpoint: str, credential: Optional["AsyncTokenCredential"] = :language: python :dedent: 8 :caption: Instantiate an instance of `ContainerRegistryClient` - """ + """ + defaultScope = [audience + "/.default"] if not endpoint.startswith("https://") and not endpoint.startswith("http://"): endpoint = "https://" + endpoint self._endpoint = endpoint self._credential = credential - super(ContainerRegistryClient, self).__init__(endpoint=endpoint, credential=credential, **kwargs) + super(ContainerRegistryClient, self).__init__(endpoint=endpoint, credential=credential, credential_scopes=defaultScope, **kwargs) async def _get_digest_from_tag(self, repository: str, tag: str) -> str: tag_props = await self.get_tag_properties(repository, tag) diff --git a/sdk/containerregistry/azure-containerregistry/tests/asynctestcase.py b/sdk/containerregistry/azure-containerregistry/tests/asynctestcase.py index ab5455990971..3af78d65041d 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/asynctestcase.py +++ b/sdk/containerregistry/azure-containerregistry/tests/asynctestcase.py @@ -14,7 +14,7 @@ from azure.identity.aio import DefaultAzureCredential, ClientSecretCredential from azure.identity import AzureAuthorityHosts -from testcase import ContainerRegistryTestClass, get_authorization_scope, get_authority +from testcase import ContainerRegistryTestClass, get_audience, get_authority logger = logging.getLogger() @@ -51,11 +51,11 @@ def create_registry_client(self, endpoint, **kwargs): authority = get_authority(endpoint) audience = kwargs.pop("audience", None) if not audience: - audience = get_authorization_scope(authority) + audience = get_audience(authority) credential = self.get_credential(authority=authority) - return ContainerRegistryClient(endpoint=endpoint, credential=credential, credential_scopes=audience, **kwargs) + return ContainerRegistryClient(endpoint=endpoint, credential=credential, audience=audience, **kwargs) def create_anon_client(self, endpoint, **kwargs): authority = get_authority(endpoint) - audience = get_authorization_scope(authority) - return ContainerRegistryClient(endpoint=endpoint, credential=None, credential_scopes=audience, **kwargs) + audience = get_audience(authority) + return ContainerRegistryClient(endpoint=endpoint, credential=None, audience=audience, **kwargs) diff --git a/sdk/containerregistry/azure-containerregistry/tests/test_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/tests/test_container_registry_client.py index 33b2ce982773..afae298c667b 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/test_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/tests/test_container_registry_client.py @@ -571,10 +571,13 @@ def test_expiration_time_parsing(self, containerregistry_endpoint): # Live only, the fake credential doesn't check auth scope the same way @pytest.mark.live_test_only @acr_preparer() - def test_incorrect_credential_scopes(self, containerregistry_endpoint): + def test_construct_container_registry_client(self, containerregistry_endpoint): authority = get_authority(containerregistry_endpoint) credential = self.get_credential(authority) - client = ContainerRegistryClient(endpoint=containerregistry_endpoint, credential=credential, credential_scopes="https://microsoft.com") + client = ContainerRegistryClient(endpoint=containerregistry_endpoint, credential=credential, audience="https://microsoft.com") with pytest.raises(ClientAuthenticationError): - properties = client.get_repository_properties(HELLO_WORLD) \ No newline at end of file + properties = client.get_repository_properties(HELLO_WORLD) + + with pytest.raises(ValueError): + client = ContainerRegistryClient(endpoint=containerregistry_endpoint, credential=credential) diff --git a/sdk/containerregistry/azure-containerregistry/tests/test_container_registry_client_async.py b/sdk/containerregistry/azure-containerregistry/tests/test_container_registry_client_async.py index 7493e8d0986b..a3d357d84af2 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/test_container_registry_client_async.py +++ b/sdk/containerregistry/azure-containerregistry/tests/test_container_registry_client_async.py @@ -564,10 +564,10 @@ async def test_expiration_time_parsing(self, containerregistry_endpoint): # Live only, the fake credential doesn't check auth scope the same way @pytest.mark.live_test_only @acr_preparer() - async def test_incorrect_credential_scopes(self, containerregistry_endpoint): + async def test_construct_container_registry_client(self, containerregistry_endpoint): authority = get_authority(containerregistry_endpoint) credential = self.get_credential(authority) - client = ContainerRegistryClient(endpoint=containerregistry_endpoint, credential=credential, credential_scopes="https://microsoft.com") - + + client = ContainerRegistryClient(endpoint=containerregistry_endpoint, credential=credential, audience="https://microsoft.com") with pytest.raises(ClientAuthenticationError): - properties = await client.get_repository_properties(HELLO_WORLD) \ No newline at end of file + properties = await client.get_repository_properties(HELLO_WORLD) diff --git a/sdk/containerregistry/azure-containerregistry/tests/testcase.py b/sdk/containerregistry/azure-containerregistry/tests/testcase.py index fd1c89267b9c..22c11a4e97a5 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/testcase.py +++ b/sdk/containerregistry/azure-containerregistry/tests/testcase.py @@ -11,9 +11,7 @@ import six import time -from azure.containerregistry import ( - ContainerRegistryClient, -) +from azure.containerregistry import ContainerRegistryAudience, ContainerRegistryClient from azure.containerregistry._helpers import _is_tag from azure.core.credentials import AccessToken @@ -175,15 +173,15 @@ def create_registry_client(self, endpoint, **kwargs): authority = get_authority(endpoint) audience = kwargs.pop("audience", None) if not audience: - audience = get_authorization_scope(authority) + audience = get_audience(authority) credential = self.get_credential(authority=authority) logger.warning("Authority: {} \nAuthorization scope: {}".format(authority, audience)) - return ContainerRegistryClient(endpoint=endpoint, credential=credential, credential_scopes=audience, **kwargs) + return ContainerRegistryClient(endpoint=endpoint, credential=credential, audience=audience, **kwargs) def create_anon_client(self, endpoint, **kwargs): authority = get_authority(endpoint) - audience = get_authorization_scope(authority) - return ContainerRegistryClient(endpoint=endpoint, credential=None, credential_scopes=audience, **kwargs) + audience = get_audience(authority) + return ContainerRegistryClient(endpoint=endpoint, credential=None, audience=audience, **kwargs) def set_all_properties(self, properties, value): properties.can_delete = value @@ -223,16 +221,16 @@ def get_authority(endpoint): raise ValueError("Endpoint ({}) could not be understood".format(endpoint)) -def get_authorization_scope(authority): +def get_audience(authority): if authority == AzureAuthorityHosts.AZURE_PUBLIC_CLOUD: logger.warning("Public auth scope") - return ["https://management.core.windows.net/.default"] + return ContainerRegistryAudience.ARM_PUBLIC_CLOUD_VALUE if authority == AzureAuthorityHosts.AZURE_CHINA: logger.warning("China scope") - return ["https://management.chinacloudapi.cn/.default"] + return ContainerRegistryAudience.ARM_CHINA_VALUE if authority == AzureAuthorityHosts.AZURE_GOVERNMENT: logger.warning("US Gov scope") - return ["https://management.usgovcloudapi.net/.default"] + return ContainerRegistryAudience.ARM_GOVERNMENT_VALUE def get_base_url(authority): if authority == AzureAuthorityHosts.AZURE_PUBLIC_CLOUD: From 8e1f5734785cd7e9cd8e1a8c4f62077fd06fbcdc Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Mon, 30 Aug 2021 13:49:35 -0700 Subject: [PATCH 02/11] Update recordings --- ...test_anon_access.test_delete_manifest.yaml | 36 +- ...st_anon_access.test_delete_repository.yaml | 14 +- .../test_anon_access.test_delete_tag.yaml | 14 +- ...n_access.test_get_manifest_properties.yaml | 47 +-- ...access.test_get_repository_properties.yaml | 18 +- ..._access.test_list_manifest_properties.yaml | 79 ++-- ...non_access.test_list_repository_names.yaml | 19 +- ...ss.test_list_repository_names_by_page.yaml | 160 ++++++- ..._anon_access.test_list_tag_properties.yaml | 34 +- ...ccess.test_update_manifest_properties.yaml | 83 ++-- ...ess.test_update_repository_properties.yaml | 32 +- ...non_access.test_update_tag_properties.yaml | 32 +- ...non_access_async.test_delete_manifest.yaml | 40 +- ...n_access_async.test_delete_repository.yaml | 14 +- ...est_anon_access_async.test_delete_tag.yaml | 14 +- ...ss_async.test_get_manifest_properties.yaml | 60 +-- ..._async.test_get_repository_properties.yaml | 16 +- ...s_async.test_list_manifest_properties.yaml | 66 +-- ...cess_async.test_list_repository_names.yaml | 19 +- ...nc.test_list_repository_names_by_page.yaml | 116 +++++- ...access_async.test_list_tag_properties.yaml | 18 +- ...async.test_update_manifest_properties.yaml | 91 ++-- ...ync.test_update_repository_properties.yaml | 32 +- ...cess_async.test_update_tag_properties.yaml | 32 +- ...t_construct_container_registry_client.yaml | 87 ++++ ..._registry_client.test_delete_manifest.yaml | 62 +-- ...t.test_delete_manifest_does_not_exist.yaml | 91 ++-- ...egistry_client.test_delete_repository.yaml | 53 +-- ...test_delete_repository_does_not_exist.yaml | 22 +- ...ainer_registry_client.test_delete_tag.yaml | 60 +-- ...client.test_delete_tag_does_not_exist.yaml | 22 +- ...y_client.test_expiration_time_parsing.yaml | 36 +- ...y_client.test_get_manifest_properties.yaml | 63 +-- ...et_manifest_properties_does_not_exist.yaml | 89 ++-- ...client.test_get_repository_properties.yaml | 24 +- ...gistry_client.test_get_tag_properties.yaml | 26 +- ...est_get_tag_properties_does_not_exist.yaml | 4 +- ...y_client.test_list_registry_artifacts.yaml | 96 ++--- ...est_list_registry_artifacts_ascending.yaml | 192 ++++----- ....test_list_registry_artifacts_by_page.yaml | 260 ++++++------ ...st_list_registry_artifacts_descending.yaml | 190 ++++----- ...try_client.test_list_repository_names.yaml | 22 +- ...nt.test_list_repository_names_by_page.yaml | 110 ++--- ...istry_client.test_list_tag_properties.yaml | 40 +- ...t_list_tag_properties_order_ascending.yaml | 88 ++-- ..._list_tag_properties_order_descending.yaml | 88 ++-- ...lient.test_update_manifest_properties.yaml | 189 ++++----- ...est_update_manifest_properties_kwargs.yaml | 378 ++++++++--------- ...ent.test_update_repository_properties.yaml | 78 ++-- ...t_update_repository_properties_kwargs.yaml | 182 ++++---- ...try_client.test_update_tag_properties.yaml | 84 ++-- ...ent.test_update_tag_properties_kwargs.yaml | 156 +++---- ...t_construct_container_registry_client.yaml | 59 +++ ...try_client_async.test_delete_manifest.yaml | 72 ++-- ...c.test_delete_manifest_does_not_exist.yaml | 93 ++--- ...y_client_async.test_delete_repository.yaml | 49 +-- ...test_delete_repository_does_not_exist.yaml | 20 +- ...registry_client_async.test_delete_tag.yaml | 54 +-- ..._async.test_delete_tag_does_not_exist.yaml | 22 +- ...nt_async.test_expiration_time_parsing.yaml | 34 +- ...nt_async.test_get_manifest_properties.yaml | 63 +-- ...et_manifest_properties_does_not_exist.yaml | 4 +- ..._async.test_get_repository_properties.yaml | 22 +- ..._client_async.test_get_tag_properties.yaml | 24 +- ...est_get_tag_properties_does_not_exist.yaml | 4 +- ...nt_async.test_list_registry_artifacts.yaml | 94 ++--- ...est_list_registry_artifacts_ascending.yaml | 188 ++++----- ....test_list_registry_artifacts_by_page.yaml | 268 ++++++------ ...st_list_registry_artifacts_descending.yaml | 188 ++++----- ...ient_async.test_list_repository_names.yaml | 20 +- ...nc.test_list_repository_names_by_page.yaml | 240 +++++------ ...client_async.test_list_tag_properties.yaml | 38 +- ...t_list_tag_properties_order_ascending.yaml | 88 ++-- ..._list_tag_properties_order_descending.yaml | 84 ++-- ...async.test_update_manifest_properties.yaml | 189 ++++----- ...est_update_manifest_properties_kwargs.yaml | 390 +++++++++--------- ...y_client_async.test_update_properties.yaml | 72 ++-- ...t_update_repository_properties_kwargs.yaml | 168 ++++---- ...ient_async.test_update_tag_properties.yaml | 72 ++-- ...ync.test_update_tag_properties_kwargs.yaml | 144 +++---- 80 files changed, 3517 insertions(+), 3124 deletions(-) create mode 100644 sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_construct_container_registry_client.yaml create mode 100644 sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_construct_container_registry_client.yaml diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_manifest.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_manifest.yaml index 48995ea18285..7807175dae53 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_manifest.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_manifest.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:52 GMT + - Mon, 30 Aug 2021 20:27:52 GMT docker-distribution-api-version: - registry/2.0 server: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:52 GMT + - Mon, 30 Aug 2021 20:27:52 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.55' + - '166.516667' status: code: 200 message: OK @@ -93,14 +93,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "tag": {"name": "latest", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:24.1991429Z", "lastUpdateTime": "2021-08-17T18:04:24.1991429Z", + "tag": {"name": "latest", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:20.0468904Z", "lastUpdateTime": "2021-08-30T10:55:20.0468904Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -116,7 +116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:52 GMT + - Mon, 30 Aug 2021 20:27:52 GMT docker-distribution-api-version: - registry/2.0 server: @@ -141,9 +141,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/library%2Fhello-world/manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/v2/library%2Fhello-world/manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -162,7 +162,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:52 GMT + - Mon, 30 Aug 2021 20:27:52 GMT docker-distribution-api-version: - registry/2.0 server: @@ -191,7 +191,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -203,7 +203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:52 GMT + - Mon, 30 Aug 2021 20:27:52 GMT server: - openresty strict-transport-security: @@ -211,7 +211,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.533333' + - '165.966667' status: code: 200 message: OK @@ -227,9 +227,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/library%2Fhello-world/manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/v2/library%2Fhello-world/manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -248,7 +248,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:52 GMT + - Mon, 30 Aug 2021 20:27:52 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_repository.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_repository.yaml index 3214042bb3df..b761ba56eab3 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_repository.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_repository.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:52 GMT + - Mon, 30 Aug 2021 20:27:52 GMT docker-distribution-api-version: - registry/2.0 server: @@ -61,7 +61,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:52 GMT + - Mon, 30 Aug 2021 20:27:52 GMT server: - openresty strict-transport-security: @@ -81,7 +81,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.65' + - '166.383333' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -118,7 +118,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:52 GMT + - Mon, 30 Aug 2021 20:27:52 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_tag.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_tag.yaml index 7c0e9a18be9f..748d21c8eb33 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_tag.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_delete_tag.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:52 GMT + - Mon, 30 Aug 2021 20:27:52 GMT docker-distribution-api-version: - registry/2.0 server: @@ -61,7 +61,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT server: - openresty strict-transport-security: @@ -81,7 +81,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.116667' + - '166.083333' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -118,7 +118,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_get_manifest_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_get_manifest_properties.yaml index 355fb8ddd88b..96d9ee58be1a 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_get_manifest_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_get_manifest_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT docker-distribution-api-version: - registry/2.0 server: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.183333' + - '166.616667' status: code: 200 message: OK @@ -93,14 +93,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "tag": {"name": "latest", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:24.1991429Z", "lastUpdateTime": "2021-08-17T18:04:24.1991429Z", + "tag": {"name": "latest", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:20.0468904Z", "lastUpdateTime": "2021-08-30T10:55:20.0468904Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -116,7 +116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT docker-distribution-api-version: - registry/2.0 server: @@ -139,9 +139,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -160,7 +160,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT docker-distribution-api-version: - registry/2.0 server: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -201,7 +201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT server: - openresty strict-transport-security: @@ -209,7 +209,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.166667' + - '165.933333' status: code: 200 message: OK @@ -223,15 +223,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:04:20.3411937Z", "lastUpdateTime": - "2021-08-17T18:04:20.3411937Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T10:55:18.8616842Z", "lastUpdateTime": + "2021-08-30T10:55:18.8616842Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest", "v1", "v2", "v3", "v4"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -243,7 +243,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -254,11 +255,11 @@ interactions: connection: - keep-alive content-length: - - '1725' + - '1848' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_get_repository_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_get_repository_properties.yaml index 15f546528641..1f75b932b39c 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_get_repository_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_get_repository_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT docker-distribution-api-version: - registry/2.0 server: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.983333' + - '166.55' status: code: 200 message: OK @@ -93,14 +93,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "createdTime": "2021-08-17T18:04:20.3129746Z", "lastUpdateTime": "2021-08-17T18:04:16.4657043Z", - "manifestCount": 11, "tagCount": 5, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T10:55:18.7315572Z", "lastUpdateTime": "2021-08-30T10:55:16.1911692Z", + "manifestCount": 12, "tagCount": 5, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -116,7 +116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_manifest_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_manifest_properties.yaml index fbf3f6938dba..25df5e4d71a9 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_manifest_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_manifest_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:53 GMT docker-distribution-api-version: - registry/2.0 server: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:53 GMT + - Mon, 30 Aug 2021 20:27:54 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.633333' + - '166.583333' status: code: 200 message: OK @@ -93,67 +93,72 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "manifests": [{"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:04:20.3411937Z", "lastUpdateTime": - "2021-08-17T18:04:20.3411937Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", - "tags": ["latest", "v1", "v2", "v3", "v4"], "changeableAttributes": {"deleteEnabled": - true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"digest": - "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", - "imageSize": 525, "createdTime": "2021-08-17T18:04:21.3277628Z", "lastUpdateTime": - "2021-08-17T18:04:21.3277628Z", "architecture": "amd64", "os": "linux", "mediaType": + "manifests": [{"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", + "imageSize": 1125, "createdTime": "2021-08-30T10:55:19.5475281Z", "lastUpdateTime": + "2021-08-30T10:55:19.5475281Z", "architecture": "amd64", "os": "windows", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", + "imageSize": 525, "createdTime": "2021-08-30T10:55:18.9674103Z", "lastUpdateTime": + "2021-08-30T10:55:18.9674103Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", - "imageSize": 525, "createdTime": "2021-08-17T18:06:04.8833061Z", "lastUpdateTime": - "2021-08-17T18:06:04.8833061Z", "architecture": "ppc64le", "os": "linux", + "imageSize": 525, "createdTime": "2021-08-30T10:55:19.2694982Z", "lastUpdateTime": + "2021-08-30T10:55:19.2694982Z", "architecture": "ppc64le", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}, {"digest": "sha256:58d91e6625a0ea837222f24da4ca00be9da3db45cee5b172135eaf271610f9eb", - "imageSize": 525, "createdTime": "2021-08-17T18:04:21.4942391Z", "lastUpdateTime": - "2021-08-17T18:04:21.4942391Z", "architecture": "arm", "os": "linux", "mediaType": + "imageSize": 525, "createdTime": "2021-08-30T10:55:18.7603603Z", "lastUpdateTime": + "2021-08-30T10:55:18.7603603Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "imageSize": 525, "createdTime": "2021-08-17T18:04:20.8782844Z", "lastUpdateTime": - "2021-08-17T18:04:20.8782844Z", "architecture": "s390x", "os": "linux", "mediaType": + "imageSize": 525, "createdTime": "2021-08-30T10:55:21.7435166Z", "lastUpdateTime": + "2021-08-30T10:55:21.7435166Z", "architecture": "s390x", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:88b2e00179bd6c4064612403c8d42a13de7ca809d61fee966ce9e129860a8a90", - "imageSize": 525, "createdTime": "2021-08-17T18:04:20.536826Z", "lastUpdateTime": - "2021-08-17T18:04:20.536826Z", "architecture": "mips64le", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "imageSize": 1125, "createdTime": "2021-08-30T10:55:19.8412939Z", "lastUpdateTime": + "2021-08-30T10:55:19.8412939Z", "architecture": "amd64", "os": "windows", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T10:55:18.8616842Z", "lastUpdateTime": + "2021-08-30T10:55:18.8616842Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "tags": ["latest", "v1", "v2", "v3", "v4"], "changeableAttributes": {"deleteEnabled": + true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"digest": + "sha256:88b2e00179bd6c4064612403c8d42a13de7ca809d61fee966ce9e129860a8a90", + "imageSize": 525, "createdTime": "2021-08-30T10:55:19.3257847Z", "lastUpdateTime": + "2021-08-30T10:55:19.3257847Z", "architecture": "mips64le", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}, {"digest": "sha256:94b700b6ae5759e539e06fa6d483f5f0174067945f180cc1362cfda71c5fd722", - "imageSize": 525, "createdTime": "2021-08-17T18:04:21.4039907Z", "lastUpdateTime": - "2021-08-17T18:04:21.4039907Z", "architecture": "arm", "os": "linux", "mediaType": + "imageSize": 525, "createdTime": "2021-08-30T10:55:19.5837336Z", "lastUpdateTime": + "2021-08-30T10:55:19.5837336Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}, {"digest": "sha256:a10c347f4cc2924af832d319635d6d027ca8820ff683b6bcc728d825a37a7f69", - "imageSize": 525, "createdTime": "2021-08-17T18:04:21.647164Z", "lastUpdateTime": - "2021-08-17T18:04:21.647164Z", "architecture": "arm64", "os": "linux", "mediaType": + "imageSize": 525, "createdTime": "2021-08-30T10:55:18.8253862Z", "lastUpdateTime": + "2021-08-30T10:55:18.8253862Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", - "imageSize": 525, "createdTime": "2021-08-17T18:04:20.4469291Z", "lastUpdateTime": - "2021-08-17T18:04:20.4469291Z", "architecture": "riscv64", "os": "linux", + "imageSize": 525, "createdTime": "2021-08-30T10:55:19.9977398Z", "lastUpdateTime": + "2021-08-30T10:55:19.9977398Z", "architecture": "riscv64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}, {"digest": "sha256:cb55d8f7347376e1ba38ca740904b43c9a52f66c7d2ae1ef1a0de1bc9f40df98", - "imageSize": 525, "createdTime": "2021-08-17T18:04:20.6151862Z", "lastUpdateTime": - "2021-08-17T18:04:20.6151862Z", "architecture": "386", "os": "linux", "mediaType": + "imageSize": 525, "createdTime": "2021-08-30T10:55:19.3913554Z", "lastUpdateTime": + "2021-08-30T10:55:19.3913554Z", "architecture": "386", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", - "imageSize": 1125, "createdTime": "2021-08-17T18:04:20.5825244Z", "lastUpdateTime": - "2021-08-17T18:04:20.5825244Z", "architecture": "amd64", "os": "windows", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' headers: access-control-expose-headers: @@ -166,7 +171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:54 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_repository_names.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_repository_names.yaml index 4f4a7583eb04..1fd35fe47109 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_repository_names.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_repository_names.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:54 GMT docker-distribution-api-version: - registry/2.0 server: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:54 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.1' + - '166.65' status: code: 200 message: OK @@ -93,12 +93,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: body: - string: '{"repositories": ["library/alpine", "library/busybox", "library/hello-world"]}' + string: '{"repositories": ["library/alpine", "library/busybox", "library/hello-world", + "repo26ab150f", "repo93d41b55"]}' headers: access-control-expose-headers: - Docker-Content-Digest @@ -108,11 +109,11 @@ interactions: connection: - keep-alive content-length: - - '76' + - '106' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:54 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_repository_names_by_page.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_repository_names_by_page.yaml index a9928f0b0908..de2ed90f2a86 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_repository_names_by_page.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_repository_names_by_page.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?n=2 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:54 GMT docker-distribution-api-version: - registry/2.0 server: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:55 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.283333' + - '166.066667' status: code: 200 message: OK @@ -93,7 +93,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?n=2 response: @@ -112,7 +112,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 link: @@ -137,7 +137,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=library%2Fbusybox&n=2&orderby= response: @@ -158,7 +158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: @@ -187,7 +187,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -199,7 +199,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:55 GMT server: - openresty strict-transport-security: @@ -207,7 +207,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.266667' + - '166.05' status: code: 200 message: OK @@ -221,12 +221,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=library%2Fbusybox&n=2&orderby= response: body: - string: '{"repositories": ["library/hello-world"]}' + string: '{"repositories": ["library/hello-world", "repo26ab150f"]}' headers: access-control-expose-headers: - Docker-Content-Digest @@ -236,11 +236,139 @@ interactions: connection: - keep-alive content-length: - - '41' + - '56' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:55 GMT + docker-distribution-api-version: + - registry/2.0 + link: + - ; rel="next" + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo26ab150f&n=2&orderby= + response: + body: + string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, + visit https://aka.ms/acr/authorization for more information.", "detail": [{"Type": + "registry", "Name": "catalog", "Action": "*"}]}]}' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '196' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 30 Aug 2021 20:27:55 GMT + docker-distribution-api-version: + - registry/2.0 + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + www-authenticate: + - Bearer realm="https://fake_url.azurecr.io/oauth2/token",service="fake_url.azurecr.io",scope="fake_scope",error="invalid_token" + x-content-type-options: + - nosniff + status: + code: 401 + message: Unauthorized +- request: + body: service=yalinlitestsanon.azurecr.io&scope=registry%3Acatalog%3A%2A&grant_type=password + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '86' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://fake_url.azurecr.io/oauth2/token + response: + body: + string: '{"access_token": "REDACTED"}' + headers: + connection: + - keep-alive + content-type: + - application/json; charset=utf-8 + date: + - Mon, 30 Aug 2021 20:27:55 GMT + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + x-ms-ratelimit-remaining-calls-per-second: + - '166.033333' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo26ab150f&n=2&orderby= + response: + body: + string: '{"repositories": ["repo93d41b55"]}' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '34' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_tag_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_tag_properties.yaml index c101441f2028..f6d2133314cc 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_tag_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_list_tag_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:55 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.516667' + - '165.916667' status: code: 200 message: OK @@ -93,30 +93,30 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "tags": [{"name": "latest", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:24.1991429Z", "lastUpdateTime": "2021-08-17T18:04:24.1991429Z", + "tags": [{"name": "latest", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:20.0468904Z", "lastUpdateTime": "2021-08-30T10:55:20.0468904Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "v1", "digest": - "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:21.5889666Z", "lastUpdateTime": "2021-08-17T18:04:21.5889666Z", + "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:21.4565273Z", "lastUpdateTime": "2021-08-30T10:55:21.4565273Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "v2", "digest": - "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:20.7787525Z", "lastUpdateTime": "2021-08-17T18:04:20.7787525Z", + "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:19.0500362Z", "lastUpdateTime": "2021-08-30T10:55:19.0500362Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "v3", "digest": - "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:22.3477986Z", "lastUpdateTime": "2021-08-17T18:04:22.3477986Z", + "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:19.4589907Z", "lastUpdateTime": "2021-08-30T10:55:19.4589907Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "v4", "digest": - "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:20.6913902Z", "lastUpdateTime": "2021-08-17T18:04:20.6913902Z", + "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:19.6518366Z", "lastUpdateTime": "2021-08-30T10:55:19.6518366Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -132,7 +132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_manifest_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_manifest_properties.yaml index af9566244b66..8d13ed9e07bd 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_manifest_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_manifest_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:54 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:55 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.283333' + - '166.016667' status: code: 200 message: OK @@ -93,14 +93,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "tag": {"name": "latest", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:24.1991429Z", "lastUpdateTime": "2021-08-17T18:04:24.1991429Z", + "tag": {"name": "latest", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:20.0468904Z", "lastUpdateTime": "2021-08-30T10:55:20.0468904Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -116,7 +116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: @@ -139,9 +139,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -160,7 +160,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: @@ -189,7 +189,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -201,7 +201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:55 GMT server: - openresty strict-transport-security: @@ -209,7 +209,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.266667' + - '166' status: code: 200 message: OK @@ -223,15 +223,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:04:20.3411937Z", "lastUpdateTime": - "2021-08-17T18:04:20.3411937Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T10:55:18.8616842Z", "lastUpdateTime": + "2021-08-30T10:55:18.8616842Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest", "v1", "v2", "v3", "v4"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -243,7 +243,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -254,11 +255,11 @@ interactions: connection: - keep-alive content-length: - - '1725' + - '1848' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: @@ -281,7 +282,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -302,7 +303,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: @@ -331,7 +332,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -343,7 +344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:55 GMT server: - openresty strict-transport-security: @@ -351,7 +352,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.25' + - '165.983333' status: code: 200 message: OK @@ -365,14 +366,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "tag": {"name": "latest", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:24.1991429Z", "lastUpdateTime": "2021-08-17T18:04:24.1991429Z", + "tag": {"name": "latest", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:20.0468904Z", "lastUpdateTime": "2021-08-30T10:55:20.0468904Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -388,7 +389,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: @@ -416,9 +417,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -437,7 +438,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:55 GMT docker-distribution-api-version: - registry/2.0 server: @@ -466,7 +467,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -478,7 +479,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:55 GMT server: - openresty strict-transport-security: @@ -486,7 +487,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.233333' + - '165.966667' status: code: 200 message: OK @@ -505,9 +506,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -526,7 +527,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_repository_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_repository_properties.yaml index 9d7634cea759..11d260cd48ee 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_repository_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_repository_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: - registry/2.0 server: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:56 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.65' + - '166.366667' status: code: 200 message: OK @@ -93,14 +93,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "createdTime": "2021-08-17T18:04:20.3129746Z", "lastUpdateTime": "2021-08-17T18:04:16.4657043Z", - "manifestCount": 11, "tagCount": 5, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T10:55:18.7315572Z", "lastUpdateTime": "2021-08-30T10:55:16.1911692Z", + "manifestCount": 12, "tagCount": 5, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -116,7 +116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: - registry/2.0 server: @@ -144,7 +144,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -165,7 +165,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: - registry/2.0 server: @@ -194,7 +194,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -206,7 +206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:56 GMT server: - openresty strict-transport-security: @@ -214,7 +214,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.633333' + - '166.35' status: code: 200 message: OK @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -254,7 +254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_tag_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_tag_properties.yaml index ae3af1fb08b2..849375b41184 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_tag_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access.test_update_tag_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: - registry/2.0 server: @@ -59,7 +59,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:56 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.583333' + - '165.95' status: code: 200 message: OK @@ -93,14 +93,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "tag": {"name": "latest", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:24.1991429Z", "lastUpdateTime": "2021-08-17T18:04:24.1991429Z", + "tag": {"name": "latest", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:20.0468904Z", "lastUpdateTime": "2021-08-30T10:55:20.0468904Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -116,7 +116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:55 GMT + - Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: - registry/2.0 server: @@ -144,7 +144,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -165,7 +165,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:56 GMT + - Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: - registry/2.0 server: @@ -194,7 +194,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -206,7 +206,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:56 GMT + - Mon, 30 Aug 2021 20:27:56 GMT server: - openresty strict-transport-security: @@ -214,7 +214,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.566667' + - '165.933333' status: code: 200 message: OK @@ -233,7 +233,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -254,7 +254,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:06:56 GMT + - Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_manifest.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_manifest.yaml index aa5ef21b7417..7dd0c12dd0f1 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_manifest.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_manifest.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '222' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:56 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.966667' + x-ms-ratelimit-remaining-calls-per-second: '166.533333' status: code: 200 message: OK @@ -62,14 +62,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "tag": {"name": "latest", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:24.1991429Z", "lastUpdateTime": "2021-08-17T18:04:24.1991429Z", + "tag": {"name": "latest", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:20.0468904Z", "lastUpdateTime": "2021-08-30T10:55:20.0468904Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -77,7 +77,7 @@ interactions: connection: keep-alive content-length: '396' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -92,9 +92,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/library%2Fhello-world/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/v2/library%2Fhello-world/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -105,7 +105,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -114,7 +114,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitestsanon.azurecr.io/v2/library%2Fhello-world/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitestsanon.azurecr.io/v2/library%2Fhello-world/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: grant_type: !!python/object/apply:azure.containerregistry._generated.models._container_registry_enums.TokenGrantType @@ -125,7 +125,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -134,11 +134,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:56 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.95' + x-ms-ratelimit-remaining-calls-per-second: '166.516667' status: code: 200 message: OK @@ -149,9 +149,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/library%2Fhello-world/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/v2/library%2Fhello-world/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -162,7 +162,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -171,5 +171,5 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitestsanon.azurecr.io/v2/library%2Fhello-world/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitestsanon.azurecr.io/v2/library%2Fhello-world/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_repository.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_repository.yaml index 1dece186c4b7..71b6d0337709 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_repository.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_repository.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:56 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.616667' + x-ms-ratelimit-remaining-calls-per-second: '165.866667' status: code: 200 message: OK @@ -62,7 +62,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -75,7 +75,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_tag.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_tag.yaml index 5a4572061553..1203728af9fd 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_tag.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_delete_tag.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.55' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -62,7 +62,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -75,7 +75,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_get_manifest_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_get_manifest_properties.yaml index 30aeb41f18e7..360925613b68 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_get_manifest_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_get_manifest_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine/_tags/latest response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '217' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.5' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -62,14 +62,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine/_tags/latest response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/alpine", - "tag": {"name": "latest", "digest": "sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae", - "createdTime": "2021-08-17T18:06:23.0267255Z", "lastUpdateTime": "2021-08-17T18:06:23.0267255Z", + "tag": {"name": "latest", "digest": "sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a", + "createdTime": "2021-08-30T10:55:43.9735079Z", "lastUpdateTime": "2021-08-30T10:55:43.9735079Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -77,7 +77,7 @@ interactions: connection: keep-alive content-length: '391' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -92,9 +92,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine/_manifests/sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae + uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine/_manifests/sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -105,7 +105,7 @@ interactions: connection: keep-alive content-length: '217' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -114,7 +114,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Falpine/_manifests/sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae + url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Falpine/_manifests/sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a - request: body: grant_type: !!python/object/apply:azure.containerregistry._generated.models._container_registry_enums.TokenGrantType @@ -125,7 +125,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -134,11 +134,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:56 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.483333' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -149,31 +149,31 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine/_manifests/sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae + uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine/_manifests/sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/alpine", - "manifest": {"digest": "sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae", - "imageSize": 3696, "createdTime": "2021-08-17T18:06:23.1196409Z", "lastUpdateTime": - "2021-08-17T18:06:23.1196409Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a", + "imageSize": 3696, "createdTime": "2021-08-30T10:55:43.8572619Z", "lastUpdateTime": + "2021-08-30T10:55:43.8572619Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": - "sha256:be9bdc0ef8e96dbc428dc189b31e2e3b05523d96d12ed627c37aa2936653258c", - "architecture": "amd64", "os": "linux"}, {"digest": "sha256:1d2cfbb29672ce268a77b3b9eca532a96356f4843044d22a9677231e1333e271", - "architecture": "arm", "os": "linux"}, {"digest": "sha256:fb9ac82b4cc94c5a6c416a1c656b3ee84df9290ab4106c260eb959997e759e5e", - "architecture": "arm", "os": "linux"}, {"digest": "sha256:bd9137c3bb45dbc40cde0f0e19a8b9064c2bc485466221f5e95eb72b0d0cf82e", - "architecture": "arm64", "os": "linux"}, {"digest": "sha256:169b2750787ff8d4995ba535293bf549958b596067165ce678afa928225d97cc", - "architecture": "386", "os": "linux"}, {"digest": "sha256:f553db2d6ab7f3ba07024cd1181e16242d8fea0a2840dc2ccbd59e9b8c59b478", - "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:8621732cdb8c893dccfaacfa22741154123addd7c0e5465056bbe9b0cb4c7737", + "sha256:69704ef328d05a9f806b6b8502915e6a0a4faa4d72018dc42343f511490daf8a", + "architecture": "amd64", "os": "linux"}, {"digest": "sha256:18c29393a090ba5cde8a5f00926e9e419f47cfcfd206cc3f7f590e91b19adfe9", + "architecture": "arm", "os": "linux"}, {"digest": "sha256:e12ff876f0075740ed3d7bdf788107ae84c1b3dd6dc98b3baea41088aba5236f", + "architecture": "arm", "os": "linux"}, {"digest": "sha256:b06a5cf61b2956088722c4f1b9a6f71dfe95f0b1fe285d44195452b8a1627de7", + "architecture": "arm64", "os": "linux"}, {"digest": "sha256:a77adef9f69751add61080617e15e67aba9aa7a5fd5414b9fae84143210ee0ad", + "architecture": "386", "os": "linux"}, {"digest": "sha256:9bea59997a84beb47a8cc7ddb11abc957b141e8160852aa93b4cf60659016b53", + "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:e841d0f0881ea22080e84088337646ada15871abbc3ce19b3219e8fc2cb0cc22", "architecture": "s390x", "os": "linux"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive content-length: '1330' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -181,5 +181,5 @@ interactions: status: code: 200 message: OK - url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Falpine/_manifests/sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae + url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Falpine/_manifests/sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_get_repository_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_get_repository_properties.yaml index c9e29d350cbb..5785ddfbdcfa 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_get_repository_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_get_repository_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '217' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.216667' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -62,13 +62,13 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/alpine", - "createdTime": "2021-08-17T18:06:22.9980171Z", "lastUpdateTime": "2021-08-17T18:06:21.2792387Z", + "createdTime": "2021-08-30T10:55:40.5891249Z", "lastUpdateTime": "2021-08-30T10:55:38.4402461Z", "manifestCount": 8, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' @@ -77,7 +77,7 @@ interactions: connection: keep-alive content-length: '324' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_manifest_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_manifest_properties.yaml index 2f98fc660479..c05cc25a2fed 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_manifest_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_manifest_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine/_manifests response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '217' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:57 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.616667' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -62,49 +62,49 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine/_manifests response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/alpine", - "manifests": [{"digest": "sha256:169b2750787ff8d4995ba535293bf549958b596067165ce678afa928225d97cc", - "imageSize": 528, "createdTime": "2021-08-17T18:06:24.1933064Z", "lastUpdateTime": - "2021-08-17T18:06:24.1933064Z", "architecture": "386", "os": "linux", "mediaType": + "manifests": [{"digest": "sha256:18c29393a090ba5cde8a5f00926e9e419f47cfcfd206cc3f7f590e91b19adfe9", + "imageSize": 528, "createdTime": "2021-08-30T10:55:40.7388588Z", "lastUpdateTime": + "2021-08-30T10:55:40.7388588Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:1d2cfbb29672ce268a77b3b9eca532a96356f4843044d22a9677231e1333e271", - "imageSize": 528, "createdTime": "2021-08-17T18:06:24.1100226Z", "lastUpdateTime": - "2021-08-17T18:06:24.1100226Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:69704ef328d05a9f806b6b8502915e6a0a4faa4d72018dc42343f511490daf8a", + "imageSize": 528, "createdTime": "2021-08-30T10:55:44.0975053Z", "lastUpdateTime": + "2021-08-30T10:55:44.0975053Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:8621732cdb8c893dccfaacfa22741154123addd7c0e5465056bbe9b0cb4c7737", - "imageSize": 528, "createdTime": "2021-08-17T18:06:25.0984809Z", "lastUpdateTime": - "2021-08-17T18:06:25.0984809Z", "architecture": "s390x", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:9bea59997a84beb47a8cc7ddb11abc957b141e8160852aa93b4cf60659016b53", + "imageSize": 528, "createdTime": "2021-08-30T10:55:44.3819234Z", "lastUpdateTime": + "2021-08-30T10:55:44.3819234Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:a77adef9f69751add61080617e15e67aba9aa7a5fd5414b9fae84143210ee0ad", + "imageSize": 528, "createdTime": "2021-08-30T10:55:40.8404404Z", "lastUpdateTime": + "2021-08-30T10:55:40.8404404Z", "architecture": "386", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:bd9137c3bb45dbc40cde0f0e19a8b9064c2bc485466221f5e95eb72b0d0cf82e", - "imageSize": 528, "createdTime": "2021-08-17T18:06:24.0276057Z", "lastUpdateTime": - "2021-08-17T18:06:24.0276057Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:b06a5cf61b2956088722c4f1b9a6f71dfe95f0b1fe285d44195452b8a1627de7", + "imageSize": 528, "createdTime": "2021-08-30T10:55:40.6499159Z", "lastUpdateTime": + "2021-08-30T10:55:40.6499159Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:be9bdc0ef8e96dbc428dc189b31e2e3b05523d96d12ed627c37aa2936653258c", - "imageSize": 528, "createdTime": "2021-08-17T18:06:24.3964606Z", "lastUpdateTime": - "2021-08-17T18:06:24.3964606Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:e12ff876f0075740ed3d7bdf788107ae84c1b3dd6dc98b3baea41088aba5236f", + "imageSize": 528, "createdTime": "2021-08-30T10:55:40.6028958Z", "lastUpdateTime": + "2021-08-30T10:55:40.6028958Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae", - "imageSize": 3696, "createdTime": "2021-08-17T18:06:23.1196409Z", "lastUpdateTime": - "2021-08-17T18:06:23.1196409Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + true, "quarantineState": "Passed"}}, {"digest": "sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a", + "imageSize": 3696, "createdTime": "2021-08-30T10:55:43.8572619Z", "lastUpdateTime": + "2021-08-30T10:55:43.8572619Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:f553db2d6ab7f3ba07024cd1181e16242d8fea0a2840dc2ccbd59e9b8c59b478", - "imageSize": 528, "createdTime": "2021-08-17T18:06:25.0264984Z", "lastUpdateTime": - "2021-08-17T18:06:25.0264984Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:fb9ac82b4cc94c5a6c416a1c656b3ee84df9290ab4106c260eb959997e759e5e", - "imageSize": 528, "createdTime": "2021-08-17T18:06:24.2418276Z", "lastUpdateTime": - "2021-08-17T18:06:24.2418276Z", "architecture": "arm", "os": "linux", "mediaType": + true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:e841d0f0881ea22080e84088337646ada15871abbc3ce19b3219e8fc2cb0cc22", + "imageSize": 528, "createdTime": "2021-08-30T10:55:41.4366882Z", "lastUpdateTime": + "2021-08-30T10:55:41.4366882Z", "architecture": "s390x", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' @@ -112,7 +112,7 @@ interactions: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_repository_names.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_repository_names.yaml index 04adced23e10..20f9d2f1ad45 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_repository_names.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_repository_names.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.533333' + x-ms-ratelimit-remaining-calls-per-second: '165.95' status: code: 200 message: OK @@ -62,18 +62,19 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: body: - string: '{"repositories": ["library/alpine", "library/busybox", "library/hello-world"]}' + string: '{"repositories": ["library/alpine", "library/busybox", "library/hello-world", + "repo26ab150f", "repo93d41b55"]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '76' + content-length: '106' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_repository_names_by_page.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_repository_names_by_page.yaml index d42910760e7d..d8f154fe33e7 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_repository_names_by_page.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_repository_names_by_page.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?n=2 response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.15' + x-ms-ratelimit-remaining-calls-per-second: '166.333333' status: code: 200 message: OK @@ -62,7 +62,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?n=2 response: @@ -73,7 +73,7 @@ interactions: connection: keep-alive content-length: '54' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:57 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -89,7 +89,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=library/busybox&n=2&orderby= response: @@ -102,7 +102,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -122,7 +122,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -131,11 +131,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.133333' + x-ms-ratelimit-remaining-calls-per-second: '166.316667' status: code: 200 message: OK @@ -146,19 +146,20 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=library/busybox&n=2&orderby= response: body: - string: '{"repositories": ["library/hello-world"]}' + string: '{"repositories": ["library/hello-world", "repo26ab150f"]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '41' + content-length: '56' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT docker-distribution-api-version: registry/2.0 + link: ; rel="next" server: openresty strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff @@ -166,4 +167,87 @@ interactions: code: 200 message: OK url: https://yalinlitestsanon.azurecr.io/acr/v1/_catalog?last=library/busybox&n=2&orderby= +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo26ab150f&n=2&orderby= + response: + body: + string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, + visit https://aka.ms/acr/authorization for more information.", "detail": [{"Type": + "registry", "Name": "catalog", "Action": "*"}]}]}' + headers: + access-control-expose-headers: X-Ms-Correlation-Request-Id + connection: keep-alive + content-length: '196' + content-type: application/json; charset=utf-8 + date: Mon, 30 Aug 2021 20:27:58 GMT + docker-distribution-api-version: registry/2.0 + server: openresty + strict-transport-security: max-age=31536000; includeSubDomains + www-authenticate: Bearer realm="https://fake_url.azurecr.io/oauth2/token",service="fake_url.azurecr.io",scope="fake_scope",error="invalid_token" + x-content-type-options: nosniff + status: + code: 401 + message: Unauthorized + url: https://yalinlitestsanon.azurecr.io/acr/v1/_catalog?last=repo26ab150f&n=2&orderby= +- request: + body: + grant_type: !!python/object/apply:azure.containerregistry._generated.models._container_registry_enums.TokenGrantType + - password + scope: registry:catalog:* + service: yalinlitestsanon.azurecr.io + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://fake_url.azurecr.io/oauth2/token + response: + body: + string: '{"access_token": "REDACTED"}' + headers: + connection: keep-alive + content-type: application/json; charset=utf-8 + date: Mon, 30 Aug 2021 20:27:58 GMT + server: openresty + strict-transport-security: max-age=31536000; includeSubDomains + transfer-encoding: chunked + x-ms-ratelimit-remaining-calls-per-second: '166.3' + status: + code: 200 + message: OK + url: https://yalinlitestsanon.azurecr.io/oauth2/token +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo26ab150f&n=2&orderby= + response: + body: + string: '{"repositories": ["repo93d41b55"]}' + headers: + access-control-expose-headers: X-Ms-Correlation-Request-Id + connection: keep-alive + content-length: '34' + content-type: application/json; charset=utf-8 + date: Mon, 30 Aug 2021 20:27:58 GMT + docker-distribution-api-version: registry/2.0 + server: openresty + strict-transport-security: max-age=31536000; includeSubDomains + x-content-type-options: nosniff + status: + code: 200 + message: OK + url: https://yalinlitestsanon.azurecr.io/acr/v1/_catalog?last=repo26ab150f&n=2&orderby= version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_tag_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_tag_properties.yaml index 19c8bd5189f0..d9268ea1e8cf 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_tag_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_list_tag_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine/_tags response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '217' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.933333' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -62,14 +62,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine/_tags response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/alpine", - "tags": [{"name": "latest", "digest": "sha256:eb3e4e175ba6d212ba1d6e04fc0782916c08e1c9d7b45892e9796141b1d379ae", - "createdTime": "2021-08-17T18:06:23.0267255Z", "lastUpdateTime": "2021-08-17T18:06:23.0267255Z", + "tags": [{"name": "latest", "digest": "sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a", + "createdTime": "2021-08-30T10:55:43.9735079Z", "lastUpdateTime": "2021-08-30T10:55:43.9735079Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -77,7 +77,7 @@ interactions: connection: keep-alive content-length: '394' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:58 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_manifest_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_manifest_properties.yaml index 55ed82d9b3d8..b0d698b5ad14 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_manifest_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_manifest_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '222' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.6' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -62,14 +62,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "tag": {"name": "latest", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:24.1991429Z", "lastUpdateTime": "2021-08-17T18:04:24.1991429Z", + "tag": {"name": "latest", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:20.0468904Z", "lastUpdateTime": "2021-08-30T10:55:20.0468904Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -77,7 +77,7 @@ interactions: connection: keep-alive content-length: '396' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -92,9 +92,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -105,7 +105,7 @@ interactions: connection: keep-alive content-length: '222' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -114,7 +114,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: grant_type: !!python/object/apply:azure.containerregistry._generated.models._container_registry_enums.TokenGrantType @@ -125,7 +125,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -134,11 +134,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.583333' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -149,15 +149,15 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:04:20.3411937Z", "lastUpdateTime": - "2021-08-17T18:04:20.3411937Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T10:55:18.8616842Z", "lastUpdateTime": + "2021-08-30T10:55:18.8616842Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest", "v1", "v2", "v3", "v4"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -169,14 +169,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1725' + content-length: '1848' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -184,14 +185,14 @@ interactions: status: code: 200 message: OK - url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -204,7 +205,7 @@ interactions: connection: keep-alive content-length: '222' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -224,7 +225,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -233,11 +234,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.566667' + x-ms-ratelimit-remaining-calls-per-second: '166.6' status: code: 200 message: OK @@ -248,14 +249,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "tag": {"name": "latest", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:24.1991429Z", "lastUpdateTime": "2021-08-17T18:04:24.1991429Z", + "tag": {"name": "latest", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:20.0468904Z", "lastUpdateTime": "2021-08-30T10:55:20.0468904Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -263,7 +264,7 @@ interactions: connection: keep-alive content-length: '396' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -283,9 +284,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -296,7 +297,7 @@ interactions: connection: keep-alive content-length: '223' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -305,7 +306,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: grant_type: !!python/object/apply:azure.containerregistry._generated.models._container_registry_enums.TokenGrantType @@ -316,7 +317,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -325,11 +326,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.55' + x-ms-ratelimit-remaining-calls-per-second: '166.583333' status: code: 200 message: OK @@ -345,9 +346,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -358,7 +359,7 @@ interactions: connection: keep-alive content-length: '223' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -367,5 +368,5 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitestsanon.azurecr.io/acr/v1/library%2Fhello-world/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_repository_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_repository_properties.yaml index dd4ab72318ce..56ebea0d7037 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_repository_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_repository_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '222' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.083333' + x-ms-ratelimit-remaining-calls-per-second: '165.933333' status: code: 200 message: OK @@ -62,14 +62,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "createdTime": "2021-08-17T18:04:20.3129746Z", "lastUpdateTime": "2021-08-17T18:04:16.4657043Z", - "manifestCount": 11, "tagCount": 5, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T10:55:18.7315572Z", "lastUpdateTime": "2021-08-30T10:55:16.1911692Z", + "manifestCount": 12, "tagCount": 5, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -77,7 +77,7 @@ interactions: connection: keep-alive content-length: '330' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -97,7 +97,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -110,7 +110,7 @@ interactions: connection: keep-alive content-length: '223' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -130,7 +130,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -139,11 +139,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.066667' + x-ms-ratelimit-remaining-calls-per-second: '165.916667' status: code: 200 message: OK @@ -159,7 +159,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world response: @@ -172,7 +172,7 @@ interactions: connection: keep-alive content-length: '223' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:58 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_tag_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_tag_properties.yaml index c0438767a7d6..e6767ad2418e 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_tag_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_anon_access_async.test_update_tag_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '222' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:59 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -38,7 +38,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -47,11 +47,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:59 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.116667' + x-ms-ratelimit-remaining-calls-per-second: '166.183333' status: code: 200 message: OK @@ -62,14 +62,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: body: string: '{"registry": "yalinlitestsanon.azurecr.io", "imageName": "library/hello-world", - "tag": {"name": "latest", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:04:24.1991429Z", "lastUpdateTime": "2021-08-17T18:04:24.1991429Z", + "tag": {"name": "latest", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T10:55:20.0468904Z", "lastUpdateTime": "2021-08-30T10:55:20.0468904Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -77,7 +77,7 @@ interactions: connection: keep-alive content-length: '396' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:59 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -97,7 +97,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -110,7 +110,7 @@ interactions: connection: keep-alive content-length: '223' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:59 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -130,7 +130,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -139,11 +139,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:59 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.1' + x-ms-ratelimit-remaining-calls-per-second: '166.166667' status: code: 200 message: OK @@ -159,7 +159,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world/_tags/latest response: @@ -172,7 +172,7 @@ interactions: connection: keep-alive content-length: '223' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:06:59 GMT + date: Mon, 30 Aug 2021 20:27:59 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_construct_container_registry_client.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_construct_container_registry_client.yaml new file mode 100644 index 000000000000..e5bf3abeb826 --- /dev/null +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_construct_container_registry_client.yaml @@ -0,0 +1,87 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world + response: + body: + string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, + visit https://aka.ms/acr/authorization for more information.", "detail": [{"Type": + "repository", "Name": "library/hello-world", "Action": "metadata_read"}]}]}' + headers: + access-control-expose-headers: + - Docker-Content-Digest + - WWW-Authenticate + - Link + - X-Ms-Correlation-Request-Id + connection: + - keep-alive + content-length: + - '222' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 30 Aug 2021 20:28:00 GMT + docker-distribution-api-version: + - registry/2.0 + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + - max-age=31536000; includeSubDomains + www-authenticate: + - Bearer realm="https://fake_url.azurecr.io/oauth2/token",service="fake_url.azurecr.io",scope="fake_scope",error="invalid_token" + x-content-type-options: + - nosniff + status: + code: 401 + message: Unauthorized +- request: + body: grant_type=access_token&service=fake_url.azurecr.io&access_token=REDACTED + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '1299' + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://fake_url.azurecr.io/oauth2/exchange + response: + body: + string: '{"errors": [{"code": "UNAUTHORIZED", "message": "retrieving permissions + failed"}]}' + headers: + connection: + - keep-alive + content-length: + - '78' + content-type: + - application/json + date: + - Mon, 30 Aug 2021 20:28:00 GMT + server: + - openresty + strict-transport-security: + - max-age=31536000; includeSubDomains + x-ms-ratelimit-remaining-calls-per-second: + - '166.583333' + status: + code: 401 + message: Unauthorized +version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_manifest.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_manifest.yaml index bd4a49bbb560..b5d3b0e42d93 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_manifest.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_manifest.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo26ab150f/_tags/tag26ab150f response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:23 GMT + - Mon, 30 Aug 2021 20:28:25 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:24 GMT + - Mon, 30 Aug 2021 20:28:26 GMT server: - openresty strict-transport-security: @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:24 GMT + - Mon, 30 Aug 2021 20:28:26 GMT server: - openresty strict-transport-security: @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo26ab150f/_tags/tag26ab150f response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo26ab150f", - "tag": {"name": "tag26ab150f", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:07:03.5179315Z", "lastUpdateTime": "2021-08-17T18:07:03.5179315Z", + "tag": {"name": "tag26ab150f", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:28:05.6142891Z", "lastUpdateTime": "2021-08-30T20:28:05.6142891Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:24 GMT + - Mon, 30 Aug 2021 20:28:26 GMT docker-distribution-api-version: - registry/2.0 server: @@ -179,9 +179,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/repo26ab150f/manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/v2/repo26ab150f/manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -200,7 +200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:24 GMT + - Mon, 30 Aug 2021 20:28:26 GMT docker-distribution-api-version: - registry/2.0 server: @@ -225,11 +225,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -241,7 +241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:24 GMT + - Mon, 30 Aug 2021 20:28:26 GMT server: - openresty strict-transport-security: @@ -267,7 +267,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -279,7 +279,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:24 GMT + - Mon, 30 Aug 2021 20:28:26 GMT server: - openresty strict-transport-security: @@ -303,9 +303,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/repo26ab150f/manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/v2/repo26ab150f/manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '' @@ -320,7 +320,7 @@ interactions: content-length: - '0' date: - - Tue, 17 Aug 2021 18:07:25 GMT + - Mon, 30 Aug 2021 20:28:26 GMT docker-distribution-api-version: - registry/2.0 server: @@ -345,7 +345,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo26ab150f/_tags/tag26ab150f response: @@ -366,7 +366,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:35 GMT + - Mon, 30 Aug 2021 20:28:36 GMT docker-distribution-api-version: - registry/2.0 server: @@ -391,11 +391,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -407,7 +407,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:35 GMT + - Mon, 30 Aug 2021 20:28:37 GMT server: - openresty strict-transport-security: @@ -433,7 +433,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -445,7 +445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:35 GMT + - Mon, 30 Aug 2021 20:28:37 GMT server: - openresty strict-transport-security: @@ -467,7 +467,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo26ab150f/_tags/tag26ab150f response: @@ -487,7 +487,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:07:35 GMT + - Mon, 30 Aug 2021 20:28:37 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_manifest_does_not_exist.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_manifest_does_not_exist.yaml index de3219cb838b..45f65b9f307f 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_manifest_does_not_exist.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_manifest_does_not_exist.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo93d41b55/_tags/tag93d41b55 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:00 GMT + - Mon, 30 Aug 2021 20:29:01 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:02 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.45' + - '166.55' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:02 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.366667' + - '166.416667' status: code: 200 message: OK @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo93d41b55/_tags/tag93d41b55 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo93d41b55", - "tag": {"name": "tag93d41b55", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:07:40.3091137Z", "lastUpdateTime": "2021-08-17T18:07:40.3091137Z", + "tag": {"name": "tag93d41b55", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T11:00:01.8004113Z", "lastUpdateTime": "2021-08-30T11:00:01.8004113Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:02 GMT docker-distribution-api-version: - registry/2.0 server: @@ -177,9 +177,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo93d41b55/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo93d41b55/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -198,7 +198,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:02 GMT docker-distribution-api-version: - registry/2.0 server: @@ -223,11 +223,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -239,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:02 GMT server: - openresty strict-transport-security: @@ -247,7 +247,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.35' + - '166.4' status: code: 200 message: OK @@ -265,7 +265,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -277,7 +277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:02 GMT server: - openresty strict-transport-security: @@ -285,7 +285,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.333333' + - '166.383333' status: code: 200 message: OK @@ -299,15 +299,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo93d41b55/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo93d41b55/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo93d41b55", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:07:40.2210567Z", "lastUpdateTime": - "2021-08-17T18:07:40.2210567Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T11:00:01.7237359Z", "lastUpdateTime": + "2021-08-30T11:00:01.7237359Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tag93d41b55"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -319,7 +319,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -330,11 +331,11 @@ interactions: connection: - keep-alive content-length: - - '1699' + - '1822' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:02 GMT docker-distribution-api-version: - registry/2.0 server: @@ -359,9 +360,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/repo93d41b55/manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250aaaaaaaaaa + uri: https://fake_url.azurecr.io/v2/repo93d41b55/manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a98aaaaaaaaaa response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -380,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:02 GMT docker-distribution-api-version: - registry/2.0 server: @@ -405,11 +406,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -421,7 +422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:03 GMT server: - openresty strict-transport-security: @@ -429,7 +430,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.316667' + - '166.366667' status: code: 200 message: OK @@ -447,7 +448,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -459,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:03 GMT server: - openresty strict-transport-security: @@ -467,7 +468,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.3' + - '166.35' status: code: 200 message: OK @@ -483,12 +484,12 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/repo93d41b55/manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250aaaaaaaaaa + uri: https://fake_url.azurecr.io/v2/repo93d41b55/manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a98aaaaaaaaaa response: body: - string: '{"errors": [{"code": "MANIFEST_UNKNOWN", "message": "manifest sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250aaaaaaaaaa + string: '{"errors": [{"code": "MANIFEST_UNKNOWN", "message": "manifest sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a98aaaaaaaaaa is not found"}]}' headers: access-control-expose-headers: @@ -503,7 +504,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:01 GMT + - Mon, 30 Aug 2021 20:29:03 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_repository.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_repository.yaml index 7c9e96bd0711..960a22634d7a 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_repository.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_repository.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/to_be_deleted response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:34 GMT + - Mon, 30 Aug 2021 20:29:27 GMT docker-distribution-api-version: - registry/2.0 server: @@ -57,11 +57,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:34 GMT + - Mon, 30 Aug 2021 20:29:28 GMT server: - openresty strict-transport-security: @@ -81,7 +81,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.35' + - '166.4' status: code: 200 message: OK @@ -99,7 +99,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -111,7 +111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:35 GMT + - Mon, 30 Aug 2021 20:29:28 GMT server: - openresty strict-transport-security: @@ -119,7 +119,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.333333' + - '166.383333' status: code: 200 message: OK @@ -135,22 +135,23 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/to_be_deleted response: body: - string: '{"manifestsDeleted": ["sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", + string: '{"manifestsDeleted": ["sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "sha256:58d91e6625a0ea837222f24da4ca00be9da3db45cee5b172135eaf271610f9eb", "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", + "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", "sha256:88b2e00179bd6c4064612403c8d42a13de7ca809d61fee966ce9e129860a8a90", "sha256:94b700b6ae5759e539e06fa6d483f5f0174067945f180cc1362cfda71c5fd722", "sha256:a10c347f4cc2924af832d319635d6d027ca8820ff683b6bcc728d825a37a7f69", "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", - "sha256:cb55d8f7347376e1ba38ca740904b43c9a52f66c7d2ae1ef1a0de1bc9f40df98", - "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8"], + "sha256:cb55d8f7347376e1ba38ca740904b43c9a52f66c7d2ae1ef1a0de1bc9f40df98"], "tagsDeleted": ["latest"]}' headers: access-control-expose-headers: @@ -161,11 +162,11 @@ interactions: connection: - keep-alive content-length: - - '862' + - '936' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:36 GMT + - Mon, 30 Aug 2021 20:29:29 GMT docker-distribution-api-version: - registry/2.0 server: @@ -190,7 +191,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -211,7 +212,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:36 GMT + - Mon, 30 Aug 2021 20:29:29 GMT docker-distribution-api-version: - registry/2.0 server: @@ -236,11 +237,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -252,7 +253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:36 GMT + - Mon, 30 Aug 2021 20:29:30 GMT server: - openresty strict-transport-security: @@ -260,7 +261,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.316667' + - '166.366667' status: code: 200 message: OK @@ -278,7 +279,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -290,7 +291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:36 GMT + - Mon, 30 Aug 2021 20:29:30 GMT server: - openresty strict-transport-security: @@ -298,7 +299,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.3' + - '166.35' status: code: 200 message: OK @@ -312,7 +313,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -332,7 +333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:36 GMT + - Mon, 30 Aug 2021 20:29:30 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_repository_does_not_exist.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_repository_does_not_exist.yaml index 74d1d5274c48..af624e9a9bf3 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_repository_does_not_exist.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_repository_does_not_exist.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/not_real_repo response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:36 GMT + - Mon, 30 Aug 2021 20:29:30 GMT docker-distribution-api-version: - registry/2.0 server: @@ -57,11 +57,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:37 GMT + - Mon, 30 Aug 2021 20:29:30 GMT server: - openresty strict-transport-security: @@ -81,7 +81,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.35' + - '166.4' status: code: 200 message: OK @@ -99,7 +99,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -111,7 +111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:37 GMT + - Mon, 30 Aug 2021 20:29:30 GMT server: - openresty strict-transport-security: @@ -119,7 +119,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.233333' + - '166.316667' status: code: 200 message: OK @@ -135,7 +135,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/not_real_repo response: @@ -155,7 +155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:08:37 GMT + - Mon, 30 Aug 2021 20:29:31 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_tag.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_tag.yaml index ec86eaa992a2..9119c3cfda6b 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_tag.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_tag.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/repoc1b812f4/_tags/tagc1b812f40 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:02 GMT + - Mon, 30 Aug 2021 20:29:56 GMT docker-distribution-api-version: - registry/2.0 server: @@ -57,11 +57,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:03 GMT + - Mon, 30 Aug 2021 20:29:57 GMT server: - openresty strict-transport-security: @@ -81,7 +81,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.283333' + - '166.45' status: code: 200 message: OK @@ -99,7 +99,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -111,7 +111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:03 GMT + - Mon, 30 Aug 2021 20:29:57 GMT server: - openresty strict-transport-security: @@ -119,7 +119,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.2' + - '166.433333' status: code: 200 message: OK @@ -135,7 +135,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/repoc1b812f4/_tags/tagc1b812f40 response: @@ -152,7 +152,7 @@ interactions: content-length: - '0' date: - - Tue, 17 Aug 2021 18:09:03 GMT + - Mon, 30 Aug 2021 20:29:57 GMT docker-distribution-api-version: - registry/2.0 server: @@ -163,7 +163,7 @@ interactions: x-content-type-options: - nosniff x-ms-int-docker-content-digest: - - sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + - sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 x-ms-ratelimit-remaining-calls-per-second: - '8.000000' status: @@ -179,7 +179,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoc1b812f4/_tags response: @@ -200,7 +200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:03 GMT + - Mon, 30 Aug 2021 20:29:57 GMT docker-distribution-api-version: - registry/2.0 server: @@ -225,11 +225,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -241,7 +241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:03 GMT + - Mon, 30 Aug 2021 20:29:57 GMT server: - openresty strict-transport-security: @@ -249,7 +249,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.183333' + - '166.416667' status: code: 200 message: OK @@ -267,7 +267,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -279,7 +279,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:03 GMT + - Mon, 30 Aug 2021 20:29:57 GMT server: - openresty strict-transport-security: @@ -287,7 +287,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.166667' + - '166.4' status: code: 200 message: OK @@ -301,22 +301,22 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoc1b812f4/_tags response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoc1b812f4", - "tags": [{"name": "tagc1b812f41", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:08:42.7900294Z", "lastUpdateTime": "2021-08-17T18:08:42.7900294Z", + "tags": [{"name": "tagc1b812f41", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:29:36.4215818Z", "lastUpdateTime": "2021-08-30T20:29:36.4215818Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tagc1b812f42", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:08:44.0893279Z", "lastUpdateTime": "2021-08-17T18:08:44.0893279Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:29:36.5814894Z", "lastUpdateTime": "2021-08-30T20:29:36.5814894Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tagc1b812f43", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:08:42.881532Z", "lastUpdateTime": "2021-08-17T18:08:42.881532Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:29:36.0114996Z", "lastUpdateTime": "2021-08-30T20:29:36.0114996Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -328,11 +328,11 @@ interactions: connection: - keep-alive content-length: - - '1030' + - '1032' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:03 GMT + - Mon, 30 Aug 2021 20:29:57 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_tag_does_not_exist.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_tag_does_not_exist.yaml index a489d33f0df6..05e717e79cc7 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_tag_does_not_exist.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_delete_tag_does_not_exist.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/does_not_exist/_tags/does_not_exist response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:03 GMT + - Mon, 30 Aug 2021 20:29:58 GMT docker-distribution-api-version: - registry/2.0 server: @@ -57,11 +57,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -73,7 +73,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:04 GMT + - Mon, 30 Aug 2021 20:29:58 GMT server: - openresty strict-transport-security: @@ -81,7 +81,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.15' + - '166.65' status: code: 200 message: OK @@ -99,7 +99,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -111,7 +111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:04 GMT + - Mon, 30 Aug 2021 20:29:58 GMT server: - openresty strict-transport-security: @@ -119,7 +119,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.133333' + - '166.633333' status: code: 200 message: OK @@ -135,7 +135,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/does_not_exist/_tags/does_not_exist response: @@ -155,7 +155,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:04 GMT + - Mon, 30 Aug 2021 20:29:58 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_expiration_time_parsing.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_expiration_time_parsing.yaml index f3511521a680..470bca70835c 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_expiration_time_parsing.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_expiration_time_parsing.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:05 GMT + - Mon, 30 Aug 2021 20:29:58 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:06 GMT + - Mon, 30 Aug 2021 20:29:59 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.65' + - '166.116667' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:06 GMT + - Mon, 30 Aug 2021 20:29:59 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.633333' + - '166.05' status: code: 200 message: OK @@ -131,7 +131,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -151,7 +151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:06 GMT + - Mon, 30 Aug 2021 20:29:59 GMT docker-distribution-api-version: - registry/2.0 server: @@ -174,7 +174,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -195,7 +195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:06 GMT + - Mon, 30 Aug 2021 20:29:59 GMT docker-distribution-api-version: - registry/2.0 server: @@ -224,7 +224,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -236,7 +236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:06 GMT + - Mon, 30 Aug 2021 20:29:59 GMT server: - openresty strict-transport-security: @@ -244,7 +244,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.616667' + - '166.033333' status: code: 200 message: OK @@ -258,7 +258,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -278,7 +278,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:06 GMT + - Mon, 30 Aug 2021 20:29:59 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_manifest_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_manifest_properties.yaml index 43cb11897fa7..b65161add1bc 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_manifest_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_manifest_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repodf771888/_tags/tagdf771888 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:30 GMT + - Mon, 30 Aug 2021 20:30:24 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:31 GMT + - Mon, 30 Aug 2021 20:30:24 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.6' + - '166.65' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:31 GMT + - Mon, 30 Aug 2021 20:30:24 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.483333' + - '166.633333' status: code: 200 message: OK @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repodf771888/_tags/tagdf771888 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repodf771888", - "tag": {"name": "tagdf771888", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:09:11.0666264Z", "lastUpdateTime": "2021-08-17T18:09:11.0666264Z", + "tag": {"name": "tagdf771888", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:30:03.5257222Z", "lastUpdateTime": "2021-08-30T20:30:03.5257222Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:31 GMT + - Mon, 30 Aug 2021 20:30:24 GMT docker-distribution-api-version: - registry/2.0 server: @@ -177,9 +177,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repodf771888/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repodf771888/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -198,7 +198,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:31 GMT + - Mon, 30 Aug 2021 20:30:24 GMT docker-distribution-api-version: - registry/2.0 server: @@ -223,11 +223,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -239,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:31 GMT + - Mon, 30 Aug 2021 20:30:25 GMT server: - openresty strict-transport-security: @@ -247,7 +247,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.466667' + - '166.616667' status: code: 200 message: OK @@ -265,7 +265,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -277,7 +277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:31 GMT + - Mon, 30 Aug 2021 20:30:25 GMT server: - openresty strict-transport-security: @@ -285,7 +285,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.45' + - '166.6' status: code: 200 message: OK @@ -299,15 +299,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repodf771888/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repodf771888/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repodf771888", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:09:10.0627927Z", "lastUpdateTime": - "2021-08-17T18:09:10.0627927Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:30:03.3323512Z", "lastUpdateTime": + "2021-08-30T20:30:03.3323512Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tagdf771888"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -319,7 +319,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -330,11 +331,11 @@ interactions: connection: - keep-alive content-length: - - '1699' + - '1822' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:31 GMT + - Mon, 30 Aug 2021 20:30:25 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_manifest_properties_does_not_exist.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_manifest_properties_does_not_exist.yaml index caa8c3886261..ca2a7c03f77e 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_manifest_properties_does_not_exist.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_manifest_properties_does_not_exist.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo80c61ece/_tags/tag80c61ece response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:56 GMT + - Mon, 30 Aug 2021 20:30:50 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:50 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.65' + - '166.116667' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:50 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.633333' + - '166.1' status: code: 200 message: OK @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo80c61ece/_tags/tag80c61ece response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo80c61ece", - "tag": {"name": "tag80c61ece", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:09:36.0810788Z", "lastUpdateTime": "2021-08-17T18:09:36.0810788Z", + "tag": {"name": "tag80c61ece", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:30:28.9615844Z", "lastUpdateTime": "2021-08-30T20:30:28.9615844Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:50 GMT docker-distribution-api-version: - registry/2.0 server: @@ -177,9 +177,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo80c61ece/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo80c61ece/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -198,7 +198,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:50 GMT docker-distribution-api-version: - registry/2.0 server: @@ -223,11 +223,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -239,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:50 GMT server: - openresty strict-transport-security: @@ -247,7 +247,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.616667' + - '166.083333' status: code: 200 message: OK @@ -265,7 +265,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -277,7 +277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:51 GMT server: - openresty strict-transport-security: @@ -285,7 +285,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.6' + - '166.066667' status: code: 200 message: OK @@ -299,15 +299,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo80c61ece/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo80c61ece/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo80c61ece", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:09:36.1658367Z", "lastUpdateTime": - "2021-08-17T18:09:36.1658367Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:30:29.0474165Z", "lastUpdateTime": + "2021-08-30T20:30:29.0474165Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tag80c61ece"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -319,7 +319,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -330,11 +331,11 @@ interactions: connection: - keep-alive content-length: - - '1699' + - '1822' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:51 GMT docker-distribution-api-version: - registry/2.0 server: @@ -357,9 +358,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo80c61ece/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250aaaaaaaaaa + uri: https://fake_url.azurecr.io/acr/v1/repo80c61ece/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a98aaaaaaaaaa response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -378,7 +379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:51 GMT docker-distribution-api-version: - registry/2.0 server: @@ -403,11 +404,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -419,7 +420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:51 GMT server: - openresty strict-transport-security: @@ -427,7 +428,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.583333' + - '166.05' status: code: 200 message: OK @@ -445,7 +446,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -457,7 +458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:51 GMT server: - openresty strict-transport-security: @@ -465,7 +466,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.566667' + - '166.033333' status: code: 200 message: OK @@ -479,9 +480,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo80c61ece/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250aaaaaaaaaa + uri: https://fake_url.azurecr.io/acr/v1/repo80c61ece/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a98aaaaaaaaaa response: body: string: '{"errors": [{"code": "MANIFEST_UNKNOWN", "message": "manifest unknown"}]}' @@ -498,7 +499,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:51 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_repository_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_repository_properties.yaml index d2c71a027ca2..a2debcfd0aae 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_repository_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_repository_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:57 GMT + - Mon, 30 Aug 2021 20:30:51 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:58 GMT + - Mon, 30 Aug 2021 20:30:52 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.9' + - '165.983333' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:58 GMT + - Mon, 30 Aug 2021 20:30:52 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.65' + - '165.866667' status: code: 200 message: OK @@ -131,13 +131,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/alpine", - "createdTime": "2021-08-17T18:06:11.9091692Z", "lastUpdateTime": "2021-08-17T18:06:10.2845013Z", + "createdTime": "2021-08-30T10:55:28.7695998Z", "lastUpdateTime": "2021-08-30T10:55:27.2388907Z", "manifestCount": 8, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:09:58 GMT + - Mon, 30 Aug 2021 20:30:52 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_tag_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_tag_properties.yaml index e9cf3681b644..10ca162587be 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_tag_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_tag_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo6969166d/_tags/tag6969166d response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:23 GMT + - Mon, 30 Aug 2021 20:31:19 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:24 GMT + - Mon, 30 Aug 2021 20:31:20 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.116667' + - '166.233333' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:24 GMT + - Mon, 30 Aug 2021 20:31:20 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.9' + - '166.183333' status: code: 200 message: OK @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo6969166d/_tags/tag6969166d response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo6969166d", - "tag": {"name": "tag6969166d", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:10:03.2903051Z", "lastUpdateTime": "2021-08-17T18:10:03.2903051Z", + "tag": {"name": "tag6969166d", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:30:58.2936795Z", "lastUpdateTime": "2021-08-30T20:30:58.2936795Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:24 GMT + - Mon, 30 Aug 2021 20:31:20 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_tag_properties_does_not_exist.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_tag_properties_does_not_exist.yaml index 00272e0c028b..12ec18128229 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_tag_properties_does_not_exist.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_get_tag_properties_does_not_exist.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/Nonexistent/_tags/Nonexistent response: @@ -25,7 +25,7 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:24 GMT + - Mon, 30 Aug 2021 20:31:20 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts.yaml index 8be91153c9b8..dd16faeac3a7 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:25 GMT + - Mon, 30 Aug 2021 20:31:20 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:26 GMT + - Mon, 30 Aug 2021 20:31:21 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.883333' + - '166.65' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:26 GMT + - Mon, 30 Aug 2021 20:31:21 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.866667' + - '166.633333' status: code: 200 message: OK @@ -131,64 +131,64 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + "manifests": [{"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", - "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": + true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' @@ -203,7 +203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:26 GMT + - Mon, 30 Aug 2021 20:31:21 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_ascending.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_ascending.yaml index 9a908bccc8ab..ae625008285f 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_ascending.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_ascending.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timeasc response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:27 GMT + - Mon, 30 Aug 2021 20:31:21 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:28 GMT + - Mon, 30 Aug 2021 20:31:22 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.216667' + - '166.05' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:28 GMT + - Mon, 30 Aug 2021 20:31:22 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.933333' + - '165.9' status: code: 200 message: OK @@ -131,65 +131,65 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timeasc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifests": [{"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' headers: @@ -203,7 +203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:28 GMT + - Mon, 30 Aug 2021 20:31:23 GMT docker-distribution-api-version: - registry/2.0 server: @@ -228,7 +228,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timeasc response: @@ -249,7 +249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:28 GMT + - Mon, 30 Aug 2021 20:31:23 GMT docker-distribution-api-version: - registry/2.0 server: @@ -274,11 +274,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -290,7 +290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:28 GMT + - Mon, 30 Aug 2021 20:31:23 GMT server: - openresty strict-transport-security: @@ -298,7 +298,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.916667' + - '165.883333' status: code: 200 message: OK @@ -316,7 +316,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -328,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:28 GMT + - Mon, 30 Aug 2021 20:31:23 GMT server: - openresty strict-transport-security: @@ -336,7 +336,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.9' + - '165.866667' status: code: 200 message: OK @@ -350,65 +350,65 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timeasc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifests": [{"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' headers: @@ -422,7 +422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:29 GMT + - Mon, 30 Aug 2021 20:31:23 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_by_page.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_by_page.yaml index 3f2927686751..5af92bd2125a 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_by_page.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_by_page.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?n=2 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:29 GMT + - Mon, 30 Aug 2021 20:31:23 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:25 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.55' + - '166.65' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:25 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.233333' + - '166.633333' status: code: 200 message: OK @@ -131,22 +131,22 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?n=2 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + "manifests": [{"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' headers: access-control-expose-headers: @@ -157,15 +157,15 @@ interactions: connection: - keep-alive content-length: - - '937' + - '939' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:25 GMT docker-distribution-api-version: - registry/2.0 link: - - ; + - ; rel="next" server: - openresty @@ -187,9 +187,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de&n=2&orderby= response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -208,7 +208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:25 GMT docker-distribution-api-version: - registry/2.0 server: @@ -233,11 +233,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -249,7 +249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:25 GMT server: - openresty strict-transport-security: @@ -257,7 +257,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.216667' + - '166.616667' status: code: 200 message: OK @@ -275,7 +275,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -287,7 +287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:25 GMT server: - openresty strict-transport-security: @@ -295,7 +295,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.2' + - '166.6' status: code: 200 message: OK @@ -309,22 +309,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de&n=2&orderby= response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + "manifests": [{"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", - "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}]}' + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}]}' headers: access-control-expose-headers: - Docker-Content-Digest @@ -334,15 +335,15 @@ interactions: connection: - keep-alive content-length: - - '903' + - '935' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:26 GMT docker-distribution-api-version: - registry/2.0 link: - - ; + - ; rel="next" server: - openresty @@ -364,9 +365,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90&n=2&orderby= response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -385,7 +386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:26 GMT docker-distribution-api-version: - registry/2.0 server: @@ -410,11 +411,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -426,7 +427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:26 GMT server: - openresty strict-transport-security: @@ -434,7 +435,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.183333' + - '166.583333' status: code: 200 message: OK @@ -452,7 +453,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -464,7 +465,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:26 GMT server: - openresty strict-transport-security: @@ -472,7 +473,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.166667' + - '166.566667' status: code: 200 message: OK @@ -486,23 +487,22 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90&n=2&orderby= response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + "manifests": [{"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}]}' + true, "quarantineState": "Passed"}}, {"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": + true, "readEnabled": true, "listEnabled": true}}]}' headers: access-control-expose-headers: - Docker-Content-Digest @@ -512,15 +512,15 @@ interactions: connection: - keep-alive content-length: - - '937' + - '902' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:26 GMT docker-distribution-api-version: - registry/2.0 link: - - ; + - ; rel="next" server: - openresty @@ -542,9 +542,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3Ab37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778&n=2&orderby= response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -563,7 +563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:30 GMT + - Mon, 30 Aug 2021 20:31:26 GMT docker-distribution-api-version: - registry/2.0 server: @@ -588,11 +588,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -604,7 +604,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:26 GMT server: - openresty strict-transport-security: @@ -612,7 +612,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.15' + - '166.55' status: code: 200 message: OK @@ -630,7 +630,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -642,7 +642,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:26 GMT server: - openresty strict-transport-security: @@ -650,7 +650,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.133333' + - '166.533333' status: code: 200 message: OK @@ -664,21 +664,21 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3Ab37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778&n=2&orderby= response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": + "manifests": [{"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' headers: @@ -690,15 +690,15 @@ interactions: connection: - keep-alive content-length: - - '937' + - '940' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:26 GMT docker-distribution-api-version: - registry/2.0 link: - - ; + - ; rel="next" server: - openresty @@ -720,9 +720,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3Abb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a&n=2&orderby= response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -741,7 +741,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:26 GMT docker-distribution-api-version: - registry/2.0 server: @@ -766,11 +766,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -782,7 +782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:26 GMT server: - openresty strict-transport-security: @@ -790,7 +790,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.116667' + - '166.516667' status: code: 200 message: OK @@ -808,7 +808,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -820,7 +820,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:27 GMT server: - openresty strict-transport-security: @@ -828,7 +828,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.1' + - '166.5' status: code: 200 message: OK @@ -842,20 +842,20 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3A49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3Abb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a&n=2&orderby= response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + "manifests": [{"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' @@ -868,15 +868,15 @@ interactions: connection: - keep-alive content-length: - - '939' + - '937' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:27 GMT docker-distribution-api-version: - registry/2.0 link: - - ; + - ; rel="next" server: - openresty @@ -898,9 +898,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3Accff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3Af1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7&n=2&orderby= response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -919,7 +919,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:27 GMT docker-distribution-api-version: - registry/2.0 server: @@ -944,11 +944,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -960,7 +960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:27 GMT server: - openresty strict-transport-security: @@ -968,7 +968,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.083333' + - '166.483333' status: code: 200 message: OK @@ -986,7 +986,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -998,7 +998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:27 GMT server: - openresty strict-transport-security: @@ -1006,7 +1006,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.066667' + - '166.466667' status: code: 200 message: OK @@ -1020,15 +1020,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3Accff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256%3Af1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7&n=2&orderby= response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + "manifests": [{"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' @@ -1045,7 +1045,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:27 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_descending.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_descending.yaml index f0772b4a5bc9..235831f4ab79 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_descending.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_registry_artifacts_descending.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timedesc response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:31 GMT + - Mon, 30 Aug 2021 20:31:27 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:32 GMT + - Mon, 30 Aug 2021 20:31:28 GMT server: - openresty strict-transport-security: @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:32 GMT + - Mon, 30 Aug 2021 20:31:28 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.033333' + - '165.866667' status: code: 200 message: OK @@ -131,65 +131,65 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timedesc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + "manifests": [{"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + true, "quarantineState": "Passed"}}, {"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -203,7 +203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:33 GMT + - Mon, 30 Aug 2021 20:31:28 GMT docker-distribution-api-version: - registry/2.0 server: @@ -228,7 +228,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timedesc response: @@ -249,7 +249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:33 GMT + - Mon, 30 Aug 2021 20:31:28 GMT docker-distribution-api-version: - registry/2.0 server: @@ -274,11 +274,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -290,7 +290,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:33 GMT + - Mon, 30 Aug 2021 20:31:28 GMT server: - openresty strict-transport-security: @@ -298,7 +298,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.016667' + - '165.85' status: code: 200 message: OK @@ -316,7 +316,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -328,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:33 GMT + - Mon, 30 Aug 2021 20:31:28 GMT server: - openresty strict-transport-security: @@ -336,7 +336,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166' + - '165.833333' status: code: 200 message: OK @@ -350,65 +350,65 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timedesc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + "manifests": [{"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + true, "quarantineState": "Passed"}}, {"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -422,7 +422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:34 GMT + - Mon, 30 Aug 2021 20:31:29 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_repository_names.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_repository_names.yaml index f2913393f31d..9fb83e2a69f7 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_repository_names.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_repository_names.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:34 GMT + - Mon, 30 Aug 2021 20:31:29 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:35 GMT + - Mon, 30 Aug 2021 20:31:29 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.316667' + - '166.483333' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:35 GMT + - Mon, 30 Aug 2021 20:31:29 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.3' + - '165.833333' status: code: 200 message: OK @@ -131,7 +131,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -152,7 +152,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:35 GMT + - Mon, 30 Aug 2021 20:31:29 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_repository_names_by_page.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_repository_names_by_page.yaml index 601b4742ee6d..7f9a5642c13e 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_repository_names_by_page.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_repository_names_by_page.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?n=2 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:35 GMT + - Mon, 30 Aug 2021 20:31:30 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:30 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.516667' + - '166.266667' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:30 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.133333' + - '166.25' status: code: 200 message: OK @@ -131,7 +131,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?n=2 response: @@ -150,7 +150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:30 GMT docker-distribution-api-version: - registry/2.0 link: @@ -175,7 +175,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=library%2Fbusybox&n=2&orderby= response: @@ -196,7 +196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:30 GMT docker-distribution-api-version: - registry/2.0 server: @@ -221,11 +221,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:30 GMT server: - openresty strict-transport-security: @@ -245,7 +245,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.116667' + - '166.233333' status: code: 200 message: OK @@ -263,7 +263,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -275,7 +275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:31 GMT server: - openresty strict-transport-security: @@ -283,7 +283,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.1' + - '166.216667' status: code: 200 message: OK @@ -297,7 +297,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=library%2Fbusybox&n=2&orderby= response: @@ -316,7 +316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:31 GMT docker-distribution-api-version: - registry/2.0 link: @@ -341,7 +341,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo26ab150f&n=2&orderby= response: @@ -362,7 +362,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:31 GMT docker-distribution-api-version: - registry/2.0 server: @@ -387,11 +387,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -403,7 +403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:31 GMT server: - openresty strict-transport-security: @@ -411,7 +411,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.083333' + - '166.2' status: code: 200 message: OK @@ -429,7 +429,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -441,7 +441,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:31 GMT server: - openresty strict-transport-security: @@ -449,7 +449,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.066667' + - '166.183333' status: code: 200 message: OK @@ -463,7 +463,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo26ab150f&n=2&orderby= response: @@ -482,7 +482,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:31 GMT docker-distribution-api-version: - registry/2.0 link: @@ -507,7 +507,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo80c61ece&n=2&orderby= response: @@ -528,7 +528,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:31 GMT docker-distribution-api-version: - registry/2.0 server: @@ -553,11 +553,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:31 GMT server: - openresty strict-transport-security: @@ -577,7 +577,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.05' + - '166.166667' status: code: 200 message: OK @@ -595,7 +595,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -607,7 +607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:36 GMT + - Mon, 30 Aug 2021 20:31:31 GMT server: - openresty strict-transport-security: @@ -615,7 +615,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.033333' + - '166.15' status: code: 200 message: OK @@ -629,7 +629,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo80c61ece&n=2&orderby= response: @@ -648,7 +648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:37 GMT + - Mon, 30 Aug 2021 20:31:31 GMT docker-distribution-api-version: - registry/2.0 link: @@ -673,7 +673,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repoc1b812f4&n=2&orderby= response: @@ -694,7 +694,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:37 GMT + - Mon, 30 Aug 2021 20:31:31 GMT docker-distribution-api-version: - registry/2.0 server: @@ -719,11 +719,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -735,7 +735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:37 GMT + - Mon, 30 Aug 2021 20:31:31 GMT server: - openresty strict-transport-security: @@ -743,7 +743,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.016667' + - '166.133333' status: code: 200 message: OK @@ -761,7 +761,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -773,7 +773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:37 GMT + - Mon, 30 Aug 2021 20:31:31 GMT server: - openresty strict-transport-security: @@ -781,7 +781,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166' + - '166.116667' status: code: 200 message: OK @@ -795,7 +795,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repoc1b812f4&n=2&orderby= response: @@ -814,7 +814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:10:37 GMT + - Mon, 30 Aug 2021 20:31:31 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties.yaml index 7a05710da9b3..790971d94d20 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo816516e9/_tags response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:01 GMT + - Mon, 30 Aug 2021 20:31:57 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:02 GMT + - Mon, 30 Aug 2021 20:31:58 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.65' + - '166.583333' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:02 GMT + - Mon, 30 Aug 2021 20:31:58 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.633333' + - '166.566667' status: code: 200 message: OK @@ -131,26 +131,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo816516e9/_tags response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo816516e9", - "tags": [{"name": "tag816516e90", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:10:41.5503948Z", "lastUpdateTime": "2021-08-17T18:10:41.5503948Z", + "tags": [{"name": "tag816516e90", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:31:36.901915Z", "lastUpdateTime": "2021-08-30T20:31:36.901915Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag816516e91", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:10:42.5360697Z", "lastUpdateTime": "2021-08-17T18:10:42.5360697Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:31:38.1400395Z", "lastUpdateTime": "2021-08-30T20:31:38.1400395Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag816516e92", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:10:49.6628054Z", "lastUpdateTime": "2021-08-17T18:10:49.6628054Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:31:38.1882163Z", "lastUpdateTime": "2021-08-30T20:31:38.1882163Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag816516e93", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:10:42.6446526Z", "lastUpdateTime": "2021-08-17T18:10:42.6446526Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:31:41.5491518Z", "lastUpdateTime": "2021-08-30T20:31:41.5491518Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -162,11 +162,11 @@ interactions: connection: - keep-alive content-length: - - '1351' + - '1349' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:02 GMT + - Mon, 30 Aug 2021 20:31:58 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties_order_ascending.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties_order_ascending.yaml index eafedaf6f093..e45914a05a28 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties_order_ascending.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties_order_ascending.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo27741d6f/_tags?orderby=timeasc response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:27 GMT + - Mon, 30 Aug 2021 20:32:23 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:28 GMT + - Mon, 30 Aug 2021 20:32:24 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.383333' + - '166.65' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:28 GMT + - Mon, 30 Aug 2021 20:32:24 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.75' + - '166.633333' status: code: 200 message: OK @@ -131,26 +131,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo27741d6f/_tags?orderby=timeasc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo27741d6f", - "tags": [{"name": "tag27741d6f0", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:07.650425Z", "lastUpdateTime": "2021-08-17T18:11:07.650425Z", + "tags": [{"name": "tag27741d6f1", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:03.5251844Z", "lastUpdateTime": "2021-08-30T20:32:03.5251844Z", + "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": + true, "readEnabled": true, "listEnabled": true}}, {"name": "tag27741d6f0", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:04.1103551Z", "lastUpdateTime": "2021-08-30T20:32:04.1103551Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag27741d6f3", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:09.1074408Z", "lastUpdateTime": "2021-08-17T18:11:09.1074408Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:04.6623328Z", "lastUpdateTime": "2021-08-30T20:32:04.6623328Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag27741d6f2", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:09.6175155Z", "lastUpdateTime": "2021-08-17T18:11:09.6175155Z", - "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tag27741d6f1", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:10.9870733Z", "lastUpdateTime": "2021-08-17T18:11:10.9870733Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:04.8361945Z", "lastUpdateTime": "2021-08-30T20:32:04.8361945Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -162,11 +162,11 @@ interactions: connection: - keep-alive content-length: - - '1349' + - '1351' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:28 GMT + - Mon, 30 Aug 2021 20:32:24 GMT docker-distribution-api-version: - registry/2.0 server: @@ -189,7 +189,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo27741d6f/_tags?orderby=timeasc response: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:28 GMT + - Mon, 30 Aug 2021 20:32:24 GMT docker-distribution-api-version: - registry/2.0 server: @@ -235,11 +235,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -251,7 +251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:28 GMT + - Mon, 30 Aug 2021 20:32:24 GMT server: - openresty strict-transport-security: @@ -259,7 +259,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.733333' + - '166.616667' status: code: 200 message: OK @@ -277,7 +277,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -289,7 +289,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:28 GMT + - Mon, 30 Aug 2021 20:32:24 GMT server: - openresty strict-transport-security: @@ -297,7 +297,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.716667' + - '166.6' status: code: 200 message: OK @@ -311,26 +311,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo27741d6f/_tags?orderby=timeasc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo27741d6f", - "tags": [{"name": "tag27741d6f0", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:07.650425Z", "lastUpdateTime": "2021-08-17T18:11:07.650425Z", + "tags": [{"name": "tag27741d6f1", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:03.5251844Z", "lastUpdateTime": "2021-08-30T20:32:03.5251844Z", + "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": + true, "readEnabled": true, "listEnabled": true}}, {"name": "tag27741d6f0", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:04.1103551Z", "lastUpdateTime": "2021-08-30T20:32:04.1103551Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag27741d6f3", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:09.1074408Z", "lastUpdateTime": "2021-08-17T18:11:09.1074408Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:04.6623328Z", "lastUpdateTime": "2021-08-30T20:32:04.6623328Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag27741d6f2", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:09.6175155Z", "lastUpdateTime": "2021-08-17T18:11:09.6175155Z", - "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tag27741d6f1", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:10.9870733Z", "lastUpdateTime": "2021-08-17T18:11:10.9870733Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:04.8361945Z", "lastUpdateTime": "2021-08-30T20:32:04.8361945Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -342,11 +342,11 @@ interactions: connection: - keep-alive content-length: - - '1349' + - '1351' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:28 GMT + - Mon, 30 Aug 2021 20:32:24 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties_order_descending.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties_order_descending.yaml index 5185299353f2..e69318b5adcf 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties_order_descending.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_list_tag_properties_order_descending.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo45431dd7/_tags?orderby=timedesc response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:52 GMT + - Mon, 30 Aug 2021 20:32:49 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:54 GMT + - Mon, 30 Aug 2021 20:32:49 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.583333' + - '166.65' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:54 GMT + - Mon, 30 Aug 2021 20:32:49 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.566667' + - '166.633333' status: code: 200 message: OK @@ -131,26 +131,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo45431dd7/_tags?orderby=timedesc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo45431dd7", - "tags": [{"name": "tag45431dd73", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:34.6676299Z", "lastUpdateTime": "2021-08-17T18:11:34.6676299Z", - "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tag45431dd71", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:34.2609761Z", "lastUpdateTime": "2021-08-17T18:11:34.2609761Z", + "tags": [{"name": "tag45431dd71", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:30.7930861Z", "lastUpdateTime": "2021-08-30T20:32:30.7930861Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag45431dd72", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:34.113109Z", "lastUpdateTime": "2021-08-17T18:11:34.113109Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:30.6998691Z", "lastUpdateTime": "2021-08-30T20:32:30.6998691Z", + "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": + true, "readEnabled": true, "listEnabled": true}}, {"name": "tag45431dd73", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:30.6608484Z", "lastUpdateTime": "2021-08-30T20:32:30.6608484Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag45431dd70", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:32.769452Z", "lastUpdateTime": "2021-08-17T18:11:32.769452Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:29.3518131Z", "lastUpdateTime": "2021-08-30T20:32:29.3518131Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -162,11 +162,11 @@ interactions: connection: - keep-alive content-length: - - '1347' + - '1351' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:54 GMT + - Mon, 30 Aug 2021 20:32:49 GMT docker-distribution-api-version: - registry/2.0 server: @@ -189,7 +189,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo45431dd7/_tags?orderby=timedesc response: @@ -210,7 +210,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:54 GMT + - Mon, 30 Aug 2021 20:32:49 GMT docker-distribution-api-version: - registry/2.0 server: @@ -235,11 +235,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -251,7 +251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:54 GMT + - Mon, 30 Aug 2021 20:32:49 GMT server: - openresty strict-transport-security: @@ -259,7 +259,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.55' + - '166.616667' status: code: 200 message: OK @@ -277,7 +277,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -289,7 +289,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:55 GMT + - Mon, 30 Aug 2021 20:32:49 GMT server: - openresty strict-transport-security: @@ -297,7 +297,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.533333' + - '166.6' status: code: 200 message: OK @@ -311,26 +311,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo45431dd7/_tags?orderby=timedesc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo45431dd7", - "tags": [{"name": "tag45431dd73", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:34.6676299Z", "lastUpdateTime": "2021-08-17T18:11:34.6676299Z", - "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tag45431dd71", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:34.2609761Z", "lastUpdateTime": "2021-08-17T18:11:34.2609761Z", + "tags": [{"name": "tag45431dd71", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:30.7930861Z", "lastUpdateTime": "2021-08-30T20:32:30.7930861Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag45431dd72", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:34.113109Z", "lastUpdateTime": "2021-08-17T18:11:34.113109Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:30.6998691Z", "lastUpdateTime": "2021-08-30T20:32:30.6998691Z", + "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": + true, "readEnabled": true, "listEnabled": true}}, {"name": "tag45431dd73", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:30.6608484Z", "lastUpdateTime": "2021-08-30T20:32:30.6608484Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag45431dd70", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:32.769452Z", "lastUpdateTime": "2021-08-17T18:11:32.769452Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:29.3518131Z", "lastUpdateTime": "2021-08-30T20:32:29.3518131Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -342,11 +342,11 @@ interactions: connection: - keep-alive content-length: - - '1347' + - '1351' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:11:55 GMT + - Mon, 30 Aug 2021 20:32:50 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_manifest_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_manifest_properties.yaml index 97e256a23408..688065764667 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_manifest_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_manifest_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_tags/tag2bef19cb response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:19 GMT + - Mon, 30 Aug 2021 20:33:15 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:16 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.216667' + - '166' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:16 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.2' + - '165.616667' status: code: 200 message: OK @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_tags/tag2bef19cb response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2bef19cb", - "tag": {"name": "tag2bef19cb", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:58.9310956Z", "lastUpdateTime": "2021-08-17T18:11:58.9310956Z", + "tag": {"name": "tag2bef19cb", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:55.2608096Z", "lastUpdateTime": "2021-08-30T20:32:55.2608096Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:16 GMT docker-distribution-api-version: - registry/2.0 server: @@ -177,9 +177,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -198,7 +198,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:16 GMT docker-distribution-api-version: - registry/2.0 server: @@ -223,11 +223,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -239,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:17 GMT server: - openresty strict-transport-security: @@ -247,7 +247,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.183333' + - '165.6' status: code: 200 message: OK @@ -265,7 +265,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -277,7 +277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:17 GMT server: - openresty strict-transport-security: @@ -285,7 +285,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.166667' + - '165.583333' status: code: 200 message: OK @@ -299,15 +299,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2bef19cb", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:11:59.0258963Z", "lastUpdateTime": - "2021-08-17T18:11:59.0258963Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:32:54.9467757Z", "lastUpdateTime": + "2021-08-30T20:32:54.9467757Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tag2bef19cb"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -319,7 +319,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -330,11 +331,11 @@ interactions: connection: - keep-alive content-length: - - '1699' + - '1822' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:17 GMT docker-distribution-api-version: - registry/2.0 server: @@ -357,7 +358,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_tags/tag2bef19cb response: @@ -378,7 +379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:17 GMT docker-distribution-api-version: - registry/2.0 server: @@ -403,11 +404,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -419,7 +420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:17 GMT server: - openresty strict-transport-security: @@ -427,7 +428,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.15' + - '165.566667' status: code: 200 message: OK @@ -445,7 +446,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -457,7 +458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:17 GMT server: - openresty strict-transport-security: @@ -465,7 +466,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.133333' + - '165.55' status: code: 200 message: OK @@ -479,14 +480,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_tags/tag2bef19cb response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2bef19cb", - "tag": {"name": "tag2bef19cb", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:58.9310956Z", "lastUpdateTime": "2021-08-17T18:11:58.9310956Z", + "tag": {"name": "tag2bef19cb", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:55.2608096Z", "lastUpdateTime": "2021-08-30T20:32:55.2608096Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -502,7 +503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:17 GMT docker-distribution-api-version: - registry/2.0 server: @@ -530,9 +531,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -551,7 +552,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:17 GMT docker-distribution-api-version: - registry/2.0 server: @@ -576,11 +577,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -592,7 +593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:17 GMT server: - openresty strict-transport-security: @@ -600,7 +601,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.116667' + - '165.533333' status: code: 200 message: OK @@ -618,7 +619,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -630,7 +631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:20 GMT + - Mon, 30 Aug 2021 20:33:17 GMT server: - openresty strict-transport-security: @@ -638,7 +639,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.1' + - '165.516667' status: code: 200 message: OK @@ -657,15 +658,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2bef19cb", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:11:59.0258963Z", "lastUpdateTime": - "2021-08-17T18:11:59.0258963Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:32:54.9467757Z", "lastUpdateTime": + "2021-08-30T20:32:54.9467757Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tag2bef19cb"], "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -677,7 +678,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -688,11 +690,11 @@ interactions: connection: - keep-alive content-length: - - '1703' + - '1826' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:21 GMT + - Mon, 30 Aug 2021 20:33:18 GMT docker-distribution-api-version: - registry/2.0 server: @@ -715,7 +717,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_tags/tag2bef19cb response: @@ -736,7 +738,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:21 GMT + - Mon, 30 Aug 2021 20:33:18 GMT docker-distribution-api-version: - registry/2.0 server: @@ -761,11 +763,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -777,7 +779,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:21 GMT + - Mon, 30 Aug 2021 20:33:18 GMT server: - openresty strict-transport-security: @@ -785,7 +787,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.083333' + - '165.5' status: code: 200 message: OK @@ -803,7 +805,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -815,7 +817,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:21 GMT + - Mon, 30 Aug 2021 20:33:18 GMT server: - openresty strict-transport-security: @@ -823,7 +825,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.066667' + - '165.483333' status: code: 200 message: OK @@ -837,14 +839,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_tags/tag2bef19cb response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2bef19cb", - "tag": {"name": "tag2bef19cb", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:11:58.9310956Z", "lastUpdateTime": "2021-08-17T18:11:58.9310956Z", + "tag": {"name": "tag2bef19cb", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:32:55.2608096Z", "lastUpdateTime": "2021-08-30T20:32:55.2608096Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -860,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:21 GMT + - Mon, 30 Aug 2021 20:33:18 GMT docker-distribution-api-version: - registry/2.0 server: @@ -888,9 +890,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -909,7 +911,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:21 GMT + - Mon, 30 Aug 2021 20:33:18 GMT docker-distribution-api-version: - registry/2.0 server: @@ -934,11 +936,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -950,7 +952,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:21 GMT + - Mon, 30 Aug 2021 20:33:18 GMT server: - openresty strict-transport-security: @@ -958,7 +960,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.05' + - '165.466667' status: code: 200 message: OK @@ -976,7 +978,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -988,7 +990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:21 GMT + - Mon, 30 Aug 2021 20:33:18 GMT server: - openresty strict-transport-security: @@ -996,7 +998,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.033333' + - '165.45' status: code: 200 message: OK @@ -1015,15 +1017,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo2bef19cb/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2bef19cb", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:11:59.0258963Z", "lastUpdateTime": - "2021-08-17T18:11:59.0258963Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:32:54.9467757Z", "lastUpdateTime": + "2021-08-30T20:32:54.9467757Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tag2bef19cb"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -1035,7 +1037,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -1046,11 +1049,11 @@ interactions: connection: - keep-alive content-length: - - '1699' + - '1822' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:21 GMT + - Mon, 30 Aug 2021 20:33:18 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_manifest_properties_kwargs.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_manifest_properties_kwargs.yaml index c9b88f932614..3ae712bbc74c 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_manifest_properties_kwargs.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_manifest_properties_kwargs.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:57 GMT + - Mon, 30 Aug 2021 20:33:43 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:58 GMT + - Mon, 30 Aug 2021 20:33:43 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.616667' + - '166.083333' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:58 GMT + - Mon, 30 Aug 2021 20:33:43 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.966667' + - '166.066667' status: code: 200 message: OK @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "tag": {"name": "tagec051cb9", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:12:26.1999056Z", "lastUpdateTime": "2021-08-17T18:12:26.1999056Z", + "tag": {"name": "tagec051cb9", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:33:23.0638428Z", "lastUpdateTime": "2021-08-30T20:33:23.0638428Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:58 GMT + - Mon, 30 Aug 2021 20:33:43 GMT docker-distribution-api-version: - registry/2.0 server: @@ -177,9 +177,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -198,7 +198,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:58 GMT + - Mon, 30 Aug 2021 20:33:43 GMT docker-distribution-api-version: - registry/2.0 server: @@ -223,11 +223,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -239,7 +239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:58 GMT + - Mon, 30 Aug 2021 20:33:44 GMT server: - openresty strict-transport-security: @@ -247,7 +247,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.95' + - '166.05' status: code: 200 message: OK @@ -265,7 +265,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -277,7 +277,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:58 GMT + - Mon, 30 Aug 2021 20:33:44 GMT server: - openresty strict-transport-security: @@ -285,7 +285,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.933333' + - '166.033333' status: code: 200 message: OK @@ -299,15 +299,15 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:12:26.324448Z", "lastUpdateTime": - "2021-08-17T18:12:26.324448Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:33:22.790771Z", "lastUpdateTime": + "2021-08-30T20:33:22.790771Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tagec051cb9"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -319,7 +319,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -330,11 +331,11 @@ interactions: connection: - keep-alive content-length: - - '1697' + - '1820' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:58 GMT + - Mon, 30 Aug 2021 20:33:44 GMT docker-distribution-api-version: - registry/2.0 server: @@ -357,7 +358,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: @@ -378,7 +379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:58 GMT + - Mon, 30 Aug 2021 20:33:44 GMT docker-distribution-api-version: - registry/2.0 server: @@ -403,11 +404,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -419,7 +420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:44 GMT server: - openresty strict-transport-security: @@ -427,7 +428,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.916667' + - '166.016667' status: code: 200 message: OK @@ -445,7 +446,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -457,7 +458,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:44 GMT server: - openresty strict-transport-security: @@ -465,7 +466,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.9' + - '166' status: code: 200 message: OK @@ -479,14 +480,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "tag": {"name": "tagec051cb9", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:12:26.1999056Z", "lastUpdateTime": "2021-08-17T18:12:26.1999056Z", + "tag": {"name": "tagec051cb9", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:33:23.0638428Z", "lastUpdateTime": "2021-08-30T20:33:23.0638428Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -502,7 +503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:44 GMT docker-distribution-api-version: - registry/2.0 server: @@ -529,9 +530,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -550,7 +551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:44 GMT docker-distribution-api-version: - registry/2.0 server: @@ -575,11 +576,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -591,7 +592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:44 GMT server: - openresty strict-transport-security: @@ -599,7 +600,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.883333' + - '165.983333' status: code: 200 message: OK @@ -617,7 +618,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -629,7 +630,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:44 GMT server: - openresty strict-transport-security: @@ -637,7 +638,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.866667' + - '165.966667' status: code: 200 message: OK @@ -655,15 +656,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:12:26.324448Z", "lastUpdateTime": - "2021-08-17T18:12:26.324448Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:33:22.790771Z", "lastUpdateTime": + "2021-08-30T20:33:22.790771Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tagec051cb9"], "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -675,7 +676,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -686,11 +688,11 @@ interactions: connection: - keep-alive content-length: - - '1698' + - '1821' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:45 GMT docker-distribution-api-version: - registry/2.0 server: @@ -713,7 +715,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: @@ -734,7 +736,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:45 GMT docker-distribution-api-version: - registry/2.0 server: @@ -759,11 +761,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -775,7 +777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:45 GMT server: - openresty strict-transport-security: @@ -783,7 +785,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.85' + - '166.316667' status: code: 200 message: OK @@ -801,7 +803,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -813,7 +815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:45 GMT server: - openresty strict-transport-security: @@ -821,7 +823,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.833333' + - '166.3' status: code: 200 message: OK @@ -835,14 +837,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "tag": {"name": "tagec051cb9", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:12:26.1999056Z", "lastUpdateTime": "2021-08-17T18:12:26.1999056Z", + "tag": {"name": "tagec051cb9", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:33:23.0638428Z", "lastUpdateTime": "2021-08-30T20:33:23.0638428Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -858,7 +860,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:45 GMT docker-distribution-api-version: - registry/2.0 server: @@ -885,9 +887,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -906,7 +908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:12:59 GMT + - Mon, 30 Aug 2021 20:33:45 GMT docker-distribution-api-version: - registry/2.0 server: @@ -931,11 +933,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -947,7 +949,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:45 GMT server: - openresty strict-transport-security: @@ -955,7 +957,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.816667' + - '166.283333' status: code: 200 message: OK @@ -973,7 +975,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -985,7 +987,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:45 GMT server: - openresty strict-transport-security: @@ -993,7 +995,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.466667' + - '166.266667' status: code: 200 message: OK @@ -1011,15 +1013,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:12:26.324448Z", "lastUpdateTime": - "2021-08-17T18:12:26.324448Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:33:22.790771Z", "lastUpdateTime": + "2021-08-30T20:33:22.790771Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tagec051cb9"], "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": false, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -1031,7 +1033,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -1042,11 +1045,11 @@ interactions: connection: - keep-alive content-length: - - '1699' + - '1822' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:45 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1069,7 +1072,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: @@ -1090,7 +1093,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:45 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1115,11 +1118,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1131,7 +1134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:45 GMT server: - openresty strict-transport-security: @@ -1139,7 +1142,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.45' + - '166.25' status: code: 200 message: OK @@ -1157,7 +1160,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1169,7 +1172,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:46 GMT server: - openresty strict-transport-security: @@ -1177,7 +1180,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.433333' + - '166.233333' status: code: 200 message: OK @@ -1191,14 +1194,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "tag": {"name": "tagec051cb9", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:12:26.1999056Z", "lastUpdateTime": "2021-08-17T18:12:26.1999056Z", + "tag": {"name": "tagec051cb9", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:33:23.0638428Z", "lastUpdateTime": "2021-08-30T20:33:23.0638428Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -1214,7 +1217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:46 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1241,9 +1244,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1262,7 +1265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:46 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1287,11 +1290,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1303,7 +1306,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:46 GMT server: - openresty strict-transport-security: @@ -1311,7 +1314,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.416667' + - '166.216667' status: code: 200 message: OK @@ -1329,7 +1332,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1341,7 +1344,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:46 GMT server: - openresty strict-transport-security: @@ -1349,7 +1352,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.4' + - '166.2' status: code: 200 message: OK @@ -1367,15 +1370,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:12:26.324448Z", "lastUpdateTime": - "2021-08-17T18:12:26.324448Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:33:22.790771Z", "lastUpdateTime": + "2021-08-30T20:33:22.790771Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tagec051cb9"], "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -1387,7 +1390,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -1398,11 +1402,11 @@ interactions: connection: - keep-alive content-length: - - '1700' + - '1823' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:46 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1425,7 +1429,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: @@ -1446,7 +1450,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:00 GMT + - Mon, 30 Aug 2021 20:33:46 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1471,11 +1475,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1487,7 +1491,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:46 GMT server: - openresty strict-transport-security: @@ -1495,7 +1499,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.383333' + - '166.183333' status: code: 200 message: OK @@ -1513,7 +1517,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1525,7 +1529,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:46 GMT server: - openresty strict-transport-security: @@ -1533,7 +1537,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.366667' + - '166.166667' status: code: 200 message: OK @@ -1547,14 +1551,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "tag": {"name": "tagec051cb9", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:12:26.1999056Z", "lastUpdateTime": "2021-08-17T18:12:26.1999056Z", + "tag": {"name": "tagec051cb9", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:33:23.0638428Z", "lastUpdateTime": "2021-08-30T20:33:23.0638428Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -1570,7 +1574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:46 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1597,9 +1601,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1618,7 +1622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:46 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1643,11 +1647,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1659,7 +1663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:46 GMT server: - openresty strict-transport-security: @@ -1667,7 +1671,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.35' + - '166.15' status: code: 200 message: OK @@ -1685,7 +1689,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1697,7 +1701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:47 GMT server: - openresty strict-transport-security: @@ -1705,7 +1709,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.333333' + - '166.133333' status: code: 200 message: OK @@ -1723,15 +1727,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:12:26.324448Z", "lastUpdateTime": - "2021-08-17T18:12:26.324448Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:33:22.790771Z", "lastUpdateTime": + "2021-08-30T20:33:22.790771Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tagec051cb9"], "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -1743,7 +1747,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -1754,11 +1759,11 @@ interactions: connection: - keep-alive content-length: - - '1701' + - '1824' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:47 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1781,7 +1786,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: @@ -1802,7 +1807,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:47 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1827,11 +1832,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1843,7 +1848,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:47 GMT server: - openresty strict-transport-security: @@ -1851,7 +1856,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.316667' + - '166.116667' status: code: 200 message: OK @@ -1869,7 +1874,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1881,7 +1886,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:47 GMT server: - openresty strict-transport-security: @@ -1889,7 +1894,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.3' + - '166.1' status: code: 200 message: OK @@ -1903,14 +1908,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_tags/tagec051cb9 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "tag": {"name": "tagec051cb9", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:12:26.1999056Z", "lastUpdateTime": "2021-08-17T18:12:26.1999056Z", + "tag": {"name": "tagec051cb9", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:33:23.0638428Z", "lastUpdateTime": "2021-08-30T20:33:23.0638428Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -1926,7 +1931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:47 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1954,9 +1959,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1975,7 +1980,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:47 GMT docker-distribution-api-version: - registry/2.0 server: @@ -2000,11 +2005,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -2016,7 +2021,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:47 GMT server: - openresty strict-transport-security: @@ -2024,7 +2029,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.283333' + - '166.083333' status: code: 200 message: OK @@ -2042,7 +2047,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -2054,7 +2059,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:01 GMT + - Mon, 30 Aug 2021 20:33:47 GMT server: - openresty strict-transport-security: @@ -2062,7 +2067,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.266667' + - '166.066667' status: code: 200 message: OK @@ -2081,15 +2086,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoec051cb9/_manifests/sha256%3A7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoec051cb9", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:12:26.324448Z", "lastUpdateTime": - "2021-08-17T18:12:26.324448Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:33:22.790771Z", "lastUpdateTime": + "2021-08-30T20:33:22.790771Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tagec051cb9"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -2101,7 +2106,8 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: @@ -2112,11 +2118,11 @@ interactions: connection: - keep-alive content-length: - - '1697' + - '1820' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:02 GMT + - Mon, 30 Aug 2021 20:33:47 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_repository_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_repository_properties.yaml index 04655bd8026b..02635b43531e 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_repository_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_repository_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo63d41ad4 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:26 GMT + - Mon, 30 Aug 2021 20:34:12 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:27 GMT + - Mon, 30 Aug 2021 20:34:13 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.416667' + - '166.65' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:27 GMT + - Mon, 30 Aug 2021 20:34:13 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.366667' + - '166.633333' status: code: 200 message: OK @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo63d41ad4 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo63d41ad4", - "createdTime": "2021-08-17T18:13:06.3062049Z", "lastUpdateTime": "2021-08-17T18:13:04.3397751Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:33:51.7700261Z", "lastUpdateTime": "2021-08-30T20:33:49.9977855Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:27 GMT + - Mon, 30 Aug 2021 20:34:13 GMT docker-distribution-api-version: - registry/2.0 server: @@ -182,7 +182,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo63d41ad4 response: @@ -203,7 +203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:27 GMT + - Mon, 30 Aug 2021 20:34:13 GMT docker-distribution-api-version: - registry/2.0 server: @@ -228,11 +228,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -244,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:27 GMT + - Mon, 30 Aug 2021 20:34:13 GMT server: - openresty strict-transport-security: @@ -252,7 +252,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.35' + - '166.616667' status: code: 200 message: OK @@ -270,7 +270,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -282,7 +282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:27 GMT + - Mon, 30 Aug 2021 20:34:13 GMT server: - openresty strict-transport-security: @@ -290,7 +290,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.333333' + - '166.6' status: code: 200 message: OK @@ -309,14 +309,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo63d41ad4 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo63d41ad4", - "createdTime": "2021-08-17T18:13:06.3062049Z", "lastUpdateTime": "2021-08-17T18:13:04.3397751Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:33:51.7700261Z", "lastUpdateTime": "2021-08-30T20:33:49.9977855Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false, "teleportEnabled": false}}' headers: @@ -332,7 +332,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:28 GMT + - Mon, 30 Aug 2021 20:34:13 GMT docker-distribution-api-version: - registry/2.0 server: @@ -360,7 +360,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo63d41ad4 response: @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:28 GMT + - Mon, 30 Aug 2021 20:34:13 GMT docker-distribution-api-version: - registry/2.0 server: @@ -406,11 +406,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -422,7 +422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:28 GMT + - Mon, 30 Aug 2021 20:34:13 GMT server: - openresty strict-transport-security: @@ -430,7 +430,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.316667' + - '166.583333' status: code: 200 message: OK @@ -448,7 +448,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -460,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:28 GMT + - Mon, 30 Aug 2021 20:34:14 GMT server: - openresty strict-transport-security: @@ -468,7 +468,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.3' + - '166.566667' status: code: 200 message: OK @@ -487,14 +487,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo63d41ad4 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo63d41ad4", - "createdTime": "2021-08-17T18:13:06.3062049Z", "lastUpdateTime": "2021-08-17T18:13:04.3397751Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:33:51.7700261Z", "lastUpdateTime": "2021-08-30T20:33:49.9977855Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -510,7 +510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:28 GMT + - Mon, 30 Aug 2021 20:34:14 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_repository_properties_kwargs.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_repository_properties_kwargs.yaml index c4a040b86663..5a71aabb660c 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_repository_properties_kwargs.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_repository_properties_kwargs.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:53 GMT + - Mon, 30 Aug 2021 20:34:38 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.65' + - '166.45' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.633333' + - '166.166667' status: code: 200 message: OK @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2b381dc2", - "createdTime": "2021-08-17T18:13:33.4252762Z", "lastUpdateTime": "2021-08-17T18:13:31.2265625Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:34:18.2704985Z", "lastUpdateTime": "2021-08-30T20:34:16.6415414Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT docker-distribution-api-version: - registry/2.0 server: @@ -182,7 +182,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: @@ -203,7 +203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT docker-distribution-api-version: - registry/2.0 server: @@ -228,11 +228,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -244,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT server: - openresty strict-transport-security: @@ -252,7 +252,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.616667' + - '166.15' status: code: 200 message: OK @@ -270,7 +270,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -282,7 +282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT server: - openresty strict-transport-security: @@ -290,7 +290,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.6' + - '166.133333' status: code: 200 message: OK @@ -309,14 +309,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2b381dc2", - "createdTime": "2021-08-17T18:13:33.4252762Z", "lastUpdateTime": "2021-08-17T18:13:31.2265625Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:34:18.2704985Z", "lastUpdateTime": "2021-08-30T20:34:16.6415414Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -332,7 +332,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT docker-distribution-api-version: - registry/2.0 server: @@ -359,7 +359,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: @@ -380,7 +380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT docker-distribution-api-version: - registry/2.0 server: @@ -405,11 +405,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -421,7 +421,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT server: - openresty strict-transport-security: @@ -429,7 +429,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.583333' + - '166.116667' status: code: 200 message: OK @@ -447,7 +447,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -459,7 +459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT server: - openresty strict-transport-security: @@ -467,7 +467,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.566667' + - '166.1' status: code: 200 message: OK @@ -485,14 +485,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2b381dc2", - "createdTime": "2021-08-17T18:13:33.4252762Z", "lastUpdateTime": "2021-08-17T18:13:31.2265625Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:34:18.2704985Z", "lastUpdateTime": "2021-08-30T20:34:16.6415414Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -508,7 +508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT docker-distribution-api-version: - registry/2.0 server: @@ -535,7 +535,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: @@ -556,7 +556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:40 GMT docker-distribution-api-version: - registry/2.0 server: @@ -581,11 +581,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -597,7 +597,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:41 GMT server: - openresty strict-transport-security: @@ -605,7 +605,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.55' + - '166.083333' status: code: 200 message: OK @@ -623,7 +623,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -635,7 +635,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:41 GMT server: - openresty strict-transport-security: @@ -643,7 +643,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.533333' + - '166.066667' status: code: 200 message: OK @@ -661,14 +661,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2b381dc2", - "createdTime": "2021-08-17T18:13:33.4252762Z", "lastUpdateTime": "2021-08-17T18:13:31.2265625Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:34:18.2704985Z", "lastUpdateTime": "2021-08-30T20:34:16.6415414Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": false, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -684,7 +684,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:41 GMT docker-distribution-api-version: - registry/2.0 server: @@ -711,7 +711,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: @@ -732,7 +732,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:54 GMT + - Mon, 30 Aug 2021 20:34:41 GMT docker-distribution-api-version: - registry/2.0 server: @@ -757,11 +757,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -773,7 +773,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:41 GMT server: - openresty strict-transport-security: @@ -781,7 +781,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.516667' + - '166.05' status: code: 200 message: OK @@ -799,7 +799,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -811,7 +811,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:41 GMT server: - openresty strict-transport-security: @@ -819,7 +819,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.5' + - '166.033333' status: code: 200 message: OK @@ -837,14 +837,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2b381dc2", - "createdTime": "2021-08-17T18:13:33.4252762Z", "lastUpdateTime": "2021-08-17T18:13:31.2265625Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:34:18.2704985Z", "lastUpdateTime": "2021-08-30T20:34:16.6415414Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -860,7 +860,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:41 GMT docker-distribution-api-version: - registry/2.0 server: @@ -887,7 +887,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: @@ -908,7 +908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:41 GMT docker-distribution-api-version: - registry/2.0 server: @@ -933,11 +933,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -949,7 +949,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:41 GMT server: - openresty strict-transport-security: @@ -957,7 +957,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.483333' + - '166.016667' status: code: 200 message: OK @@ -975,7 +975,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -987,7 +987,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:41 GMT server: - openresty strict-transport-security: @@ -995,7 +995,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.466667' + - '166' status: code: 200 message: OK @@ -1013,14 +1013,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2b381dc2", - "createdTime": "2021-08-17T18:13:33.4252762Z", "lastUpdateTime": "2021-08-17T18:13:31.2265625Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:34:18.2704985Z", "lastUpdateTime": "2021-08-30T20:34:16.6415414Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false, "teleportEnabled": false}}' headers: @@ -1036,7 +1036,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:42 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1064,7 +1064,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: @@ -1085,7 +1085,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:42 GMT docker-distribution-api-version: - registry/2.0 server: @@ -1110,11 +1110,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1126,7 +1126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:42 GMT server: - openresty strict-transport-security: @@ -1134,7 +1134,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.45' + - '165.983333' status: code: 200 message: OK @@ -1152,7 +1152,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1164,7 +1164,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:42 GMT server: - openresty strict-transport-security: @@ -1172,7 +1172,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.433333' + - '165.966667' status: code: 200 message: OK @@ -1191,14 +1191,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo2b381dc2 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo2b381dc2", - "createdTime": "2021-08-17T18:13:33.4252762Z", "lastUpdateTime": "2021-08-17T18:13:31.2265625Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:34:18.2704985Z", "lastUpdateTime": "2021-08-30T20:34:16.6415414Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -1214,7 +1214,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:13:55 GMT + - Mon, 30 Aug 2021 20:34:42 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_tag_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_tag_properties.yaml index 7bf00a6e1546..2041febfbc4e 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_tag_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_tag_properties.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoaf8317b0/_tags/tagaf8317b0 response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:20 GMT + - Mon, 30 Aug 2021 20:35:08 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:09 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.95' + - '165.85' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:09 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.933333' + - '165.833333' status: code: 200 message: OK @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoaf8317b0/_tags/tagaf8317b0 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoaf8317b0", - "tag": {"name": "tagaf8317b0", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:14:00.732549Z", "lastUpdateTime": "2021-08-17T18:14:00.732549Z", + "tag": {"name": "tagaf8317b0", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:34:47.0690947Z", "lastUpdateTime": "2021-08-30T20:34:47.0690947Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -150,11 +150,11 @@ interactions: connection: - keep-alive content-length: - - '388' + - '390' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:09 GMT docker-distribution-api-version: - registry/2.0 server: @@ -182,7 +182,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoaf8317b0/_tags/tagaf8317b0 response: @@ -203,7 +203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:09 GMT docker-distribution-api-version: - registry/2.0 server: @@ -228,11 +228,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -244,7 +244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:09 GMT server: - openresty strict-transport-security: @@ -252,7 +252,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.916667' + - '165.816667' status: code: 200 message: OK @@ -270,7 +270,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -282,7 +282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:09 GMT server: - openresty strict-transport-security: @@ -290,7 +290,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.9' + - '165.8' status: code: 200 message: OK @@ -309,14 +309,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoaf8317b0/_tags/tagaf8317b0 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoaf8317b0", - "tag": {"name": "tagaf8317b0", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:14:00.732549Z", "lastUpdateTime": "2021-08-17T18:14:00.732549Z", + "tag": {"name": "tagaf8317b0", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:34:47.0690947Z", "lastUpdateTime": "2021-08-30T20:34:47.0690947Z", "signed": false, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false}}}' headers: @@ -328,11 +328,11 @@ interactions: connection: - keep-alive content-length: - - '392' + - '394' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:09 GMT docker-distribution-api-version: - registry/2.0 server: @@ -360,7 +360,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoaf8317b0/_tags/tagaf8317b0 response: @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:09 GMT docker-distribution-api-version: - registry/2.0 server: @@ -406,11 +406,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -422,7 +422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:09 GMT server: - openresty strict-transport-security: @@ -430,7 +430,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.883333' + - '165.783333' status: code: 200 message: OK @@ -448,7 +448,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -460,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:09 GMT server: - openresty strict-transport-security: @@ -468,7 +468,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '165.866667' + - '165.766667' status: code: 200 message: OK @@ -487,14 +487,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoaf8317b0/_tags/tagaf8317b0 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoaf8317b0", - "tag": {"name": "tagaf8317b0", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:14:00.732549Z", "lastUpdateTime": "2021-08-17T18:14:00.732549Z", + "tag": {"name": "tagaf8317b0", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:34:47.0690947Z", "lastUpdateTime": "2021-08-30T20:34:47.0690947Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -506,11 +506,11 @@ interactions: connection: - keep-alive content-length: - - '388' + - '390' content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:21 GMT + - Mon, 30 Aug 2021 20:35:10 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_tag_properties_kwargs.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_tag_properties_kwargs.yaml index 09ba05057853..e450c0645374 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_tag_properties_kwargs.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client.test_update_tag_properties_kwargs.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:45 GMT + - Mon, 30 Aug 2021 20:35:34 GMT docker-distribution-api-version: - registry/2.0 server: @@ -55,11 +55,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -71,7 +71,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:46 GMT + - Mon, 30 Aug 2021 20:35:35 GMT server: - openresty strict-transport-security: @@ -79,7 +79,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.65' + - '165.85' status: code: 200 message: OK @@ -97,7 +97,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -109,7 +109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:46 GMT + - Mon, 30 Aug 2021 20:35:35 GMT server: - openresty strict-transport-security: @@ -117,7 +117,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.633333' + - '165.833333' status: code: 200 message: OK @@ -131,14 +131,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo60eb1a9e", - "tag": {"name": "tag60eb1a9e", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:14:25.8063944Z", "lastUpdateTime": "2021-08-17T18:14:25.8063944Z", + "tag": {"name": "tag60eb1a9e", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:35:14.6484981Z", "lastUpdateTime": "2021-08-30T20:35:14.6484981Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -154,7 +154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:46 GMT + - Mon, 30 Aug 2021 20:35:35 GMT docker-distribution-api-version: - registry/2.0 server: @@ -181,7 +181,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: @@ -202,7 +202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:46 GMT + - Mon, 30 Aug 2021 20:35:35 GMT docker-distribution-api-version: - registry/2.0 server: @@ -227,11 +227,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -243,7 +243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:46 GMT + - Mon, 30 Aug 2021 20:35:35 GMT server: - openresty strict-transport-security: @@ -251,7 +251,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.616667' + - '165.816667' status: code: 200 message: OK @@ -269,7 +269,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:46 GMT + - Mon, 30 Aug 2021 20:35:35 GMT server: - openresty strict-transport-security: @@ -289,7 +289,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.6' + - '165.8' status: code: 200 message: OK @@ -307,14 +307,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo60eb1a9e", - "tag": {"name": "tag60eb1a9e", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:14:25.8063944Z", "lastUpdateTime": "2021-08-17T18:14:25.8063944Z", + "tag": {"name": "tag60eb1a9e", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:35:14.6484981Z", "lastUpdateTime": "2021-08-30T20:35:14.6484981Z", "signed": false, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -330,7 +330,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:47 GMT + - Mon, 30 Aug 2021 20:35:35 GMT docker-distribution-api-version: - registry/2.0 server: @@ -357,7 +357,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: @@ -378,7 +378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:47 GMT + - Mon, 30 Aug 2021 20:35:35 GMT docker-distribution-api-version: - registry/2.0 server: @@ -403,11 +403,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -419,7 +419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:47 GMT + - Mon, 30 Aug 2021 20:35:36 GMT server: - openresty strict-transport-security: @@ -427,7 +427,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.583333' + - '165.783333' status: code: 200 message: OK @@ -445,7 +445,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -457,7 +457,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:47 GMT + - Mon, 30 Aug 2021 20:35:36 GMT server: - openresty strict-transport-security: @@ -465,7 +465,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.566667' + - '165.766667' status: code: 200 message: OK @@ -483,14 +483,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo60eb1a9e", - "tag": {"name": "tag60eb1a9e", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:14:25.8063944Z", "lastUpdateTime": "2021-08-17T18:14:25.8063944Z", + "tag": {"name": "tag60eb1a9e", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:35:14.6484981Z", "lastUpdateTime": "2021-08-30T20:35:14.6484981Z", "signed": false, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": false, "listEnabled": true}}}' headers: @@ -506,7 +506,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:47 GMT + - Mon, 30 Aug 2021 20:35:36 GMT docker-distribution-api-version: - registry/2.0 server: @@ -533,7 +533,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: @@ -554,7 +554,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:47 GMT + - Mon, 30 Aug 2021 20:35:36 GMT docker-distribution-api-version: - registry/2.0 server: @@ -579,11 +579,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -595,7 +595,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:47 GMT + - Mon, 30 Aug 2021 20:35:36 GMT server: - openresty strict-transport-security: @@ -603,7 +603,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.55' + - '165.75' status: code: 200 message: OK @@ -621,7 +621,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -633,7 +633,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:47 GMT + - Mon, 30 Aug 2021 20:35:36 GMT server: - openresty strict-transport-security: @@ -641,7 +641,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.533333' + - '165.733333' status: code: 200 message: OK @@ -659,14 +659,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo60eb1a9e", - "tag": {"name": "tag60eb1a9e", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:14:25.8063944Z", "lastUpdateTime": "2021-08-17T18:14:25.8063944Z", + "tag": {"name": "tag60eb1a9e", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:35:14.6484981Z", "lastUpdateTime": "2021-08-30T20:35:14.6484981Z", "signed": false, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": true}}}' headers: @@ -682,7 +682,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:47 GMT + - Mon, 30 Aug 2021 20:35:36 GMT docker-distribution-api-version: - registry/2.0 server: @@ -709,7 +709,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: @@ -730,7 +730,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:48 GMT + - Mon, 30 Aug 2021 20:35:36 GMT docker-distribution-api-version: - registry/2.0 server: @@ -755,11 +755,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -771,7 +771,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:48 GMT + - Mon, 30 Aug 2021 20:35:36 GMT server: - openresty strict-transport-security: @@ -779,7 +779,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.516667' + - '165.716667' status: code: 200 message: OK @@ -797,7 +797,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -809,7 +809,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:48 GMT + - Mon, 30 Aug 2021 20:35:36 GMT server: - openresty strict-transport-security: @@ -817,7 +817,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.5' + - '165.7' status: code: 200 message: OK @@ -835,14 +835,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo60eb1a9e", - "tag": {"name": "tag60eb1a9e", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:14:25.8063944Z", "lastUpdateTime": "2021-08-17T18:14:25.8063944Z", + "tag": {"name": "tag60eb1a9e", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:35:14.6484981Z", "lastUpdateTime": "2021-08-30T20:35:14.6484981Z", "signed": false, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false}}}' headers: @@ -858,7 +858,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:48 GMT + - Mon, 30 Aug 2021 20:35:36 GMT docker-distribution-api-version: - registry/2.0 server: @@ -886,7 +886,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: @@ -907,7 +907,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:48 GMT + - Mon, 30 Aug 2021 20:35:36 GMT docker-distribution-api-version: - registry/2.0 server: @@ -932,11 +932,11 @@ interactions: Connection: - keep-alive Content-Length: - - '1347' + - '1337' Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -948,7 +948,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:48 GMT + - Mon, 30 Aug 2021 20:35:37 GMT server: - openresty strict-transport-security: @@ -956,7 +956,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.483333' + - '165.683333' status: code: 200 message: OK @@ -974,7 +974,7 @@ interactions: Content-Type: - application/x-www-form-urlencoded User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -986,7 +986,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:48 GMT + - Mon, 30 Aug 2021 20:35:37 GMT server: - openresty strict-transport-security: @@ -994,7 +994,7 @@ interactions: transfer-encoding: - chunked x-ms-ratelimit-remaining-calls-per-second: - - '166.466667' + - '165.666667' status: code: 200 message: OK @@ -1013,14 +1013,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo60eb1a9e/_tags/tag60eb1a9e response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo60eb1a9e", - "tag": {"name": "tag60eb1a9e", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:14:25.8063944Z", "lastUpdateTime": "2021-08-17T18:14:25.8063944Z", + "tag": {"name": "tag60eb1a9e", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:35:14.6484981Z", "lastUpdateTime": "2021-08-30T20:35:14.6484981Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -1036,7 +1036,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 17 Aug 2021 18:14:48 GMT + - Mon, 30 Aug 2021 20:35:37 GMT docker-distribution-api-version: - registry/2.0 server: diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_construct_container_registry_client.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_construct_container_registry_client.yaml new file mode 100644 index 000000000000..8d9754df23fc --- /dev/null +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_construct_container_registry_client.yaml @@ -0,0 +1,59 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://fake_url.azurecr.io/acr/v1/library%2Fhello-world + response: + body: + string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, + visit https://aka.ms/acr/authorization for more information.", "detail": [{"Type": + "repository", "Name": "library/hello-world", "Action": "metadata_read"}]}]}' + headers: + access-control-expose-headers: X-Ms-Correlation-Request-Id + connection: keep-alive + content-length: '222' + content-type: application/json; charset=utf-8 + date: Mon, 30 Aug 2021 20:35:37 GMT + docker-distribution-api-version: registry/2.0 + server: openresty + strict-transport-security: max-age=31536000; includeSubDomains + www-authenticate: Bearer realm="https://fake_url.azurecr.io/oauth2/token",service="fake_url.azurecr.io",scope="fake_scope",error="invalid_token" + x-content-type-options: nosniff + status: + code: 401 + message: Unauthorized + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fhello-world +- request: + body: + access_token: REDACTED + grant_type: access_token + service: yalinlitests.azurecr.io + headers: + Accept: + - application/json + User-Agent: + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) + method: POST + uri: https://fake_url.azurecr.io/oauth2/exchange + response: + body: + string: '{"errors": [{"code": "UNAUTHORIZED", "message": "retrieving permissions + failed"}]}' + headers: + connection: keep-alive + content-length: '78' + content-type: application/json + date: Mon, 30 Aug 2021 20:35:37 GMT + server: openresty + strict-transport-security: max-age=31536000; includeSubDomains + x-ms-ratelimit-remaining-calls-per-second: '165.85' + status: + code: 401 + message: Unauthorized + url: https://yalinlitests.azurecr.io/oauth2/exchange +version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_manifest.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_manifest.yaml index 95fdeca76fb3..a5571c7f1ddc 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_manifest.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_manifest.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoaf17178c/_tags/tagaf17178c response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:13 GMT + date: Mon, 30 Aug 2021 20:36:03 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:13 GMT + date: Mon, 30 Aug 2021 20:36:03 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.583333' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:13 GMT + date: Mon, 30 Aug 2021 20:36:03 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.566667' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -89,14 +89,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoaf17178c/_tags/tagaf17178c response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoaf17178c", - "tag": {"name": "tagaf17178c", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:14:52.9502045Z", "lastUpdateTime": "2021-08-17T18:14:52.9502045Z", + "tag": {"name": "tagaf17178c", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:35:42.5428135Z", "lastUpdateTime": "2021-08-30T20:35:42.5428135Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:13 GMT + date: Mon, 30 Aug 2021 20:36:03 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -119,9 +119,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/repoaf17178c/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/v2/repoaf17178c/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -132,7 +132,7 @@ interactions: connection: keep-alive content-length: '208' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:13 GMT + date: Mon, 30 Aug 2021 20:36:03 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -141,7 +141,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/v2/repoaf17178c/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/v2/repoaf17178c/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -151,7 +151,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -160,11 +160,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:13 GMT + date: Mon, 30 Aug 2021 20:36:03 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.55' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -179,7 +179,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -188,11 +188,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:13 GMT + date: Mon, 30 Aug 2021 20:36:03 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.533333' + x-ms-ratelimit-remaining-calls-per-second: '166.6' status: code: 200 message: OK @@ -203,9 +203,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/repoaf17178c/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/v2/repoaf17178c/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '' @@ -213,7 +213,7 @@ interactions: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive content-length: '0' - date: Tue, 17 Aug 2021 18:15:13 GMT + date: Mon, 30 Aug 2021 20:36:04 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -222,14 +222,14 @@ interactions: status: code: 202 message: Accepted - url: https://yalinlitests.azurecr.io/v2/repoaf17178c/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/v2/repoaf17178c/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoaf17178c/_tags/tagaf17178c response: @@ -242,7 +242,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:23 GMT + date: Mon, 30 Aug 2021 20:36:14 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -261,7 +261,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -270,11 +270,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:24 GMT + date: Mon, 30 Aug 2021 20:36:14 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.516667' + x-ms-ratelimit-remaining-calls-per-second: '166.583333' status: code: 200 message: OK @@ -289,7 +289,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -298,11 +298,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:24 GMT + date: Mon, 30 Aug 2021 20:36:14 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.5' + x-ms-ratelimit-remaining-calls-per-second: '166.566667' status: code: 200 message: OK @@ -313,7 +313,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoaf17178c/_tags/tagaf17178c response: @@ -325,7 +325,7 @@ interactions: connection: keep-alive content-length: '81' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:24 GMT + date: Mon, 30 Aug 2021 20:36:14 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_manifest_does_not_exist.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_manifest_does_not_exist.yaml index 36b2aa23a4f6..512cc2f1d0ff 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_manifest_does_not_exist.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_manifest_does_not_exist.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo41a21dd2/_tags/tag41a21dd2 response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:39 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.616667' + x-ms-ratelimit-remaining-calls-per-second: '166.55' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.6' + x-ms-ratelimit-remaining-calls-per-second: '166.533333' status: code: 200 message: OK @@ -89,14 +89,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo41a21dd2/_tags/tag41a21dd2 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo41a21dd2", - "tag": {"name": "tag41a21dd2", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:15:28.6556983Z", "lastUpdateTime": "2021-08-17T18:15:28.6556983Z", + "tag": {"name": "tag41a21dd2", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:36:19.2460624Z", "lastUpdateTime": "2021-08-30T20:36:19.2460624Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -119,9 +119,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo41a21dd2/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo41a21dd2/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -132,7 +132,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -141,7 +141,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repo41a21dd2/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repo41a21dd2/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -151,7 +151,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -160,11 +160,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.583333' + x-ms-ratelimit-remaining-calls-per-second: '166.516667' status: code: 200 message: OK @@ -179,7 +179,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -188,11 +188,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.566667' + x-ms-ratelimit-remaining-calls-per-second: '166.5' status: code: 200 message: OK @@ -203,15 +203,15 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo41a21dd2/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo41a21dd2/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo41a21dd2", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:15:28.1031625Z", "lastUpdateTime": - "2021-08-17T18:15:28.1031625Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:36:19.3383776Z", "lastUpdateTime": + "2021-08-30T20:36:19.3383776Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tag41a21dd2"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -223,14 +223,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1699' + content-length: '1822' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -238,16 +239,16 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repo41a21dd2/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repo41a21dd2/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/repo41a21dd2/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250aaaaaaaaaa + uri: https://fake_url.azurecr.io/v2/repo41a21dd2/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a98aaaaaaaaaa response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -258,7 +259,7 @@ interactions: connection: keep-alive content-length: '208' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -267,7 +268,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/v2/repo41a21dd2/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250aaaaaaaaaa + url: https://yalinlitests.azurecr.io/v2/repo41a21dd2/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a98aaaaaaaaaa - request: body: access_token: REDACTED @@ -277,7 +278,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -286,11 +287,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.55' + x-ms-ratelimit-remaining-calls-per-second: '166.483333' status: code: 200 message: OK @@ -305,7 +306,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -314,11 +315,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.533333' + x-ms-ratelimit-remaining-calls-per-second: '166.466667' status: code: 200 message: OK @@ -329,19 +330,19 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://fake_url.azurecr.io/v2/repo41a21dd2/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250aaaaaaaaaa + uri: https://fake_url.azurecr.io/v2/repo41a21dd2/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a98aaaaaaaaaa response: body: - string: '{"errors": [{"code": "MANIFEST_UNKNOWN", "message": "manifest sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250aaaaaaaaaa + string: '{"errors": [{"code": "MANIFEST_UNKNOWN", "message": "manifest sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a98aaaaaaaaaa is not found"}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive content-length: '147' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:15:48 GMT + date: Mon, 30 Aug 2021 20:36:40 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -350,5 +351,5 @@ interactions: status: code: 404 message: Not Found - url: https://yalinlitests.azurecr.io/v2/repo41a21dd2/manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250aaaaaaaaaa + url: https://yalinlitests.azurecr.io/v2/repo41a21dd2/manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a98aaaaaaaaaa version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_repository.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_repository.yaml index 599e67ad55e5..1c27bfe2a743 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_repository.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_repository.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/to_be_deleted response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '209' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:13 GMT + date: Mon, 30 Aug 2021 20:37:05 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:13 GMT + date: Mon, 30 Aug 2021 20:37:06 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.2' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:13 GMT + date: Mon, 30 Aug 2021 20:37:06 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.05' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -89,29 +89,30 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/to_be_deleted response: body: - string: '{"manifestsDeleted": ["sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", + string: '{"manifestsDeleted": ["sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "sha256:58d91e6625a0ea837222f24da4ca00be9da3db45cee5b172135eaf271610f9eb", "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", + "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", "sha256:88b2e00179bd6c4064612403c8d42a13de7ca809d61fee966ce9e129860a8a90", "sha256:94b700b6ae5759e539e06fa6d483f5f0174067945f180cc1362cfda71c5fd722", "sha256:a10c347f4cc2924af832d319635d6d027ca8820ff683b6bcc728d825a37a7f69", "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", - "sha256:cb55d8f7347376e1ba38ca740904b43c9a52f66c7d2ae1ef1a0de1bc9f40df98", - "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8"], + "sha256:cb55d8f7347376e1ba38ca740904b43c9a52f66c7d2ae1ef1a0de1bc9f40df98"], "tagsDeleted": ["latest"]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '862' + content-length: '936' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:15 GMT + date: Mon, 30 Aug 2021 20:37:07 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -127,7 +128,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -140,7 +141,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:15 GMT + date: Mon, 30 Aug 2021 20:37:07 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -159,7 +160,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -168,11 +169,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:15 GMT + date: Mon, 30 Aug 2021 20:37:07 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.033333' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -187,7 +188,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -196,11 +197,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:15 GMT + date: Mon, 30 Aug 2021 20:37:07 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.016667' + x-ms-ratelimit-remaining-calls-per-second: '166.6' status: code: 200 message: OK @@ -211,7 +212,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -226,7 +227,7 @@ interactions: connection: keep-alive content-length: '331' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:15 GMT + date: Mon, 30 Aug 2021 20:37:07 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_repository_does_not_exist.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_repository_does_not_exist.yaml index 3d3f8e89d722..00e30b7a7e8d 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_repository_does_not_exist.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_repository_does_not_exist.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/not_real_repo response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '209' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:15 GMT + date: Mon, 30 Aug 2021 20:37:07 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:16 GMT + date: Mon, 30 Aug 2021 20:37:08 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.65' + x-ms-ratelimit-remaining-calls-per-second: '166.416667' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:16 GMT + date: Mon, 30 Aug 2021 20:37:08 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.633333' + x-ms-ratelimit-remaining-calls-per-second: '166.4' status: code: 200 message: OK @@ -89,7 +89,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/not_real_repo response: @@ -101,7 +101,7 @@ interactions: connection: keep-alive content-length: '121' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:16 GMT + date: Mon, 30 Aug 2021 20:37:08 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_tag.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_tag.yaml index 5927913f01d5..9c069ed35b75 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_tag.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_tag.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/repo3dc21571/_tags/tag3dc215710 response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '208' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:40 GMT + date: Mon, 30 Aug 2021 20:37:33 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:40 GMT + date: Mon, 30 Aug 2021 20:37:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.65' + x-ms-ratelimit-remaining-calls-per-second: '165.983333' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:40 GMT + date: Mon, 30 Aug 2021 20:37:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.633333' + x-ms-ratelimit-remaining-calls-per-second: '165.966667' status: code: 200 message: OK @@ -89,7 +89,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/repo3dc21571/_tags/tag3dc215710 response: @@ -99,12 +99,12 @@ interactions: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive content-length: '0' - date: Tue, 17 Aug 2021 18:16:40 GMT + date: Mon, 30 Aug 2021 20:37:34 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-int-docker-content-digest: sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + x-ms-int-docker-content-digest: sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 x-ms-ratelimit-remaining-calls-per-second: '8.000000' status: code: 202 @@ -116,7 +116,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo3dc21571/_tags response: @@ -129,7 +129,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:40 GMT + date: Mon, 30 Aug 2021 20:37:34 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -148,7 +148,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -157,11 +157,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:41 GMT + date: Mon, 30 Aug 2021 20:37:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.616667' + x-ms-ratelimit-remaining-calls-per-second: '165.95' status: code: 200 message: OK @@ -176,7 +176,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -185,11 +185,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:41 GMT + date: Mon, 30 Aug 2021 20:37:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.6' + x-ms-ratelimit-remaining-calls-per-second: '165.933333' status: code: 200 message: OK @@ -200,22 +200,22 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo3dc21571/_tags response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo3dc21571", - "tags": [{"name": "tag3dc215711", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:16:21.6019655Z", "lastUpdateTime": "2021-08-17T18:16:21.6019655Z", + "tags": [{"name": "tag3dc215711", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:37:14.3986728Z", "lastUpdateTime": "2021-08-30T20:37:14.3986728Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag3dc215712", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:16:21.4014921Z", "lastUpdateTime": "2021-08-17T18:16:21.4014921Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:37:14.0883232Z", "lastUpdateTime": "2021-08-30T20:37:14.0883232Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag3dc215713", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:16:22.4410132Z", "lastUpdateTime": "2021-08-17T18:16:22.4410132Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:37:14.5673192Z", "lastUpdateTime": "2021-08-30T20:37:14.5673192Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: @@ -223,7 +223,7 @@ interactions: connection: keep-alive content-length: '1032' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:41 GMT + date: Mon, 30 Aug 2021 20:37:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_tag_does_not_exist.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_tag_does_not_exist.yaml index 75df802fbfb2..2cf413bb3743 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_tag_does_not_exist.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_delete_tag_does_not_exist.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/does_not_exist/_tags/does_not_exist response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '210' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:41 GMT + date: Mon, 30 Aug 2021 20:37:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:41 GMT + date: Mon, 30 Aug 2021 20:37:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.583333' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:41 GMT + date: Mon, 30 Aug 2021 20:37:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166' + x-ms-ratelimit-remaining-calls-per-second: '166.433333' status: code: 200 message: OK @@ -89,7 +89,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://fake_url.azurecr.io/acr/v1/does_not_exist/_tags/does_not_exist response: @@ -101,12 +101,12 @@ interactions: connection: keep-alive content-length: '81' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:41 GMT + date: Mon, 30 Aug 2021 20:37:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-calls-per-second: '7.000000' + x-ms-ratelimit-remaining-calls-per-second: '8.000000' status: code: 404 message: Not Found diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_expiration_time_parsing.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_expiration_time_parsing.yaml index f9ac2df00bf0..3bc5aeae60d0 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_expiration_time_parsing.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_expiration_time_parsing.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:41 GMT + date: Mon, 30 Aug 2021 20:37:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:42 GMT + date: Mon, 30 Aug 2021 20:37:37 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.316667' + x-ms-ratelimit-remaining-calls-per-second: '166.583333' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:42 GMT + date: Mon, 30 Aug 2021 20:37:37 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.066667' + x-ms-ratelimit-remaining-calls-per-second: '165.833333' status: code: 200 message: OK @@ -89,7 +89,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '346' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:42 GMT + date: Mon, 30 Aug 2021 20:37:37 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -119,7 +119,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -132,7 +132,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:42 GMT + date: Mon, 30 Aug 2021 20:37:37 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -152,7 +152,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -161,11 +161,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:42 GMT + date: Mon, 30 Aug 2021 20:37:37 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.05' + x-ms-ratelimit-remaining-calls-per-second: '165.816667' status: code: 200 message: OK @@ -176,7 +176,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -191,7 +191,7 @@ interactions: connection: keep-alive content-length: '346' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:16:42 GMT + date: Mon, 30 Aug 2021 20:37:37 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_manifest_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_manifest_properties.yaml index b9f8a8a3c3c8..7eaed5f66ce9 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_manifest_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_manifest_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo7bda1b05/_tags/tag7bda1b05 response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:06 GMT + date: Mon, 30 Aug 2021 20:38:01 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:02 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.05' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:02 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.033333' + x-ms-ratelimit-remaining-calls-per-second: '166.1' status: code: 200 message: OK @@ -89,14 +89,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo7bda1b05/_tags/tag7bda1b05 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo7bda1b05", - "tag": {"name": "tag7bda1b05", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:16:46.0244793Z", "lastUpdateTime": "2021-08-17T18:16:46.0244793Z", + "tag": {"name": "tag7bda1b05", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:37:42.0439199Z", "lastUpdateTime": "2021-08-30T20:37:42.0439199Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:02 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -119,9 +119,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo7bda1b05/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo7bda1b05/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -132,7 +132,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:02 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -141,7 +141,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repo7bda1b05/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repo7bda1b05/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -151,7 +151,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -160,11 +160,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:02 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.016667' + x-ms-ratelimit-remaining-calls-per-second: '166.083333' status: code: 200 message: OK @@ -179,7 +179,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -188,11 +188,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:02 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166' + x-ms-ratelimit-remaining-calls-per-second: '166.066667' status: code: 200 message: OK @@ -203,15 +203,15 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repo7bda1b05/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repo7bda1b05/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo7bda1b05", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:16:45.9437339Z", "lastUpdateTime": - "2021-08-17T18:16:45.9437339Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:37:42.1571466Z", "lastUpdateTime": + "2021-08-30T20:37:42.1571466Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tag7bda1b05"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -223,14 +223,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1699' + content-length: '1822' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:02 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -238,5 +239,5 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repo7bda1b05/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repo7bda1b05/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_manifest_properties_does_not_exist.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_manifest_properties_does_not_exist.yaml index 2505d523309a..63e75c1c409b 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_manifest_properties_does_not_exist.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_manifest_properties_does_not_exist.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/DOESNOTEXIST/_tags/DOESNOTEXIST response: @@ -17,7 +17,7 @@ interactions: connection: keep-alive content-length: '19' content-type: text/plain; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:02 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_repository_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_repository_properties.yaml index d83026544a14..3c8ef92e438a 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_repository_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_repository_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '217' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:04 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:05 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.616667' + x-ms-ratelimit-remaining-calls-per-second: '166.316667' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:05 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.433333' + x-ms-ratelimit-remaining-calls-per-second: '165.733333' status: code: 200 message: OK @@ -89,13 +89,13 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Falpine response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/alpine", - "createdTime": "2021-08-17T18:06:11.9091692Z", "lastUpdateTime": "2021-08-17T18:06:10.2845013Z", + "createdTime": "2021-08-30T10:55:28.7695998Z", "lastUpdateTime": "2021-08-30T10:55:27.2388907Z", "manifestCount": 8, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '320' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:07 GMT + date: Mon, 30 Aug 2021 20:38:05 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_tag_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_tag_properties.yaml index 08093202a0cc..0955c5dc474b 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_tag_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_tag_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repof94c18ea/_tags/tagf94c18ea response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:32 GMT + date: Mon, 30 Aug 2021 20:38:29 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:32 GMT + date: Mon, 30 Aug 2021 20:38:30 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.983333' + x-ms-ratelimit-remaining-calls-per-second: '166.583333' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:32 GMT + date: Mon, 30 Aug 2021 20:38:30 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.966667' + x-ms-ratelimit-remaining-calls-per-second: '166.133333' status: code: 200 message: OK @@ -89,14 +89,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repof94c18ea/_tags/tagf94c18ea response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repof94c18ea", - "tag": {"name": "tagf94c18ea", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:17:11.7338655Z", "lastUpdateTime": "2021-08-17T18:17:11.7338655Z", + "tag": {"name": "tagf94c18ea", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:38:09.8133544Z", "lastUpdateTime": "2021-08-30T20:38:09.8133544Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:32 GMT + date: Mon, 30 Aug 2021 20:38:30 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_tag_properties_does_not_exist.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_tag_properties_does_not_exist.yaml index 633dda9530a9..04e1960f84d7 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_tag_properties_does_not_exist.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_get_tag_properties_does_not_exist.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/Nonexistent/_tags/Nonexistent response: @@ -17,7 +17,7 @@ interactions: connection: keep-alive content-length: '19' content-type: text/plain; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:32 GMT + date: Mon, 30 Aug 2021 20:38:30 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts.yaml index fb0fc9595e8f..2ff32a1448f6 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:33 GMT + date: Mon, 30 Aug 2021 20:38:30 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:33 GMT + date: Mon, 30 Aug 2021 20:38:31 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.116667' + x-ms-ratelimit-remaining-calls-per-second: '166.483333' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:33 GMT + date: Mon, 30 Aug 2021 20:38:31 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.05' + x-ms-ratelimit-remaining-calls-per-second: '166.466667' status: code: 200 message: OK @@ -89,64 +89,64 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + "manifests": [{"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", - "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": + true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' @@ -154,7 +154,7 @@ interactions: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:34 GMT + date: Mon, 30 Aug 2021 20:38:32 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_ascending.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_ascending.yaml index aa47ebd810d9..99a66a9afb48 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_ascending.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_ascending.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timeasc response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:34 GMT + date: Mon, 30 Aug 2021 20:38:32 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:34 GMT + date: Mon, 30 Aug 2021 20:38:32 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.216667' + x-ms-ratelimit-remaining-calls-per-second: '166.15' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:34 GMT + date: Mon, 30 Aug 2021 20:38:32 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.083333' + x-ms-ratelimit-remaining-calls-per-second: '166.133333' status: code: 200 message: OK @@ -89,72 +89,72 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timeasc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifests": [{"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:35 GMT + date: Mon, 30 Aug 2021 20:38:32 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -170,7 +170,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timeasc response: @@ -183,7 +183,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:35 GMT + date: Mon, 30 Aug 2021 20:38:33 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -202,7 +202,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -211,11 +211,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:35 GMT + date: Mon, 30 Aug 2021 20:38:33 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.066667' + x-ms-ratelimit-remaining-calls-per-second: '166.116667' status: code: 200 message: OK @@ -230,7 +230,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -239,11 +239,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:35 GMT + date: Mon, 30 Aug 2021 20:38:33 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.05' + x-ms-ratelimit-remaining-calls-per-second: '166.1' status: code: 200 message: OK @@ -254,72 +254,72 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timeasc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifests": [{"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + true, "readEnabled": true, "listEnabled": true}}, {"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:35 GMT + date: Mon, 30 Aug 2021 20:38:33 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_by_page.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_by_page.yaml index aa9f0e860f2f..1064ded62a42 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_by_page.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_by_page.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?n=2 response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:35 GMT + date: Mon, 30 Aug 2021 20:38:33 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:35 GMT + date: Mon, 30 Aug 2021 20:38:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.683333' + x-ms-ratelimit-remaining-calls-per-second: '166.416667' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:35 GMT + date: Mon, 30 Aug 2021 20:38:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.483333' + x-ms-ratelimit-remaining-calls-per-second: '166.333333' status: code: 200 message: OK @@ -89,31 +89,31 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?n=2 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + "manifests": [{"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '937' + content-length: '939' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:34 GMT docker-distribution-api-version: registry/2.0 - link: ; + link: ; rel="next" server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -128,9 +128,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de&n=2&orderby= response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -141,7 +141,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:34 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -150,7 +150,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322&n=2&orderby= + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de&n=2&orderby= - request: body: access_token: REDACTED @@ -160,7 +160,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -169,11 +169,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.466667' + x-ms-ratelimit-remaining-calls-per-second: '166.316667' status: code: 200 message: OK @@ -188,7 +188,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -197,11 +197,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.45' + x-ms-ratelimit-remaining-calls-per-second: '166.3' status: code: 200 message: OK @@ -212,30 +212,31 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de&n=2&orderby= response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + "manifests": [{"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", - "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}]}' + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '903' + content-length: '935' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:35 GMT docker-distribution-api-version: registry/2.0 - link: ; + link: ; rel="next" server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -243,16 +244,16 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322&n=2&orderby= + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de&n=2&orderby= - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90&n=2&orderby= response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -263,7 +264,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -272,7 +273,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60&n=2&orderby= + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90&n=2&orderby= - request: body: access_token: REDACTED @@ -282,7 +283,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -291,11 +292,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.433333' + x-ms-ratelimit-remaining-calls-per-second: '166.283333' status: code: 200 message: OK @@ -310,7 +311,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -319,11 +320,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.416667' + x-ms-ratelimit-remaining-calls-per-second: '166.266667' status: code: 200 message: OK @@ -334,31 +335,30 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90&n=2&orderby= response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + "manifests": [{"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}]}' + true, "quarantineState": "Passed"}}, {"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": + true, "readEnabled": true, "listEnabled": true}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '937' + content-length: '902' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:35 GMT docker-distribution-api-version: registry/2.0 - link: ; + link: ; rel="next" server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -366,16 +366,16 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60&n=2&orderby= + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90&n=2&orderby= - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778&n=2&orderby= response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -386,7 +386,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -395,7 +395,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812&n=2&orderby= + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778&n=2&orderby= - request: body: access_token: REDACTED @@ -405,7 +405,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -414,11 +414,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.4' + x-ms-ratelimit-remaining-calls-per-second: '166.25' status: code: 200 message: OK @@ -433,7 +433,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -442,11 +442,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.383333' + x-ms-ratelimit-remaining-calls-per-second: '166.233333' status: code: 200 message: OK @@ -457,31 +457,31 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778&n=2&orderby= response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": + "manifests": [{"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '937' + content-length: '940' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:35 GMT docker-distribution-api-version: registry/2.0 - link: ; + link: ; rel="next" server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -489,16 +489,16 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812&n=2&orderby= + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778&n=2&orderby= - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a&n=2&orderby= response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -509,7 +509,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -518,7 +518,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499&n=2&orderby= + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a&n=2&orderby= - request: body: access_token: REDACTED @@ -528,7 +528,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -537,11 +537,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:36 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.366667' + x-ms-ratelimit-remaining-calls-per-second: '166.216667' status: code: 200 message: OK @@ -556,7 +556,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -565,11 +565,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:36 GMT + date: Mon, 30 Aug 2021 20:38:36 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.35' + x-ms-ratelimit-remaining-calls-per-second: '166.2' status: code: 200 message: OK @@ -580,31 +580,31 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a&n=2&orderby= response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + "manifests": [{"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '939' + content-length: '937' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:37 GMT + date: Mon, 30 Aug 2021 20:38:36 GMT docker-distribution-api-version: registry/2.0 - link: ; + link: ; rel="next" server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -612,16 +612,16 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499&n=2&orderby= + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a&n=2&orderby= - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7&n=2&orderby= response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -632,7 +632,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:37 GMT + date: Mon, 30 Aug 2021 20:38:36 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -641,7 +641,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091&n=2&orderby= + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7&n=2&orderby= - request: body: access_token: REDACTED @@ -651,7 +651,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -660,11 +660,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:37 GMT + date: Mon, 30 Aug 2021 20:38:36 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.333333' + x-ms-ratelimit-remaining-calls-per-second: '166.183333' status: code: 200 message: OK @@ -679,7 +679,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -688,11 +688,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:37 GMT + date: Mon, 30 Aug 2021 20:38:36 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.316667' + x-ms-ratelimit-remaining-calls-per-second: '166.166667' status: code: 200 message: OK @@ -703,15 +703,15 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091&n=2&orderby= + uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7&n=2&orderby= response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + "manifests": [{"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "quarantineState": "Passed"}}]}' @@ -720,7 +720,7 @@ interactions: connection: keep-alive content-length: '511' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:37 GMT + date: Mon, 30 Aug 2021 20:38:36 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -728,5 +728,5 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091&n=2&orderby= + url: https://yalinlitests.azurecr.io/acr/v1/library%2Fbusybox/_manifests?last=sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7&n=2&orderby= version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_descending.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_descending.yaml index 747b536e3e64..86fe9e3ff48e 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_descending.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_registry_artifacts_descending.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timedesc response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:37 GMT + date: Mon, 30 Aug 2021 20:38:36 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:37 GMT + date: Mon, 30 Aug 2021 20:38:37 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.65' + x-ms-ratelimit-remaining-calls-per-second: '166.45' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:38 GMT + date: Mon, 30 Aug 2021 20:38:37 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.633333' + x-ms-ratelimit-remaining-calls-per-second: '166.433333' status: code: 200 message: OK @@ -89,72 +89,72 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timedesc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + "manifests": [{"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + true, "quarantineState": "Passed"}}, {"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:38 GMT + date: Mon, 30 Aug 2021 20:38:37 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -170,7 +170,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timedesc response: @@ -183,7 +183,7 @@ interactions: connection: keep-alive content-length: '218' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:38 GMT + date: Mon, 30 Aug 2021 20:38:37 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -202,7 +202,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -211,11 +211,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:39 GMT + date: Mon, 30 Aug 2021 20:38:37 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.616667' + x-ms-ratelimit-remaining-calls-per-second: '166.416667' status: code: 200 message: OK @@ -230,7 +230,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -239,11 +239,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:39 GMT + date: Mon, 30 Aug 2021 20:38:37 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.6' + x-ms-ratelimit-remaining-calls-per-second: '166.4' status: code: 200 message: OK @@ -254,72 +254,72 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/library%2Fbusybox/_manifests?orderby=timedesc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "library/busybox", - "manifests": [{"digest": "sha256:4600ef29aff996daeadbc9b9f5c6e3ef83027704f9d75e07fc927911dd000a87", - "imageSize": 528, "createdTime": "2021-08-17T18:06:36.1029644Z", "lastUpdateTime": - "2021-08-17T18:06:36.1029644Z", "architecture": "s390x", "os": "linux", "mediaType": - "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + "manifests": [{"digest": "sha256:29651c5534d876f22e89a6af67025e3ba63fa634b0d3349a81969ddb7b3ce3de", + "imageSize": 528, "createdTime": "2021-08-30T10:56:00.5683385Z", "lastUpdateTime": + "2021-08-30T10:56:00.5683385Z", "architecture": "ppc64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:5a43a82d5e4a8f1a827c0bb63648460af4e6a9f3c95a039c446614045a695b84", - "imageSize": 527, "createdTime": "2021-08-17T18:06:36.0392471Z", "lastUpdateTime": - "2021-08-17T18:06:36.0392471Z", "architecture": "riscv64", "os": "linux", + true, "quarantineState": "Passed"}}, {"digest": "sha256:96a17b68467be2bbf8df538d24cf8615c9790ed5d1a5f895e78bb2ae95405105", + "imageSize": 527, "createdTime": "2021-08-30T10:56:00.4844092Z", "lastUpdateTime": + "2021-08-30T10:56:00.4844092Z", "architecture": "riscv64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:ccff0c7e8498c0bd8d4705e663084c25810fd064a184671a050e1a43b86fb091", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.9081554Z", "lastUpdateTime": - "2021-08-17T18:06:35.9081554Z", "architecture": "386", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:2bb4c4428052c54b1f45f9a56ab230eed60183b03044f21b623a2988b28fd819", + "imageSize": 527, "createdTime": "2021-08-30T10:55:53.4401333Z", "lastUpdateTime": + "2021-08-30T10:55:53.4401333Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0dc4e9a14237cae2d8e96e9e310116091c5ed4934448d7cfd22b122778964f11", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.8204333Z", "lastUpdateTime": - "2021-08-17T18:06:35.8204333Z", "architecture": "mips64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": - {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:002265f553555c92ddc51aa292e458a44615af64e22b8b35192ff4ca1801e8cd", - "imageSize": 528, "createdTime": "2021-08-17T18:06:35.7460007Z", "lastUpdateTime": - "2021-08-17T18:06:35.7460007Z", "architecture": "ppc64le", "os": "linux", - "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + true, "quarantineState": "Passed"}}, {"digest": "sha256:c93de71940b756382ef4802a87b99fc089ed53dbed59e8498d8f9dd9913b2657", + "imageSize": 528, "createdTime": "2021-08-30T10:55:52.9013378Z", "lastUpdateTime": + "2021-08-30T10:55:52.9013378Z", "architecture": "s390x", "os": "linux", "mediaType": + "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:121373e88baca4c1ef533014de2759e002961de035607dd35d00886b052e37cf", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.5112709Z", "lastUpdateTime": - "2021-08-17T18:06:35.5112709Z", "architecture": "arm64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:620bfb69727e7bb7186cc98211a048d5d9035e6dab69a412765cf6434714ea90", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.5351619Z", "lastUpdateTime": + "2021-08-30T10:55:52.5351619Z", "architecture": "386", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:49fe19ce9b78d2f7b8dbcbca928c73652dba2fe797fb078453f5601a4f49e499", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.4218355Z", "lastUpdateTime": - "2021-08-17T18:06:35.4218355Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:fcb3585c8c69008887c45c798c7eb02206258fc5aa2e7e5eb67ed49e7c757681", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4985177Z", "lastUpdateTime": + "2021-08-30T10:55:52.4985177Z", "architecture": "arm64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:44a1490f5da02cd6d8b2efdb9e0851b2c360349bdc4640b600c90311c0c9d812", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.2838903Z", "lastUpdateTime": - "2021-08-17T18:06:35.2838903Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:bb9022cb56ff38b33098e1c3a199460c44e21eba2d3058d53bc696b84862f70a", + "imageSize": 527, "createdTime": "2021-08-30T10:55:52.4342508Z", "lastUpdateTime": + "2021-08-30T10:55:52.4342508Z", "architecture": "mips64le", "os": "linux", + "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": + {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": + true, "quarantineState": "Passed"}}, {"digest": "sha256:f1812cd29e13f4df55b7622a32d3c7270ca92fd87fefbb184e958b2bde13c3a7", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.9078274Z", "lastUpdateTime": + "2021-08-30T10:55:51.9078274Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:dca71257cd2e72840a21f0323234bb2e33fea6d949fa0f21c5102146f583486b", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.1560816Z", "lastUpdateTime": - "2021-08-17T18:06:35.1560816Z", "architecture": "amd64", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:1128c48c4a1285628b24e32c50f70d8b03de0de9ffb27906746c3be842811894", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.5136821Z", "lastUpdateTime": + "2021-08-30T10:55:51.5136821Z", "architecture": "arm", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:09242dfdcdd10df740a93ebc9662507b4f23777c6ddc81f8ceacfc9a48a31322", - "imageSize": 527, "createdTime": "2021-08-17T18:06:35.076758Z", "lastUpdateTime": - "2021-08-17T18:06:35.076758Z", "architecture": "arm", "os": "linux", "mediaType": + true, "quarantineState": "Passed"}}, {"digest": "sha256:b862520da7361ea093806d292ce355188ae83f21e8e3b2a3ce4dbdba0a230f83", + "imageSize": 527, "createdTime": "2021-08-30T10:55:51.426845Z", "lastUpdateTime": + "2021-08-30T10:55:51.426845Z", "architecture": "amd64", "os": "linux", "mediaType": "application/vnd.docker.distribution.manifest.v2+json", "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": - true, "quarantineState": "Passed"}}, {"digest": "sha256:0f354ec1728d9ff32edcd7d1b8bbdfc798277ad36120dc3dc683be44524c8b60", - "imageSize": 5272, "createdTime": "2021-08-17T18:06:34.0662553Z", "lastUpdateTime": - "2021-08-17T18:06:34.0662553Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + true, "quarantineState": "Passed"}}, {"digest": "sha256:b37dd066f59a4961024cf4bed74cae5e68ac26b48807292bd12198afa3ecb778", + "imageSize": 5272, "createdTime": "2021-08-30T10:55:50.5029685Z", "lastUpdateTime": + "2021-08-30T10:55:50.5029685Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["latest"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:39 GMT + date: Mon, 30 Aug 2021 20:38:38 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_repository_names.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_repository_names.yaml index 2355f16b085f..7f8b5de7f4e8 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_repository_names.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_repository_names.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:39 GMT + date: Mon, 30 Aug 2021 20:38:38 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:38 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.95' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:38 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.933333' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -89,7 +89,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog response: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '376' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:38 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_repository_names_by_page.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_repository_names_by_page.yaml index 4ea8bec4cf70..e222b96685c9 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_repository_names_by_page.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_repository_names_by_page.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?n=2 response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:38 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.583333' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.566667' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -89,7 +89,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?n=2 response: @@ -100,7 +100,7 @@ interactions: connection: keep-alive content-length: '54' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -116,7 +116,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=library/busybox&n=2&orderby= response: @@ -129,7 +129,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -148,7 +148,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -157,11 +157,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.55' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -176,7 +176,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -185,11 +185,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.533333' + x-ms-ratelimit-remaining-calls-per-second: '166.6' status: code: 200 message: OK @@ -200,7 +200,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=library/busybox&n=2&orderby= response: @@ -211,7 +211,7 @@ interactions: connection: keep-alive content-length: '56' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -227,7 +227,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo26ab150f&n=2&orderby= response: @@ -240,7 +240,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:40 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -259,7 +259,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -268,11 +268,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.516667' + x-ms-ratelimit-remaining-calls-per-second: '166.583333' status: code: 200 message: OK @@ -287,7 +287,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -296,11 +296,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.5' + x-ms-ratelimit-remaining-calls-per-second: '166.566667' status: code: 200 message: OK @@ -311,7 +311,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo26ab150f&n=2&orderby= response: @@ -322,7 +322,7 @@ interactions: connection: keep-alive content-length: '49' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -338,7 +338,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo2b381dc2&n=2&orderby= response: @@ -351,7 +351,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:39 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -370,7 +370,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -379,11 +379,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.483333' + x-ms-ratelimit-remaining-calls-per-second: '166.55' status: code: 200 message: OK @@ -398,7 +398,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -407,11 +407,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.466667' + x-ms-ratelimit-remaining-calls-per-second: '166.533333' status: code: 200 message: OK @@ -422,7 +422,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo2b381dc2&n=2&orderby= response: @@ -433,7 +433,7 @@ interactions: connection: keep-alive content-length: '49' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -449,7 +449,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo3dc21571&n=2&orderby= response: @@ -462,7 +462,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -481,7 +481,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -490,11 +490,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.45' + x-ms-ratelimit-remaining-calls-per-second: '166.516667' status: code: 200 message: OK @@ -509,7 +509,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -518,11 +518,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.433333' + x-ms-ratelimit-remaining-calls-per-second: '166.5' status: code: 200 message: OK @@ -533,7 +533,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo3dc21571&n=2&orderby= response: @@ -544,7 +544,7 @@ interactions: connection: keep-alive content-length: '49' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -560,7 +560,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo45431dd7&n=2&orderby= response: @@ -573,7 +573,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -592,7 +592,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -601,11 +601,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.416667' + x-ms-ratelimit-remaining-calls-per-second: '166.483333' status: code: 200 message: OK @@ -620,7 +620,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -629,11 +629,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:41 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.4' + x-ms-ratelimit-remaining-calls-per-second: '166.466667' status: code: 200 message: OK @@ -644,7 +644,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo45431dd7&n=2&orderby= response: @@ -655,7 +655,7 @@ interactions: connection: keep-alive content-length: '49' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -671,7 +671,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo63d41ad4&n=2&orderby= response: @@ -684,7 +684,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -703,7 +703,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -712,11 +712,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.383333' + x-ms-ratelimit-remaining-calls-per-second: '166.45' status: code: 200 message: OK @@ -731,7 +731,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -740,11 +740,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.366667' + x-ms-ratelimit-remaining-calls-per-second: '166.433333' status: code: 200 message: OK @@ -755,7 +755,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo63d41ad4&n=2&orderby= response: @@ -766,7 +766,7 @@ interactions: connection: keep-alive content-length: '49' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -782,7 +782,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo7bda1b05&n=2&orderby= response: @@ -795,7 +795,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -814,7 +814,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -823,11 +823,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:40 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.35' + x-ms-ratelimit-remaining-calls-per-second: '166.416667' status: code: 200 message: OK @@ -842,7 +842,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -851,11 +851,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.333333' + x-ms-ratelimit-remaining-calls-per-second: '166.4' status: code: 200 message: OK @@ -866,7 +866,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo7bda1b05&n=2&orderby= response: @@ -877,7 +877,7 @@ interactions: connection: keep-alive content-length: '49' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -893,7 +893,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo816516e9&n=2&orderby= response: @@ -906,7 +906,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -925,7 +925,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -934,11 +934,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.316667' + x-ms-ratelimit-remaining-calls-per-second: '166.383333' status: code: 200 message: OK @@ -953,7 +953,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -962,11 +962,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.3' + x-ms-ratelimit-remaining-calls-per-second: '166.366667' status: code: 200 message: OK @@ -977,7 +977,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repo816516e9&n=2&orderby= response: @@ -988,7 +988,7 @@ interactions: connection: keep-alive content-length: '49' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -1004,7 +1004,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repoaf17178c&n=2&orderby= response: @@ -1017,7 +1017,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:42 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1036,7 +1036,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1045,11 +1045,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.283333' + x-ms-ratelimit-remaining-calls-per-second: '166.35' status: code: 200 message: OK @@ -1064,7 +1064,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1073,11 +1073,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.266667' + x-ms-ratelimit-remaining-calls-per-second: '166.333333' status: code: 200 message: OK @@ -1088,7 +1088,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repoaf17178c&n=2&orderby= response: @@ -1099,7 +1099,7 @@ interactions: connection: keep-alive content-length: '49' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -1115,7 +1115,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repoc1b812f4&n=2&orderby= response: @@ -1128,7 +1128,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1147,7 +1147,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1156,11 +1156,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.25' + x-ms-ratelimit-remaining-calls-per-second: '166.316667' status: code: 200 message: OK @@ -1175,7 +1175,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1184,11 +1184,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.233333' + x-ms-ratelimit-remaining-calls-per-second: '166.3' status: code: 200 message: OK @@ -1199,7 +1199,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repoc1b812f4&n=2&orderby= response: @@ -1210,7 +1210,7 @@ interactions: connection: keep-alive content-length: '49' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT docker-distribution-api-version: registry/2.0 link: ; rel="next" server: openresty @@ -1226,7 +1226,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repoec051cb9&n=2&orderby= response: @@ -1239,7 +1239,7 @@ interactions: connection: keep-alive content-length: '196' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1258,7 +1258,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1267,11 +1267,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.216667' + x-ms-ratelimit-remaining-calls-per-second: '166.283333' status: code: 200 message: OK @@ -1286,7 +1286,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1295,11 +1295,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.2' + x-ms-ratelimit-remaining-calls-per-second: '166.266667' status: code: 200 message: OK @@ -1310,7 +1310,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/_catalog?last=repoec051cb9&n=2&orderby= response: @@ -1321,7 +1321,7 @@ interactions: connection: keep-alive content-length: '34' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:17:43 GMT + date: Mon, 30 Aug 2021 20:38:41 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties.yaml index b0169e7e2b98..a5adfa1b9a68 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo13d41966/_tags response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:08 GMT + date: Mon, 30 Aug 2021 20:39:05 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:08 GMT + date: Mon, 30 Aug 2021 20:39:06 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.366667' + x-ms-ratelimit-remaining-calls-per-second: '166.35' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:08 GMT + date: Mon, 30 Aug 2021 20:39:06 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.883333' + x-ms-ratelimit-remaining-calls-per-second: '166.333333' status: code: 200 message: OK @@ -89,34 +89,34 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo13d41966/_tags response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo13d41966", - "tags": [{"name": "tag13d419660", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:17:48.0880894Z", "lastUpdateTime": "2021-08-17T18:17:48.0880894Z", + "tags": [{"name": "tag13d419660", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:38:45.892362Z", "lastUpdateTime": "2021-08-30T20:38:45.892362Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag13d419661", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:17:48.3246693Z", "lastUpdateTime": "2021-08-17T18:17:48.3246693Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:38:46.7762137Z", "lastUpdateTime": "2021-08-30T20:38:46.7762137Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag13d419662", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:17:49.5979132Z", "lastUpdateTime": "2021-08-17T18:17:49.5979132Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:38:46.679649Z", "lastUpdateTime": "2021-08-30T20:38:46.679649Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag13d419663", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:17:48.9649633Z", "lastUpdateTime": "2021-08-17T18:17:48.9649633Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:38:46.9420117Z", "lastUpdateTime": "2021-08-30T20:38:46.9420117Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1351' + content-length: '1347' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:08 GMT + date: Mon, 30 Aug 2021 20:39:06 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties_order_ascending.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties_order_ascending.yaml index 37f4c786f34c..c41d6085e087 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties_order_ascending.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties_order_ascending.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoe1a41fec/_tags?orderby=timeasc response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:33 GMT + date: Mon, 30 Aug 2021 20:39:30 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:33 GMT + date: Mon, 30 Aug 2021 20:39:30 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.866667' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:33 GMT + date: Mon, 30 Aug 2021 20:39:31 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.85' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -89,34 +89,34 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoe1a41fec/_tags?orderby=timeasc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe1a41fec", - "tags": [{"name": "tage1a41fec3", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:13.1460623Z", "lastUpdateTime": "2021-08-17T18:18:13.1460623Z", - "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tage1a41fec2", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:14.69913Z", "lastUpdateTime": "2021-08-17T18:18:14.69913Z", + "tags": [{"name": "tage1a41fec0", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:10.3118974Z", "lastUpdateTime": "2021-08-30T20:39:10.3118974Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tage1a41fec1", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:14.7617981Z", "lastUpdateTime": "2021-08-17T18:18:14.7617981Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:12.0402304Z", "lastUpdateTime": "2021-08-30T20:39:12.0402304Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tage1a41fec0", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:15.2783334Z", "lastUpdateTime": "2021-08-17T18:18:15.2783334Z", + true, "readEnabled": true, "listEnabled": true}}, {"name": "tage1a41fec3", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:12.1321879Z", "lastUpdateTime": "2021-08-30T20:39:12.1321879Z", + "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": + true, "readEnabled": true, "listEnabled": true}}, {"name": "tage1a41fec2", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:12.3306885Z", "lastUpdateTime": "2021-08-30T20:39:12.3306885Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1347' + content-length: '1351' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:33 GMT + date: Mon, 30 Aug 2021 20:39:31 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -131,7 +131,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoe1a41fec/_tags?orderby=timeasc response: @@ -144,7 +144,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:34 GMT + date: Mon, 30 Aug 2021 20:39:31 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -163,7 +163,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -172,11 +172,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:34 GMT + date: Mon, 30 Aug 2021 20:39:31 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.833333' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -200,11 +200,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:34 GMT + date: Mon, 30 Aug 2021 20:39:31 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.816667' + x-ms-ratelimit-remaining-calls-per-second: '166.6' status: code: 200 message: OK @@ -215,34 +215,34 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoe1a41fec/_tags?orderby=timeasc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe1a41fec", - "tags": [{"name": "tage1a41fec3", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:13.1460623Z", "lastUpdateTime": "2021-08-17T18:18:13.1460623Z", - "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tage1a41fec2", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:14.69913Z", "lastUpdateTime": "2021-08-17T18:18:14.69913Z", + "tags": [{"name": "tage1a41fec0", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:10.3118974Z", "lastUpdateTime": "2021-08-30T20:39:10.3118974Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tage1a41fec1", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:14.7617981Z", "lastUpdateTime": "2021-08-17T18:18:14.7617981Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:12.0402304Z", "lastUpdateTime": "2021-08-30T20:39:12.0402304Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tage1a41fec0", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:15.2783334Z", "lastUpdateTime": "2021-08-17T18:18:15.2783334Z", + true, "readEnabled": true, "listEnabled": true}}, {"name": "tage1a41fec3", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:12.1321879Z", "lastUpdateTime": "2021-08-30T20:39:12.1321879Z", + "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": + true, "readEnabled": true, "listEnabled": true}}, {"name": "tage1a41fec2", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:12.3306885Z", "lastUpdateTime": "2021-08-30T20:39:12.3306885Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1347' + content-length: '1351' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:34 GMT + date: Mon, 30 Aug 2021 20:39:31 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties_order_descending.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties_order_descending.yaml index c58c3f520338..7e17fb518d82 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties_order_descending.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_list_tag_properties_order_descending.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo1ff2054/_tags?orderby=timedesc response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '214' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:58 GMT + date: Mon, 30 Aug 2021 20:39:55 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:58 GMT + date: Mon, 30 Aug 2021 20:39:56 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.15' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:58 GMT + date: Mon, 30 Aug 2021 20:39:56 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -89,34 +89,34 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo1ff2054/_tags?orderby=timedesc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo1ff2054", - "tags": [{"name": "tag1ff20543", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:39.2355315Z", "lastUpdateTime": "2021-08-17T18:18:39.2355315Z", + "tags": [{"name": "tag1ff20542", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:36.4533962Z", "lastUpdateTime": "2021-08-30T20:39:36.4533962Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tag1ff20541", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:38.6487239Z", "lastUpdateTime": "2021-08-17T18:18:38.6487239Z", + true, "readEnabled": true, "listEnabled": true}}, {"name": "tag1ff20543", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:36.286358Z", "lastUpdateTime": "2021-08-30T20:39:36.286358Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tag1ff20542", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:38.4331879Z", "lastUpdateTime": "2021-08-17T18:18:38.4331879Z", + true, "readEnabled": true, "listEnabled": true}}, {"name": "tag1ff20541", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:35.4083771Z", "lastUpdateTime": "2021-08-30T20:39:35.4083771Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag1ff20540", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:38.2658005Z", "lastUpdateTime": "2021-08-17T18:18:38.2658005Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:35.240939Z", "lastUpdateTime": "2021-08-30T20:39:35.240939Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1346' + content-length: '1342' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:59 GMT + date: Mon, 30 Aug 2021 20:39:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -131,7 +131,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo1ff2054/_tags?orderby=timedesc response: @@ -144,7 +144,7 @@ interactions: connection: keep-alive content-length: '214' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:59 GMT + date: Mon, 30 Aug 2021 20:39:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -163,7 +163,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -172,11 +172,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:59 GMT + date: Mon, 30 Aug 2021 20:39:57 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.983333' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -191,7 +191,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -200,11 +200,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:59 GMT + date: Mon, 30 Aug 2021 20:39:57 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.966667' + x-ms-ratelimit-remaining-calls-per-second: '166.6' status: code: 200 message: OK @@ -215,34 +215,34 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo1ff2054/_tags?orderby=timedesc response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo1ff2054", - "tags": [{"name": "tag1ff20543", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:39.2355315Z", "lastUpdateTime": "2021-08-17T18:18:39.2355315Z", + "tags": [{"name": "tag1ff20542", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:36.4533962Z", "lastUpdateTime": "2021-08-30T20:39:36.4533962Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tag1ff20541", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:38.6487239Z", "lastUpdateTime": "2021-08-17T18:18:38.6487239Z", + true, "readEnabled": true, "listEnabled": true}}, {"name": "tag1ff20543", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:36.286358Z", "lastUpdateTime": "2021-08-30T20:39:36.286358Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": - true, "readEnabled": true, "listEnabled": true}}, {"name": "tag1ff20542", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:38.4331879Z", "lastUpdateTime": "2021-08-17T18:18:38.4331879Z", + true, "readEnabled": true, "listEnabled": true}}, {"name": "tag1ff20541", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:35.4083771Z", "lastUpdateTime": "2021-08-30T20:39:35.4083771Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}, {"name": "tag1ff20540", - "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:18:38.2658005Z", "lastUpdateTime": "2021-08-17T18:18:38.2658005Z", + "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:39:35.240939Z", "lastUpdateTime": "2021-08-30T20:39:35.240939Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}]}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1346' + content-length: '1342' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:18:59 GMT + date: Mon, 30 Aug 2021 20:39:57 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_manifest_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_manifest_properties.yaml index 1c004f8f28a9..646302c0d0bf 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_manifest_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_manifest_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_tags/tagcfba1c48 response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:23 GMT + date: Mon, 30 Aug 2021 20:40:21 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:23 GMT + date: Mon, 30 Aug 2021 20:40:21 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.283333' + x-ms-ratelimit-remaining-calls-per-second: '166.583333' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:23 GMT + date: Mon, 30 Aug 2021 20:40:21 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.266667' + x-ms-ratelimit-remaining-calls-per-second: '166.466667' status: code: 200 message: OK @@ -89,14 +89,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_tags/tagcfba1c48 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repocfba1c48", - "tag": {"name": "tagcfba1c48", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:19:02.6410671Z", "lastUpdateTime": "2021-08-17T18:19:02.6410671Z", + "tag": {"name": "tagcfba1c48", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:40:01.4053285Z", "lastUpdateTime": "2021-08-30T20:40:01.4053285Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:23 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -119,9 +119,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -132,7 +132,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:23 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -141,7 +141,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -151,7 +151,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -160,11 +160,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.25' + x-ms-ratelimit-remaining-calls-per-second: '166.45' status: code: 200 message: OK @@ -179,7 +179,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -188,11 +188,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.233333' + x-ms-ratelimit-remaining-calls-per-second: '166.433333' status: code: 200 message: OK @@ -203,15 +203,15 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repocfba1c48", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:19:02.5253292Z", "lastUpdateTime": - "2021-08-17T18:19:02.5253292Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:40:01.3166635Z", "lastUpdateTime": + "2021-08-30T20:40:01.3166635Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tagcfba1c48"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -223,14 +223,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1699' + content-length: '1822' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -238,14 +239,14 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_tags/tagcfba1c48 response: @@ -258,7 +259,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -277,7 +278,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -286,11 +287,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.216667' + x-ms-ratelimit-remaining-calls-per-second: '166.416667' status: code: 200 message: OK @@ -305,7 +306,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -314,11 +315,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.2' + x-ms-ratelimit-remaining-calls-per-second: '166.4' status: code: 200 message: OK @@ -329,14 +330,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_tags/tagcfba1c48 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repocfba1c48", - "tag": {"name": "tagcfba1c48", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:19:02.6410671Z", "lastUpdateTime": "2021-08-17T18:19:02.6410671Z", + "tag": {"name": "tagcfba1c48", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:40:01.4053285Z", "lastUpdateTime": "2021-08-30T20:40:01.4053285Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -344,7 +345,7 @@ interactions: connection: keep-alive content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -364,9 +365,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -377,7 +378,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -386,7 +387,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -396,7 +397,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -405,11 +406,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.183333' + x-ms-ratelimit-remaining-calls-per-second: '166.383333' status: code: 200 message: OK @@ -424,7 +425,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -433,11 +434,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.166667' + x-ms-ratelimit-remaining-calls-per-second: '166.366667' status: code: 200 message: OK @@ -453,15 +454,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repocfba1c48", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:19:02.5253292Z", "lastUpdateTime": - "2021-08-17T18:19:02.5253292Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:40:01.3166635Z", "lastUpdateTime": + "2021-08-30T20:40:01.3166635Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tagcfba1c48"], "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -473,14 +474,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1703' + content-length: '1826' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -488,14 +490,14 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_tags/tagcfba1c48 response: @@ -508,7 +510,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -527,7 +529,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -536,11 +538,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.15' + x-ms-ratelimit-remaining-calls-per-second: '166.35' status: code: 200 message: OK @@ -555,7 +557,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -564,11 +566,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:24 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.133333' + x-ms-ratelimit-remaining-calls-per-second: '166.333333' status: code: 200 message: OK @@ -579,14 +581,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_tags/tagcfba1c48 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repocfba1c48", - "tag": {"name": "tagcfba1c48", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:19:02.6410671Z", "lastUpdateTime": "2021-08-17T18:19:02.6410671Z", + "tag": {"name": "tagcfba1c48", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:40:01.4053285Z", "lastUpdateTime": "2021-08-30T20:40:01.4053285Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -594,7 +596,7 @@ interactions: connection: keep-alive content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:25 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -614,9 +616,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -627,7 +629,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:25 GMT + date: Mon, 30 Aug 2021 20:40:22 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -636,7 +638,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -646,7 +648,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -655,11 +657,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:25 GMT + date: Mon, 30 Aug 2021 20:40:23 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.116667' + x-ms-ratelimit-remaining-calls-per-second: '166.316667' status: code: 200 message: OK @@ -674,7 +676,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -683,11 +685,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:25 GMT + date: Mon, 30 Aug 2021 20:40:23 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.1' + x-ms-ratelimit-remaining-calls-per-second: '166.3' status: code: 200 message: OK @@ -703,15 +705,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repocfba1c48", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:19:02.5253292Z", "lastUpdateTime": - "2021-08-17T18:19:02.5253292Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:40:01.3166635Z", "lastUpdateTime": + "2021-08-30T20:40:01.3166635Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["tagcfba1c48"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -723,14 +725,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1699' + content-length: '1822' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:25 GMT + date: Mon, 30 Aug 2021 20:40:23 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -738,5 +741,5 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repocfba1c48/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_manifest_properties_kwargs.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_manifest_properties_kwargs.yaml index 173b9faf5bc8..12ac4af849c8 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_manifest_properties_kwargs.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_manifest_properties_kwargs.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:49 GMT + date: Mon, 30 Aug 2021 20:40:47 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:49 GMT + date: Mon, 30 Aug 2021 20:40:48 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.916667' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:49 GMT + date: Mon, 30 Aug 2021 20:40:48 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.9' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -89,22 +89,22 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "tag": {"name": "taga14a1f36", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:19:29.769511Z", "lastUpdateTime": "2021-08-17T18:19:29.769511Z", + "tag": {"name": "taga14a1f36", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:40:27.2040769Z", "lastUpdateTime": "2021-08-30T20:40:27.2040769Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '388' + content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:49 GMT + date: Mon, 30 Aug 2021 20:40:48 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -119,9 +119,9 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -132,7 +132,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:49 GMT + date: Mon, 30 Aug 2021 20:40:48 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -141,7 +141,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -151,7 +151,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -160,11 +160,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:49 GMT + date: Mon, 30 Aug 2021 20:40:48 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.883333' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -179,7 +179,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -188,11 +188,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:49 GMT + date: Mon, 30 Aug 2021 20:40:48 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.866667' + x-ms-ratelimit-remaining-calls-per-second: '166.6' status: code: 200 message: OK @@ -203,15 +203,15 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:19:29.819869Z", "lastUpdateTime": - "2021-08-17T18:19:29.819869Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:40:27.2572671Z", "lastUpdateTime": + "2021-08-30T20:40:27.2572671Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["taga14a1f36"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -223,14 +223,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1697' + content-length: '1822' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:49 GMT + date: Mon, 30 Aug 2021 20:40:48 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -238,14 +239,14 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: @@ -258,7 +259,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:49 GMT + date: Mon, 30 Aug 2021 20:40:48 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -277,7 +278,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -286,11 +287,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:48 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.85' + x-ms-ratelimit-remaining-calls-per-second: '166.583333' status: code: 200 message: OK @@ -305,7 +306,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -314,11 +315,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.833333' + x-ms-ratelimit-remaining-calls-per-second: '166.566667' status: code: 200 message: OK @@ -329,22 +330,22 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "tag": {"name": "taga14a1f36", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:19:29.769511Z", "lastUpdateTime": "2021-08-17T18:19:29.769511Z", + "tag": {"name": "taga14a1f36", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:40:27.2040769Z", "lastUpdateTime": "2021-08-30T20:40:27.2040769Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '388' + content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -363,9 +364,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -376,7 +377,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -385,7 +386,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -395,7 +396,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -404,11 +405,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.816667' + x-ms-ratelimit-remaining-calls-per-second: '166.55' status: code: 200 message: OK @@ -423,7 +424,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -432,11 +433,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.8' + x-ms-ratelimit-remaining-calls-per-second: '166.533333' status: code: 200 message: OK @@ -451,15 +452,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:19:29.819869Z", "lastUpdateTime": - "2021-08-17T18:19:29.819869Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:40:27.2572671Z", "lastUpdateTime": + "2021-08-30T20:40:27.2572671Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["taga14a1f36"], "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -471,14 +472,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1698' + content-length: '1823' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -486,14 +488,14 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: @@ -506,7 +508,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -525,7 +527,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -534,11 +536,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.783333' + x-ms-ratelimit-remaining-calls-per-second: '166.516667' status: code: 200 message: OK @@ -553,7 +555,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -562,11 +564,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.766667' + x-ms-ratelimit-remaining-calls-per-second: '166.5' status: code: 200 message: OK @@ -577,22 +579,22 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "tag": {"name": "taga14a1f36", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:19:29.769511Z", "lastUpdateTime": "2021-08-17T18:19:29.769511Z", + "tag": {"name": "taga14a1f36", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:40:27.2040769Z", "lastUpdateTime": "2021-08-30T20:40:27.2040769Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '388' + content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -611,9 +613,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -624,7 +626,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -633,7 +635,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -643,7 +645,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -652,11 +654,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:49 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.75' + x-ms-ratelimit-remaining-calls-per-second: '166.483333' status: code: 200 message: OK @@ -671,7 +673,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -680,11 +682,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.733333' + x-ms-ratelimit-remaining-calls-per-second: '166.466667' status: code: 200 message: OK @@ -699,15 +701,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:19:29.819869Z", "lastUpdateTime": - "2021-08-17T18:19:29.819869Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:40:27.2572671Z", "lastUpdateTime": + "2021-08-30T20:40:27.2572671Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["taga14a1f36"], "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": false, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -719,14 +721,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1699' + content-length: '1824' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:50 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -734,14 +737,14 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: @@ -754,7 +757,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -773,7 +776,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -782,11 +785,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.716667' + x-ms-ratelimit-remaining-calls-per-second: '166.45' status: code: 200 message: OK @@ -801,7 +804,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -810,11 +813,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.7' + x-ms-ratelimit-remaining-calls-per-second: '166.433333' status: code: 200 message: OK @@ -825,22 +828,22 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "tag": {"name": "taga14a1f36", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:19:29.769511Z", "lastUpdateTime": "2021-08-17T18:19:29.769511Z", + "tag": {"name": "taga14a1f36", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:40:27.2040769Z", "lastUpdateTime": "2021-08-30T20:40:27.2040769Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '388' + content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -859,9 +862,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -872,7 +875,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -881,7 +884,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -891,7 +894,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -900,11 +903,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.683333' + x-ms-ratelimit-remaining-calls-per-second: '166.416667' status: code: 200 message: OK @@ -919,7 +922,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -928,11 +931,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.666667' + x-ms-ratelimit-remaining-calls-per-second: '166.4' status: code: 200 message: OK @@ -947,15 +950,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:19:29.819869Z", "lastUpdateTime": - "2021-08-17T18:19:29.819869Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:40:27.2572671Z", "lastUpdateTime": + "2021-08-30T20:40:27.2572671Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["taga14a1f36"], "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -967,14 +970,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1700' + content-length: '1825' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -982,14 +986,14 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: @@ -1002,7 +1006,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1021,7 +1025,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1030,11 +1034,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.65' + x-ms-ratelimit-remaining-calls-per-second: '166.383333' status: code: 200 message: OK @@ -1049,7 +1053,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1058,11 +1062,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.633333' + x-ms-ratelimit-remaining-calls-per-second: '166.366667' status: code: 200 message: OK @@ -1073,22 +1077,22 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "tag": {"name": "taga14a1f36", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:19:29.769511Z", "lastUpdateTime": "2021-08-17T18:19:29.769511Z", + "tag": {"name": "taga14a1f36", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:40:27.2040769Z", "lastUpdateTime": "2021-08-30T20:40:27.2040769Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '388' + content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1107,9 +1111,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1120,7 +1124,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1129,7 +1133,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -1139,7 +1143,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1148,11 +1152,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.616667' + x-ms-ratelimit-remaining-calls-per-second: '166.35' status: code: 200 message: OK @@ -1167,7 +1171,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1176,11 +1180,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:50 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.6' + x-ms-ratelimit-remaining-calls-per-second: '166.333333' status: code: 200 message: OK @@ -1195,15 +1199,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:19:29.819869Z", "lastUpdateTime": - "2021-08-17T18:19:29.819869Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:40:27.2572671Z", "lastUpdateTime": + "2021-08-30T20:40:27.2572671Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["taga14a1f36"], "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -1215,14 +1219,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1701' + content-length: '1826' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:51 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1230,14 +1235,14 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: @@ -1250,7 +1255,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:51 GMT + date: Mon, 30 Aug 2021 20:40:51 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1269,7 +1274,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1278,11 +1283,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:52 GMT + date: Mon, 30 Aug 2021 20:40:51 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.583333' + x-ms-ratelimit-remaining-calls-per-second: '166.316667' status: code: 200 message: OK @@ -1297,7 +1302,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1306,11 +1311,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:52 GMT + date: Mon, 30 Aug 2021 20:40:51 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.566667' + x-ms-ratelimit-remaining-calls-per-second: '166.3' status: code: 200 message: OK @@ -1321,22 +1326,22 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_tags/taga14a1f36 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "tag": {"name": "taga14a1f36", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:19:29.769511Z", "lastUpdateTime": "2021-08-17T18:19:29.769511Z", + "tag": {"name": "taga14a1f36", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:40:27.2040769Z", "lastUpdateTime": "2021-08-30T20:40:27.2040769Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '388' + content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:52 GMT + date: Mon, 30 Aug 2021 20:40:51 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1356,9 +1361,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"errors": [{"code": "UNAUTHORIZED", "message": "authentication required, @@ -1369,7 +1374,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:52 GMT + date: Mon, 30 Aug 2021 20:40:51 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1378,7 +1383,7 @@ interactions: status: code: 401 message: Unauthorized - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 - request: body: access_token: REDACTED @@ -1388,7 +1393,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -1397,11 +1402,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:52 GMT + date: Mon, 30 Aug 2021 20:40:51 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.55' + x-ms-ratelimit-remaining-calls-per-second: '166.283333' status: code: 200 message: OK @@ -1416,7 +1421,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -1425,11 +1430,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:52 GMT + date: Mon, 30 Aug 2021 20:40:51 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.533333' + x-ms-ratelimit-remaining-calls-per-second: '166.266667' status: code: 200 message: OK @@ -1445,15 +1450,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH - uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + uri: https://fake_url.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoa14a1f36", - "manifest": {"digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "imageSize": 5850, "createdTime": "2021-08-17T18:19:29.819869Z", "lastUpdateTime": - "2021-08-17T18:19:29.819869Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", + "manifest": {"digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "imageSize": 6975, "createdTime": "2021-08-30T20:40:27.2572671Z", "lastUpdateTime": + "2021-08-30T20:40:27.2572671Z", "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json", "tags": ["taga14a1f36"], "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}, "references": [{"digest": "sha256:1b26826f602946860c279fce658f31050cff2c596583af237d971f4629b57792", @@ -1465,14 +1470,15 @@ interactions: "architecture": "mips64le", "os": "linux"}, {"digest": "sha256:3e7d74d1c66c8f7dd5384f49bf0f8ab3e18e81e8d2a79218ed777c534b446552", "architecture": "ppc64le", "os": "linux"}, {"digest": "sha256:b89e28f1d57f44064e96c4525e514f6f0498a433b83413538f79f82566d72114", "architecture": "riscv64", "os": "linux"}, {"digest": "sha256:6d9fcdca25452c9a255f02c7d67eb28e8afbba2671f1e8f60b3b3585b7bdf172", - "architecture": "s390x", "os": "linux"}, {"digest": "sha256:e70692d3144e0ddb23e2ecf72d4b78f1e9ffcb32a9c863b98a35d43adfb42ad8", + "architecture": "s390x", "os": "linux"}, {"digest": "sha256:71ca70650c09da31487c1dfb348bf780c8807b9617974180eaaed46381e82ab0", + "architecture": "amd64", "os": "windows"}, {"digest": "sha256:07ec39351767b7d0453681761b5a7e1bbc98b71243ad5db8481af4700f7cc06e", "architecture": "amd64", "os": "windows"}]}}' headers: access-control-expose-headers: X-Ms-Correlation-Request-Id connection: keep-alive - content-length: '1697' + content-length: '1822' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:19:52 GMT + date: Mon, 30 Aug 2021 20:40:51 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -1480,5 +1486,5 @@ interactions: status: code: 200 message: OK - url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38 + url: https://yalinlitests.azurecr.io/acr/v1/repoa14a1f36/_manifests/sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1 version: 1 diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_properties.yaml index 9a5c6dc194a6..4dbb21424f2a 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoe19b1892 response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:16 GMT + date: Mon, 30 Aug 2021 20:41:16 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:16 GMT + date: Mon, 30 Aug 2021 20:41:16 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.666667' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:16 GMT + date: Mon, 30 Aug 2021 20:41:16 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.65' + x-ms-ratelimit-remaining-calls-per-second: '166.316667' status: code: 200 message: OK @@ -89,14 +89,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoe19b1892 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe19b1892", - "createdTime": "2021-08-17T18:19:55.9502131Z", "lastUpdateTime": "2021-08-17T18:19:54.2472558Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:40:55.7733771Z", "lastUpdateTime": "2021-08-30T20:40:54.1409477Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '319' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:16 GMT + date: Mon, 30 Aug 2021 20:41:16 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe19b1892 response: @@ -137,7 +137,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:16 GMT + date: Mon, 30 Aug 2021 20:41:16 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -156,7 +156,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -165,11 +165,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:17 GMT + date: Mon, 30 Aug 2021 20:41:16 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.633333' + x-ms-ratelimit-remaining-calls-per-second: '166.3' status: code: 200 message: OK @@ -184,7 +184,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -193,11 +193,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:17 GMT + date: Mon, 30 Aug 2021 20:41:16 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.616667' + x-ms-ratelimit-remaining-calls-per-second: '166.283333' status: code: 200 message: OK @@ -213,14 +213,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe19b1892 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe19b1892", - "createdTime": "2021-08-17T18:19:55.9502131Z", "lastUpdateTime": "2021-08-17T18:19:54.2472558Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:40:55.7733771Z", "lastUpdateTime": "2021-08-30T20:40:54.1409477Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false, "teleportEnabled": false}}' headers: @@ -228,7 +228,7 @@ interactions: connection: keep-alive content-length: '323' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:17 GMT + date: Mon, 30 Aug 2021 20:41:17 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -248,7 +248,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe19b1892 response: @@ -261,7 +261,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:17 GMT + date: Mon, 30 Aug 2021 20:41:17 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -280,7 +280,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -289,11 +289,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:17 GMT + date: Mon, 30 Aug 2021 20:41:17 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.6' + x-ms-ratelimit-remaining-calls-per-second: '166.266667' status: code: 200 message: OK @@ -308,7 +308,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -317,11 +317,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:17 GMT + date: Mon, 30 Aug 2021 20:41:17 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.583333' + x-ms-ratelimit-remaining-calls-per-second: '166.25' status: code: 200 message: OK @@ -337,14 +337,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe19b1892 response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe19b1892", - "createdTime": "2021-08-17T18:19:55.9502131Z", "lastUpdateTime": "2021-08-17T18:19:54.2472558Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:40:55.7733771Z", "lastUpdateTime": "2021-08-30T20:40:54.1409477Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -352,7 +352,7 @@ interactions: connection: keep-alive content-length: '319' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:17 GMT + date: Mon, 30 Aug 2021 20:41:17 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_repository_properties_kwargs.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_repository_properties_kwargs.yaml index 4f64cbdd74ef..14294dc8eab0 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_repository_properties_kwargs.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_repository_properties_kwargs.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:41 GMT + date: Mon, 30 Aug 2021 20:41:41 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:42 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.366667' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:42 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.35' + x-ms-ratelimit-remaining-calls-per-second: '165.916667' status: code: 200 message: OK @@ -89,14 +89,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe568203f", - "createdTime": "2021-08-17T18:20:22.1156818Z", "lastUpdateTime": "2021-08-17T18:20:19.8147874Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:41:21.1244545Z", "lastUpdateTime": "2021-08-30T20:41:19.6701144Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '319' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:42 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: @@ -137,7 +137,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:42 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -156,7 +156,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -165,11 +165,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:42 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.333333' + x-ms-ratelimit-remaining-calls-per-second: '165.9' status: code: 200 message: OK @@ -184,7 +184,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -193,11 +193,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:42 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.316667' + x-ms-ratelimit-remaining-calls-per-second: '165.883333' status: code: 200 message: OK @@ -213,14 +213,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe568203f", - "createdTime": "2021-08-17T18:20:22.1156818Z", "lastUpdateTime": "2021-08-17T18:20:19.8147874Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:41:21.1244545Z", "lastUpdateTime": "2021-08-30T20:41:19.6701144Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -228,7 +228,7 @@ interactions: connection: keep-alive content-length: '319' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:42 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -247,7 +247,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: @@ -260,7 +260,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:42 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -279,7 +279,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -288,11 +288,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.3' + x-ms-ratelimit-remaining-calls-per-second: '165.866667' status: code: 200 message: OK @@ -307,7 +307,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -316,11 +316,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.283333' + x-ms-ratelimit-remaining-calls-per-second: '165.85' status: code: 200 message: OK @@ -335,14 +335,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe568203f", - "createdTime": "2021-08-17T18:20:22.1156818Z", "lastUpdateTime": "2021-08-17T18:20:19.8147874Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:41:21.1244545Z", "lastUpdateTime": "2021-08-30T20:41:19.6701144Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -350,7 +350,7 @@ interactions: connection: keep-alive content-length: '320' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -369,7 +369,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: @@ -382,7 +382,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -401,7 +401,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -410,11 +410,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.266667' + x-ms-ratelimit-remaining-calls-per-second: '165.833333' status: code: 200 message: OK @@ -429,7 +429,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -438,11 +438,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.25' + x-ms-ratelimit-remaining-calls-per-second: '165.816667' status: code: 200 message: OK @@ -457,14 +457,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe568203f", - "createdTime": "2021-08-17T18:20:22.1156818Z", "lastUpdateTime": "2021-08-17T18:20:19.8147874Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:41:21.1244545Z", "lastUpdateTime": "2021-08-30T20:41:19.6701144Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": false, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -472,7 +472,7 @@ interactions: connection: keep-alive content-length: '321' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -491,7 +491,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: @@ -504,7 +504,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:42 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -523,7 +523,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -532,11 +532,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.233333' + x-ms-ratelimit-remaining-calls-per-second: '165.8' status: code: 200 message: OK @@ -551,7 +551,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -560,11 +560,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.216667' + x-ms-ratelimit-remaining-calls-per-second: '165.783333' status: code: 200 message: OK @@ -579,14 +579,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe568203f", - "createdTime": "2021-08-17T18:20:22.1156818Z", "lastUpdateTime": "2021-08-17T18:20:19.8147874Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:41:21.1244545Z", "lastUpdateTime": "2021-08-30T20:41:19.6701144Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -594,7 +594,7 @@ interactions: connection: keep-alive content-length: '322' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -613,7 +613,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: @@ -626,7 +626,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -645,7 +645,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -654,11 +654,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.2' + x-ms-ratelimit-remaining-calls-per-second: '165.766667' status: code: 200 message: OK @@ -673,7 +673,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -682,11 +682,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.183333' + x-ms-ratelimit-remaining-calls-per-second: '165.75' status: code: 200 message: OK @@ -701,14 +701,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe568203f", - "createdTime": "2021-08-17T18:20:22.1156818Z", "lastUpdateTime": "2021-08-17T18:20:19.8147874Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:41:21.1244545Z", "lastUpdateTime": "2021-08-30T20:41:19.6701144Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false, "teleportEnabled": false}}' headers: @@ -716,7 +716,7 @@ interactions: connection: keep-alive content-length: '323' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -736,7 +736,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: @@ -749,7 +749,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:43 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -768,7 +768,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -777,11 +777,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:44 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.166667' + x-ms-ratelimit-remaining-calls-per-second: '165.733333' status: code: 200 message: OK @@ -796,7 +796,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -805,11 +805,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:44 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.15' + x-ms-ratelimit-remaining-calls-per-second: '165.716667' status: code: 200 message: OK @@ -825,14 +825,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repoe568203f response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repoe568203f", - "createdTime": "2021-08-17T18:20:22.1156818Z", "lastUpdateTime": "2021-08-17T18:20:19.8147874Z", - "manifestCount": 11, "tagCount": 1, "changeableAttributes": {"deleteEnabled": + "createdTime": "2021-08-30T20:41:21.1244545Z", "lastUpdateTime": "2021-08-30T20:41:19.6701144Z", + "manifestCount": 12, "tagCount": 1, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true, "teleportEnabled": false}}' headers: @@ -840,7 +840,7 @@ interactions: connection: keep-alive content-length: '319' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:20:43 GMT + date: Mon, 30 Aug 2021 20:41:44 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_tag_properties.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_tag_properties.yaml index 21a6c2d8e6b4..3e8c80e9b9d0 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_tag_properties.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_tag_properties.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo46ec1a2d/_tags/tag46ec1a2d response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:07 GMT + date: Mon, 30 Aug 2021 20:42:08 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:08 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.616667' + x-ms-ratelimit-remaining-calls-per-second: '166.65' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:08 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.933333' + x-ms-ratelimit-remaining-calls-per-second: '166.633333' status: code: 200 message: OK @@ -89,14 +89,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo46ec1a2d/_tags/tag46ec1a2d response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo46ec1a2d", - "tag": {"name": "tag46ec1a2d", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:20:48.3652616Z", "lastUpdateTime": "2021-08-17T18:20:48.3652616Z", + "tag": {"name": "tag46ec1a2d", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:41:48.6587657Z", "lastUpdateTime": "2021-08-30T20:41:48.6587657Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:09 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo46ec1a2d/_tags/tag46ec1a2d response: @@ -137,7 +137,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:09 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -156,7 +156,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -165,11 +165,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:09 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.916667' + x-ms-ratelimit-remaining-calls-per-second: '166.616667' status: code: 200 message: OK @@ -184,7 +184,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -193,11 +193,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:09 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.9' + x-ms-ratelimit-remaining-calls-per-second: '166.6' status: code: 200 message: OK @@ -213,14 +213,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo46ec1a2d/_tags/tag46ec1a2d response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo46ec1a2d", - "tag": {"name": "tag46ec1a2d", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:20:48.3652616Z", "lastUpdateTime": "2021-08-17T18:20:48.3652616Z", + "tag": {"name": "tag46ec1a2d", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:41:48.6587657Z", "lastUpdateTime": "2021-08-30T20:41:48.6587657Z", "signed": false, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false}}}' headers: @@ -228,7 +228,7 @@ interactions: connection: keep-alive content-length: '394' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:09 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -248,7 +248,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo46ec1a2d/_tags/tag46ec1a2d response: @@ -261,7 +261,7 @@ interactions: connection: keep-alive content-length: '216' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:09 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -280,7 +280,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -289,11 +289,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:09 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.883333' + x-ms-ratelimit-remaining-calls-per-second: '166.583333' status: code: 200 message: OK @@ -308,7 +308,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -317,11 +317,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:09 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.866667' + x-ms-ratelimit-remaining-calls-per-second: '166.566667' status: code: 200 message: OK @@ -337,14 +337,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo46ec1a2d/_tags/tag46ec1a2d response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo46ec1a2d", - "tag": {"name": "tag46ec1a2d", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:20:48.3652616Z", "lastUpdateTime": "2021-08-17T18:20:48.3652616Z", + "tag": {"name": "tag46ec1a2d", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:41:48.6587657Z", "lastUpdateTime": "2021-08-30T20:41:48.6587657Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -352,7 +352,7 @@ interactions: connection: keep-alive content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:08 GMT + date: Mon, 30 Aug 2021 20:42:09 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains diff --git a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_tag_properties_kwargs.yaml b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_tag_properties_kwargs.yaml index cd8ba875bdbf..deb0bc044428 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_tag_properties_kwargs.yaml +++ b/sdk/containerregistry/azure-containerregistry/tests/recordings/test_container_registry_client_async.test_update_tag_properties_kwargs.yaml @@ -5,7 +5,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: @@ -18,7 +18,7 @@ interactions: connection: keep-alive content-length: '214' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:33 GMT + date: Mon, 30 Aug 2021 20:42:34 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -37,7 +37,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -46,11 +46,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:33 GMT + date: Mon, 30 Aug 2021 20:42:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '166.583333' + x-ms-ratelimit-remaining-calls-per-second: '165.883333' status: code: 200 message: OK @@ -65,7 +65,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -74,11 +74,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:33 GMT + date: Mon, 30 Aug 2021 20:42:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.966667' + x-ms-ratelimit-remaining-calls-per-second: '165.866667' status: code: 200 message: OK @@ -89,14 +89,14 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: GET uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo9bf1d1b", - "tag": {"name": "tag9bf1d1b", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:21:14.0410051Z", "lastUpdateTime": "2021-08-17T18:21:14.0410051Z", + "tag": {"name": "tag9bf1d1b", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:42:13.5813874Z", "lastUpdateTime": "2021-08-30T20:42:13.5813874Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -104,7 +104,7 @@ interactions: connection: keep-alive content-length: '388' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:33 GMT + date: Mon, 30 Aug 2021 20:42:34 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -123,7 +123,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: @@ -136,7 +136,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:33 GMT + date: Mon, 30 Aug 2021 20:42:34 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -155,7 +155,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -164,11 +164,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:33 GMT + date: Mon, 30 Aug 2021 20:42:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.95' + x-ms-ratelimit-remaining-calls-per-second: '165.85' status: code: 200 message: OK @@ -183,7 +183,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -192,11 +192,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:33 GMT + date: Mon, 30 Aug 2021 20:42:34 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.933333' + x-ms-ratelimit-remaining-calls-per-second: '165.833333' status: code: 200 message: OK @@ -211,14 +211,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo9bf1d1b", - "tag": {"name": "tag9bf1d1b", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:21:14.0410051Z", "lastUpdateTime": "2021-08-17T18:21:14.0410051Z", + "tag": {"name": "tag9bf1d1b", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:42:13.5813874Z", "lastUpdateTime": "2021-08-30T20:42:13.5813874Z", "signed": false, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -226,7 +226,7 @@ interactions: connection: keep-alive content-length: '389' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:33 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -245,7 +245,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: @@ -258,7 +258,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -277,7 +277,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -286,11 +286,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.916667' + x-ms-ratelimit-remaining-calls-per-second: '165.816667' status: code: 200 message: OK @@ -305,7 +305,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -314,11 +314,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.9' + x-ms-ratelimit-remaining-calls-per-second: '165.8' status: code: 200 message: OK @@ -333,14 +333,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo9bf1d1b", - "tag": {"name": "tag9bf1d1b", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:21:14.0410051Z", "lastUpdateTime": "2021-08-17T18:21:14.0410051Z", + "tag": {"name": "tag9bf1d1b", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:42:13.5813874Z", "lastUpdateTime": "2021-08-30T20:42:13.5813874Z", "signed": false, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": true, "readEnabled": false, "listEnabled": true}}}' headers: @@ -348,7 +348,7 @@ interactions: connection: keep-alive content-length: '390' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -367,7 +367,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: @@ -380,7 +380,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -399,7 +399,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -408,11 +408,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.883333' + x-ms-ratelimit-remaining-calls-per-second: '165.783333' status: code: 200 message: OK @@ -427,7 +427,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -436,11 +436,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.866667' + x-ms-ratelimit-remaining-calls-per-second: '165.766667' status: code: 200 message: OK @@ -455,14 +455,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo9bf1d1b", - "tag": {"name": "tag9bf1d1b", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:21:14.0410051Z", "lastUpdateTime": "2021-08-17T18:21:14.0410051Z", + "tag": {"name": "tag9bf1d1b", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:42:13.5813874Z", "lastUpdateTime": "2021-08-30T20:42:13.5813874Z", "signed": false, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": true}}}' headers: @@ -470,7 +470,7 @@ interactions: connection: keep-alive content-length: '391' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -489,7 +489,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: @@ -502,7 +502,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -521,7 +521,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -530,11 +530,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.85' + x-ms-ratelimit-remaining-calls-per-second: '165.75' status: code: 200 message: OK @@ -549,7 +549,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -558,11 +558,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.833333' + x-ms-ratelimit-remaining-calls-per-second: '165.733333' status: code: 200 message: OK @@ -577,14 +577,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo9bf1d1b", - "tag": {"name": "tag9bf1d1b", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:21:14.0410051Z", "lastUpdateTime": "2021-08-17T18:21:14.0410051Z", + "tag": {"name": "tag9bf1d1b", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:42:13.5813874Z", "lastUpdateTime": "2021-08-30T20:42:13.5813874Z", "signed": false, "changeableAttributes": {"deleteEnabled": false, "writeEnabled": false, "readEnabled": false, "listEnabled": false}}}' headers: @@ -592,7 +592,7 @@ interactions: connection: keep-alive content-length: '392' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -612,7 +612,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: @@ -625,7 +625,7 @@ interactions: connection: keep-alive content-length: '215' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:34 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains @@ -644,7 +644,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/exchange response: @@ -653,11 +653,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:35 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.816667' + x-ms-ratelimit-remaining-calls-per-second: '165.716667' status: code: 200 message: OK @@ -672,7 +672,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: POST uri: https://fake_url.azurecr.io/oauth2/token response: @@ -681,11 +681,11 @@ interactions: headers: connection: keep-alive content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:35 GMT + date: Mon, 30 Aug 2021 20:42:35 GMT server: openresty strict-transport-security: max-age=31536000; includeSubDomains transfer-encoding: chunked - x-ms-ratelimit-remaining-calls-per-second: '165.8' + x-ms-ratelimit-remaining-calls-per-second: '165.7' status: code: 200 message: OK @@ -701,14 +701,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-containerregistry/1.0.0b5 Python/3.9.2 (Windows-10-10.0.19041-SP0) + - azsdk-python-azure-containerregistry/1.0.0b6 Python/3.6.8 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://fake_url.azurecr.io/acr/v1/repo9bf1d1b/_tags/tag9bf1d1b response: body: string: '{"registry": "yalinlitests.azurecr.io", "imageName": "repo9bf1d1b", - "tag": {"name": "tag9bf1d1b", "digest": "sha256:0fe98d7debd9049c50b597ef1f85b7c1e8cc81f59c8d623fcb2250e8bec85b38", - "createdTime": "2021-08-17T18:21:14.0410051Z", "lastUpdateTime": "2021-08-17T18:21:14.0410051Z", + "tag": {"name": "tag9bf1d1b", "digest": "sha256:7d91b69e04a9029b99f3585aaaccae2baa80bcf318f4a5d2165a9898cd2dc0a1", + "createdTime": "2021-08-30T20:42:13.5813874Z", "lastUpdateTime": "2021-08-30T20:42:13.5813874Z", "signed": false, "changeableAttributes": {"deleteEnabled": true, "writeEnabled": true, "readEnabled": true, "listEnabled": true}}}' headers: @@ -716,7 +716,7 @@ interactions: connection: keep-alive content-length: '388' content-type: application/json; charset=utf-8 - date: Tue, 17 Aug 2021 18:21:35 GMT + date: Mon, 30 Aug 2021 20:42:36 GMT docker-distribution-api-version: registry/2.0 server: openresty strict-transport-security: max-age=31536000; includeSubDomains From ff2cb46c14455abe578b597e232d485e294f8d64 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Mon, 30 Aug 2021 14:58:44 -0700 Subject: [PATCH 03/11] Add German cloud to testcase.py --- .../azure-containerregistry/tests/testcase.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/sdk/containerregistry/azure-containerregistry/tests/testcase.py b/sdk/containerregistry/azure-containerregistry/tests/testcase.py index 22c11a4e97a5..13b2c806d664 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/testcase.py +++ b/sdk/containerregistry/azure-containerregistry/tests/testcase.py @@ -218,6 +218,9 @@ def get_authority(endpoint): if ".azurecr.us" in endpoint: logger.warning("US Gov Authority:") return AzureAuthorityHosts.AZURE_GOVERNMENT + if ".azurecr.de" in endpoint: + logger.warning("Germany Authority:") + return AzureAuthorityHosts.AZURE_GERMANY raise ValueError("Endpoint ({}) could not be understood".format(endpoint)) @@ -231,6 +234,9 @@ def get_audience(authority): if authority == AzureAuthorityHosts.AZURE_GOVERNMENT: logger.warning("US Gov scope") return ContainerRegistryAudience.ARM_GOVERNMENT_VALUE + if authority == AzureAuthorityHosts.AZURE_GERMANY: + logger.warning("Germany scope") + return ContainerRegistryAudience.ARM_GERMANY_VALUE def get_base_url(authority): if authority == AzureAuthorityHosts.AZURE_PUBLIC_CLOUD: @@ -242,11 +248,14 @@ def get_base_url(authority): if authority == AzureAuthorityHosts.AZURE_GOVERNMENT: logger.warning("US Gov scope") return AZURE_US_GOV_CLOUD + if authority == AzureAuthorityHosts.AZURE_GERMANY: + logger.warning("Germany scope") + return AZURE_GERMAN_CLOUD from azure.identity import ClientSecretCredential -from msrestazure.azure_cloud import AZURE_CHINA_CLOUD, AZURE_US_GOV_CLOUD, AZURE_PUBLIC_CLOUD +from msrestazure.azure_cloud import AZURE_CHINA_CLOUD, AZURE_US_GOV_CLOUD, AZURE_PUBLIC_CLOUD, AZURE_GERMAN_CLOUD # Moving this out of testcase so the fixture and individual tests can use it def import_image(authority, repository, tags): From 561fd0a9026d63da94b59192d2087c9e401b3179 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Tue, 31 Aug 2021 11:42:15 -0700 Subject: [PATCH 04/11] Fix pylint error --- .../azure/containerregistry/_container_registry_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py index 1ac21b4ef393..7508fc243f6e 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py @@ -45,7 +45,7 @@ def __init__(self, endpoint, credential=None, **kwargs): :dedent: 8 :caption: Instantiate an instance of `ContainerRegistryClient` """ - audience = kwargs.pop("audience", None) + audience = kwargs.pop("audience", None) if not audience: raise ValueError("The argument audience must be set to initialize ContainerRegistryClient.") defaultScope = [audience + "/.default"] From 8c38bc6939448fecea4a4dbe20c0a287836ce668 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Tue, 31 Aug 2021 11:42:48 -0700 Subject: [PATCH 05/11] Remove _VALUE suffix --- .../azure/containerregistry/_enums.py | 8 ++++---- .../azure-containerregistry/tests/testcase.py | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py index 25152b0cee74..257ef989244b 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py @@ -11,7 +11,7 @@ class ContainerRegistryAudience(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Supported container registry audience""" - ARM_CHINA_VALUE = "https://management.chinacloudapi.cn" - ARM_GERMANY_VALUE = "https://management.microsoftazure.de" - ARM_GOVERNMENT_VALUE = "https://management.usgovcloudapi.net" - ARM_PUBLIC_CLOUD_VALUE = "https://management.azure.com" + ARM_CHINA = "https://management.chinacloudapi.cn" + ARM_GERMANY = "https://management.microsoftazure.de" + ARM_GOVERNMENT = "https://management.usgovcloudapi.net" + ARM_PUBLIC_CLOUD = "https://management.azure.com" diff --git a/sdk/containerregistry/azure-containerregistry/tests/testcase.py b/sdk/containerregistry/azure-containerregistry/tests/testcase.py index 13b2c806d664..fff059aa2d6e 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/testcase.py +++ b/sdk/containerregistry/azure-containerregistry/tests/testcase.py @@ -227,16 +227,16 @@ def get_authority(endpoint): def get_audience(authority): if authority == AzureAuthorityHosts.AZURE_PUBLIC_CLOUD: logger.warning("Public auth scope") - return ContainerRegistryAudience.ARM_PUBLIC_CLOUD_VALUE + return ContainerRegistryAudience.ARM_PUBLIC_CLOUD if authority == AzureAuthorityHosts.AZURE_CHINA: logger.warning("China scope") - return ContainerRegistryAudience.ARM_CHINA_VALUE + return ContainerRegistryAudience.ARM_CHINA if authority == AzureAuthorityHosts.AZURE_GOVERNMENT: logger.warning("US Gov scope") - return ContainerRegistryAudience.ARM_GOVERNMENT_VALUE + return ContainerRegistryAudience.ARM_GOVERNMENT if authority == AzureAuthorityHosts.AZURE_GERMANY: logger.warning("Germany scope") - return ContainerRegistryAudience.ARM_GERMANY_VALUE + return ContainerRegistryAudience.ARM_GERMANY def get_base_url(authority): if authority == AzureAuthorityHosts.AZURE_PUBLIC_CLOUD: From 6aa1a1dbdb340bdf7c4198547f9f8159b85b17db Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Tue, 31 Aug 2021 15:09:34 -0700 Subject: [PATCH 06/11] Fix lint errors --- .../azure/containerregistry/_container_registry_client.py | 5 +++-- .../aio/_async_container_registry_client.py | 8 +++++--- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py index 7508fc243f6e..08996fd830be 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py @@ -52,8 +52,9 @@ def __init__(self, endpoint, credential=None, **kwargs): if not endpoint.startswith("https://") and not endpoint.startswith("http://"): endpoint = "https://" + endpoint self._endpoint = endpoint - self._credential = credential - super(ContainerRegistryClient, self).__init__(endpoint=endpoint, credential=credential, credential_scopes=defaultScope, **kwargs) + self._credential = credential + super(ContainerRegistryClient, self).__init__( + endpoint=endpoint, credential=credential, credential_scopes=defaultScope, **kwargs) def _get_digest_from_tag(self, repository, tag): # type: (str, str) -> str diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py index 443a3997c49d..bb47eb2fc4f1 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py @@ -26,7 +26,8 @@ class ContainerRegistryClient(ContainerRegistryBaseClient): - def __init__(self, endpoint: str, credential: Optional["AsyncTokenCredential"] = None, *, audience, **kwargs: Any) -> None: + def __init__( + self, endpoint: str, credential: Optional["AsyncTokenCredential"] = None, *, audience, **kwargs: Any) -> None: """Create a ContainerRegistryClient from an endpoint and a credential :param endpoint: An ACR endpoint @@ -46,13 +47,14 @@ def __init__(self, endpoint: str, credential: Optional["AsyncTokenCredential"] = :language: python :dedent: 8 :caption: Instantiate an instance of `ContainerRegistryClient` - """ + """ defaultScope = [audience + "/.default"] if not endpoint.startswith("https://") and not endpoint.startswith("http://"): endpoint = "https://" + endpoint self._endpoint = endpoint self._credential = credential - super(ContainerRegistryClient, self).__init__(endpoint=endpoint, credential=credential, credential_scopes=defaultScope, **kwargs) + super(ContainerRegistryClient, self).__init__( + endpoint=endpoint, credential=credential, credential_scopes=defaultScope, **kwargs) async def _get_digest_from_tag(self, repository: str, tag: str) -> str: tag_props = await self.get_tag_properties(repository, tag) From 4a9e466dca798b12c33b82a1457a89bbff78a500 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Tue, 31 Aug 2021 15:41:32 -0700 Subject: [PATCH 07/11] Move the enum ContainerRegistryAudience to an existing file for enums --- .../azure/containerregistry/__init__.py | 2 -- .../azure/containerregistry/_enums.py | 17 --------- .../models/_container_registry_enums.py | 35 ++++++++----------- .../azure-containerregistry/tests/testcase.py | 12 +++---- 4 files changed, 18 insertions(+), 48 deletions(-) delete mode 100644 sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py index 8791d0b10add..3ddc08fd3e1a 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py @@ -7,7 +7,6 @@ # -------------------------------------------------------------------------- from ._container_registry_client import ContainerRegistryClient -from ._enums import ContainerRegistryAudience from ._models import ( ArtifactArchitecture, ArtifactOperatingSystem, @@ -30,5 +29,4 @@ "RepositoryProperties", "TagOrder", "ArtifactTagProperties", - "ContainerRegistryAudience", ] diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py deleted file mode 100644 index 257ef989244b..000000000000 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py +++ /dev/null @@ -1,17 +0,0 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ -# pylint:skip-file (avoids crash due to six.with_metaclass https://github.com/PyCQA/astroid/issues/713) -from enum import Enum -from six import with_metaclass - -from azure.core import CaseInsensitiveEnumMeta - -class ContainerRegistryAudience(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): - """Supported container registry audience""" - - ARM_CHINA = "https://management.chinacloudapi.cn" - ARM_GERMANY = "https://management.microsoftazure.de" - ARM_GOVERNMENT = "https://management.usgovcloudapi.net" - ARM_PUBLIC_CLOUD = "https://management.azure.com" diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_generated/models/_container_registry_enums.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_generated/models/_container_registry_enums.py index 7da71393e629..c978f3a81970 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_generated/models/_container_registry_enums.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_generated/models/_container_registry_enums.py @@ -6,25 +6,10 @@ from enum import Enum, EnumMeta from six import with_metaclass +from azure.core import CaseInsensitiveEnumMeta -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 ArtifactArchitecture(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): +class ArtifactArchitecture(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): I386 = "386" AMD64 = "amd64" @@ -40,7 +25,7 @@ class ArtifactArchitecture(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): S390_X = "s390x" WASM = "wasm" -class ArtifactOperatingSystem(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): +class ArtifactOperatingSystem(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): AIX = "aix" ANDROID = "android" @@ -57,7 +42,7 @@ class ArtifactOperatingSystem(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum SOLARIS = "solaris" WINDOWS = "windows" -class ManifestOrderBy(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): +class ManifestOrderBy(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Sort options for ordering manifests in a collection. """ @@ -68,7 +53,7 @@ class ManifestOrderBy(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): #: Order manifest by LastUpdatedOn field, from least recently updated to most recently updated. LAST_UPDATED_ON_ASCENDING = "timeasc" -class TagOrderBy(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): +class TagOrderBy(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): #: Do not provide an orderby value in the request. NONE = "none" @@ -77,9 +62,17 @@ class TagOrderBy(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): #: Order tags by LastUpdatedOn field, from least recently updated to most recently updated. LAST_UPDATED_ON_ASCENDING = "timeasc" -class TokenGrantType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): +class TokenGrantType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): """Grant type is expected to be refresh_token """ REFRESH_TOKEN = "refresh_token" PASSWORD = "password" + +class ContainerRegistryAudience(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + """Supported container registry audience""" + + ARM_CHINA = "https://management.chinacloudapi.cn" + ARM_GERMANY = "https://management.microsoftazure.de" + ARM_GOVERNMENT = "https://management.usgovcloudapi.net" + ARM_PUBLIC_CLOUD = "https://management.azure.com" diff --git a/sdk/containerregistry/azure-containerregistry/tests/testcase.py b/sdk/containerregistry/azure-containerregistry/tests/testcase.py index fff059aa2d6e..ab77b0cba823 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/testcase.py +++ b/sdk/containerregistry/azure-containerregistry/tests/testcase.py @@ -11,20 +11,21 @@ import six import time -from azure.containerregistry import ContainerRegistryAudience, ContainerRegistryClient +from azure.containerregistry import ContainerRegistryClient from azure.containerregistry._helpers import _is_tag +from azure.containerregistry._generated.models._container_registry_enums import ContainerRegistryAudience from azure.core.credentials import AccessToken from azure.mgmt.containerregistry import ContainerRegistryManagementClient from azure.mgmt.containerregistry.models import ImportImageParameters, ImportSource, ImportMode -from azure.identity import DefaultAzureCredential, AzureAuthorityHosts +from azure.identity import DefaultAzureCredential, AzureAuthorityHosts, ClientSecretCredential from devtools_testutils import AzureTestCase, is_live from azure_devtools.scenario_tests import ( OAuthRequestResponsesFilter, RecordingProcessor, ) -from azure_devtools.scenario_tests import RecordingProcessor +from msrestazure.azure_cloud import AZURE_CHINA_CLOUD, AZURE_US_GOV_CLOUD, AZURE_PUBLIC_CLOUD, AZURE_GERMAN_CLOUD REDACTED = "REDACTED" @@ -252,11 +253,6 @@ def get_base_url(authority): logger.warning("Germany scope") return AZURE_GERMAN_CLOUD - - -from azure.identity import ClientSecretCredential -from msrestazure.azure_cloud import AZURE_CHINA_CLOUD, AZURE_US_GOV_CLOUD, AZURE_PUBLIC_CLOUD, AZURE_GERMAN_CLOUD - # Moving this out of testcase so the fixture and individual tests can use it def import_image(authority, repository, tags): logger.warning("Import image authority: {}".format(authority)) From 2a145fae7c4efe8ce122739a15f94b3f357e5c6f Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Fri, 3 Sep 2021 13:34:19 -0700 Subject: [PATCH 08/11] Get rid of public enum class --- .../azure/containerregistry/__init__.py | 2 -- .../_container_registry_client.py | 6 ++++-- .../azure/containerregistry/_enums.py | 17 ----------------- .../azure-containerregistry/tests/testcase.py | 19 +++++++------------ 4 files changed, 11 insertions(+), 33 deletions(-) delete mode 100644 sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py index 8791d0b10add..3ddc08fd3e1a 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/__init__.py @@ -7,7 +7,6 @@ # -------------------------------------------------------------------------- from ._container_registry_client import ContainerRegistryClient -from ._enums import ContainerRegistryAudience from ._models import ( ArtifactArchitecture, ArtifactOperatingSystem, @@ -30,5 +29,4 @@ "RepositoryProperties", "TagOrder", "ArtifactTagProperties", - "ContainerRegistryAudience", ] diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py index 08996fd830be..e448d51f8833 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py @@ -31,8 +31,10 @@ def __init__(self, endpoint, credential=None, **kwargs): :param str endpoint: An ACR endpoint :param credential: The credential with which to authenticate :type credential: :class:`~azure.core.credentials.TokenCredential` - :keyword audience: URL to use for credential authentication with AAD - :paramtype audience: ~azure.containerregistry.ContainerRegistryAudience or str + :keyword audience: URL to use for credential authentication with AAD. Its value could be + :"https://management.azure.com", "https://management.chinacloudapi.cn", "https://management.microsoftazure.de" or + :"https://management.usgovcloudapi.net". + :paramtype audience: str :returns: None :raises ValueError: if audience keyword-only argument isn't provided diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py deleted file mode 100644 index 257ef989244b..000000000000 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_enums.py +++ /dev/null @@ -1,17 +0,0 @@ -# ------------------------------------ -# Copyright (c) Microsoft Corporation. -# Licensed under the MIT License. -# ------------------------------------ -# pylint:skip-file (avoids crash due to six.with_metaclass https://github.com/PyCQA/astroid/issues/713) -from enum import Enum -from six import with_metaclass - -from azure.core import CaseInsensitiveEnumMeta - -class ContainerRegistryAudience(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): - """Supported container registry audience""" - - ARM_CHINA = "https://management.chinacloudapi.cn" - ARM_GERMANY = "https://management.microsoftazure.de" - ARM_GOVERNMENT = "https://management.usgovcloudapi.net" - ARM_PUBLIC_CLOUD = "https://management.azure.com" diff --git a/sdk/containerregistry/azure-containerregistry/tests/testcase.py b/sdk/containerregistry/azure-containerregistry/tests/testcase.py index fff059aa2d6e..a87bd1c09eed 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/testcase.py +++ b/sdk/containerregistry/azure-containerregistry/tests/testcase.py @@ -11,20 +11,20 @@ import six import time -from azure.containerregistry import ContainerRegistryAudience, ContainerRegistryClient +from azure.containerregistry import ContainerRegistryClient from azure.containerregistry._helpers import _is_tag from azure.core.credentials import AccessToken from azure.mgmt.containerregistry import ContainerRegistryManagementClient from azure.mgmt.containerregistry.models import ImportImageParameters, ImportSource, ImportMode -from azure.identity import DefaultAzureCredential, AzureAuthorityHosts +from azure.identity import DefaultAzureCredential, AzureAuthorityHosts, ClientSecretCredential from devtools_testutils import AzureTestCase, is_live from azure_devtools.scenario_tests import ( OAuthRequestResponsesFilter, RecordingProcessor, ) -from azure_devtools.scenario_tests import RecordingProcessor +from msrestazure.azure_cloud import AZURE_CHINA_CLOUD, AZURE_US_GOV_CLOUD, AZURE_PUBLIC_CLOUD, AZURE_GERMAN_CLOUD REDACTED = "REDACTED" @@ -227,16 +227,16 @@ def get_authority(endpoint): def get_audience(authority): if authority == AzureAuthorityHosts.AZURE_PUBLIC_CLOUD: logger.warning("Public auth scope") - return ContainerRegistryAudience.ARM_PUBLIC_CLOUD + return "https://management.azure.com" if authority == AzureAuthorityHosts.AZURE_CHINA: logger.warning("China scope") - return ContainerRegistryAudience.ARM_CHINA + return "https://management.chinacloudapi.cn" if authority == AzureAuthorityHosts.AZURE_GOVERNMENT: logger.warning("US Gov scope") - return ContainerRegistryAudience.ARM_GOVERNMENT + return "https://management.usgovcloudapi.net" if authority == AzureAuthorityHosts.AZURE_GERMANY: logger.warning("Germany scope") - return ContainerRegistryAudience.ARM_GERMANY + return "https://management.microsoftazure.de" def get_base_url(authority): if authority == AzureAuthorityHosts.AZURE_PUBLIC_CLOUD: @@ -252,11 +252,6 @@ def get_base_url(authority): logger.warning("Germany scope") return AZURE_GERMAN_CLOUD - - -from azure.identity import ClientSecretCredential -from msrestazure.azure_cloud import AZURE_CHINA_CLOUD, AZURE_US_GOV_CLOUD, AZURE_PUBLIC_CLOUD, AZURE_GERMAN_CLOUD - # Moving this out of testcase so the fixture and individual tests can use it def import_image(authority, repository, tags): logger.warning("Import image authority: {}".format(authority)) From 35dfc09c032dadd5fc6ff25ef1ed8c859593f90e Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Fri, 3 Sep 2021 13:39:04 -0700 Subject: [PATCH 09/11] Get rid of public enum class --- .../models/_container_registry_enums.py | 35 +++++++++++-------- .../azure-containerregistry/tests/testcase.py | 1 - 2 files changed, 21 insertions(+), 15 deletions(-) diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_generated/models/_container_registry_enums.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_generated/models/_container_registry_enums.py index c978f3a81970..7da71393e629 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_generated/models/_container_registry_enums.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_generated/models/_container_registry_enums.py @@ -6,10 +6,25 @@ from enum import Enum, EnumMeta from six import with_metaclass -from azure.core import CaseInsensitiveEnumMeta +class _CaseInsensitiveEnumMeta(EnumMeta): + def __getitem__(self, name): + return super().__getitem__(name.upper()) -class ArtifactArchitecture(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): + 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 ArtifactArchitecture(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): I386 = "386" AMD64 = "amd64" @@ -25,7 +40,7 @@ class ArtifactArchitecture(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): S390_X = "s390x" WASM = "wasm" -class ArtifactOperatingSystem(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): +class ArtifactOperatingSystem(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): AIX = "aix" ANDROID = "android" @@ -42,7 +57,7 @@ class ArtifactOperatingSystem(with_metaclass(CaseInsensitiveEnumMeta, str, Enum) SOLARIS = "solaris" WINDOWS = "windows" -class ManifestOrderBy(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): +class ManifestOrderBy(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Sort options for ordering manifests in a collection. """ @@ -53,7 +68,7 @@ class ManifestOrderBy(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): #: Order manifest by LastUpdatedOn field, from least recently updated to most recently updated. LAST_UPDATED_ON_ASCENDING = "timeasc" -class TagOrderBy(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): +class TagOrderBy(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): #: Do not provide an orderby value in the request. NONE = "none" @@ -62,17 +77,9 @@ class TagOrderBy(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): #: Order tags by LastUpdatedOn field, from least recently updated to most recently updated. LAST_UPDATED_ON_ASCENDING = "timeasc" -class TokenGrantType(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): +class TokenGrantType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Grant type is expected to be refresh_token """ REFRESH_TOKEN = "refresh_token" PASSWORD = "password" - -class ContainerRegistryAudience(with_metaclass(CaseInsensitiveEnumMeta, str, Enum)): - """Supported container registry audience""" - - ARM_CHINA = "https://management.chinacloudapi.cn" - ARM_GERMANY = "https://management.microsoftazure.de" - ARM_GOVERNMENT = "https://management.usgovcloudapi.net" - ARM_PUBLIC_CLOUD = "https://management.azure.com" diff --git a/sdk/containerregistry/azure-containerregistry/tests/testcase.py b/sdk/containerregistry/azure-containerregistry/tests/testcase.py index e4d9c17378d5..a87bd1c09eed 100644 --- a/sdk/containerregistry/azure-containerregistry/tests/testcase.py +++ b/sdk/containerregistry/azure-containerregistry/tests/testcase.py @@ -13,7 +13,6 @@ from azure.containerregistry import ContainerRegistryClient from azure.containerregistry._helpers import _is_tag -from azure.containerregistry._generated.models._container_registry_enums import ContainerRegistryAudience from azure.core.credentials import AccessToken from azure.mgmt.containerregistry import ContainerRegistryManagementClient From a90f758328d86b8e103e137f3d5115eac5b68f6c Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Fri, 3 Sep 2021 13:41:30 -0700 Subject: [PATCH 10/11] Update docstring in async client --- .../azure/containerregistry/_container_registry_client.py | 2 +- .../containerregistry/aio/_async_container_registry_client.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py index e448d51f8833..0bcd8f649e2f 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py @@ -33,7 +33,7 @@ def __init__(self, endpoint, credential=None, **kwargs): :type credential: :class:`~azure.core.credentials.TokenCredential` :keyword audience: URL to use for credential authentication with AAD. Its value could be :"https://management.azure.com", "https://management.chinacloudapi.cn", "https://management.microsoftazure.de" or - :"https://management.usgovcloudapi.net". + :"https://management.usgovcloudapi.net" :paramtype audience: str :returns: None :raises ValueError: if audience keyword-only argument isn't provided diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py index bb47eb2fc4f1..fbf8ed15e625 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py @@ -34,7 +34,9 @@ def __init__( :type endpoint: str :param credential: The credential with which to authenticate :type credential: :class:`~azure.core.credentials_async.AsyncTokenCredential` - :keyword audience: URL to use for credential authentication with AAD + :keyword audience: URL to use for credential authentication with AAD. Its value could be + :"https://management.azure.com", "https://management.chinacloudapi.cn", "https://management.microsoftazure.de" or + :"https://management.usgovcloudapi.net" :paramtype audience: ~azure.containerregistry.ContainerRegistryAudience or str :returns: None :raises: None From 6967326feb87c5d90022a9bf6d7f68341c4779e7 Mon Sep 17 00:00:00 2001 From: YalinLi0312 Date: Fri, 3 Sep 2021 14:15:22 -0700 Subject: [PATCH 11/11] Remove extra ':' in docstring --- .../azure/containerregistry/_container_registry_client.py | 4 ++-- .../containerregistry/aio/_async_container_registry_client.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py index 0bcd8f649e2f..ae7cced8dfac 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/_container_registry_client.py @@ -32,8 +32,8 @@ def __init__(self, endpoint, credential=None, **kwargs): :param credential: The credential with which to authenticate :type credential: :class:`~azure.core.credentials.TokenCredential` :keyword audience: URL to use for credential authentication with AAD. Its value could be - :"https://management.azure.com", "https://management.chinacloudapi.cn", "https://management.microsoftazure.de" or - :"https://management.usgovcloudapi.net" + "https://management.azure.com", "https://management.chinacloudapi.cn", "https://management.microsoftazure.de" or + "https://management.usgovcloudapi.net" :paramtype audience: str :returns: None :raises ValueError: if audience keyword-only argument isn't provided diff --git a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py index fbf8ed15e625..9b73a1e8838d 100644 --- a/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py +++ b/sdk/containerregistry/azure-containerregistry/azure/containerregistry/aio/_async_container_registry_client.py @@ -35,8 +35,8 @@ def __init__( :param credential: The credential with which to authenticate :type credential: :class:`~azure.core.credentials_async.AsyncTokenCredential` :keyword audience: URL to use for credential authentication with AAD. Its value could be - :"https://management.azure.com", "https://management.chinacloudapi.cn", "https://management.microsoftazure.de" or - :"https://management.usgovcloudapi.net" + "https://management.azure.com", "https://management.chinacloudapi.cn", "https://management.microsoftazure.de" or + "https://management.usgovcloudapi.net" :paramtype audience: ~azure.containerregistry.ContainerRegistryAudience or str :returns: None :raises: None