diff --git a/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md b/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md index d803498064d6..3befc67394c6 100644 --- a/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md +++ b/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +## 9.0.1 (2022-10-26) + +### Bugs Fixed + + - Added missing parameter `api_version` for operation AccountsOperations.begin_renew_credentials + ## 9.0.0 (2022-09-26) ### Features Added diff --git a/sdk/netapp/azure-mgmt-netapp/_meta.json b/sdk/netapp/azure-mgmt-netapp/_meta.json index a5b9e32c9a54..ef686342ee9e 100644 --- a/sdk/netapp/azure-mgmt-netapp/_meta.json +++ b/sdk/netapp/azure-mgmt-netapp/_meta.json @@ -1,11 +1,11 @@ { - "autorest": "3.8.4", + "autorest": "3.9.2", "use": [ - "@autorest/python@6.1.5", - "@autorest/modelerfour@4.23.5" + "@autorest/python@6.1.11", + "@autorest/modelerfour@4.24.3" ], - "commit": "0507c3d410681049bb5cd9545b49a7578a91d3d0", + "commit": "d1eee5499dbf9281debdc90c4f4cbc7470fb8d6d", "repository_url": "https://github.com/Azure/azure-rest-api-specs", - "autorest_command": "autorest specification/netapp/resource-manager/readme.md --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.1.5 --use=@autorest/modelerfour@4.23.5 --version=3.8.4 --version-tolerant=False", + "autorest_command": "autorest specification/netapp/resource-manager/readme.md --python --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --use=@autorest/python@6.1.11 --use=@autorest/modelerfour@4.24.3 --version=3.9.2 --version-tolerant=False", "readme": "specification/netapp/resource-manager/readme.md" } \ No newline at end of file diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_version.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_version.py index b77ac9246082..eef1380c4107 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_version.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_version.py @@ -6,4 +6,4 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -VERSION = "9.0.0" +VERSION = "9.0.1" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_account_backups_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_account_backups_operations.py index b4b1867676c5..d53faee406ae 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_account_backups_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_account_backups_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar, Union, cast -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -101,10 +101,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_accounts_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_accounts_operations.py index 9a8b30077946..223e07fe6765 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_accounts_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_accounts_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -103,10 +103,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" @@ -180,10 +187,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" @@ -830,14 +844,16 @@ async def _renew_credentials_initial( # pylint: disable=inconsistent-return-sta error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} - _params = kwargs.pop("params", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + api_version = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) # type: str cls = kwargs.pop("cls", None) # type: ClsType[None] request = build_renew_credentials_request( resource_group_name=resource_group_name, account_name=account_name, subscription_id=self._config.subscription_id, + api_version=api_version, template_url=self._renew_credentials_initial.metadata["url"], headers=_headers, params=_params, @@ -887,8 +903,9 @@ async def begin_renew_credentials( :raises ~azure.core.exceptions.HttpResponseError: """ _headers = kwargs.pop("headers", {}) or {} - _params = kwargs.pop("params", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + api_version = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) # type: str cls = kwargs.pop("cls", None) # type: ClsType[None] polling = kwargs.pop("polling", True) # type: Union[bool, AsyncPollingMethod] lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) @@ -897,6 +914,7 @@ async def begin_renew_credentials( raw_result = await self._renew_credentials_initial( # type: ignore resource_group_name=resource_group_name, account_name=account_name, + api_version=api_version, cls=lambda x, y, z: x, headers=_headers, params=_params, diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_backup_policies_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_backup_policies_operations.py index 6eab52f2e009..8c6052d03a42 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_backup_policies_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_backup_policies_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -107,10 +107,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_backups_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_backups_operations.py index c9bd9fe9e19f..e5fd5dbff7f0 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_backups_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_backups_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -253,10 +253,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_net_app_resource_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_net_app_resource_operations.py index b49ed7035ebc..25780c423089 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_net_app_resource_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_net_app_resource_operations.py @@ -60,7 +60,7 @@ async def check_name_availability( self, location: str, name: str, - type: Union[str, "_models.CheckNameResourceTypes"], + type: Union[str, _models.CheckNameResourceTypes], resource_group: str, **kwargs: Any ) -> _models.CheckAvailabilityResponse: @@ -209,7 +209,7 @@ async def check_quota_availability( self, location: str, name: str, - type: Union[str, "_models.CheckQuotaNameResourceTypes"], + type: Union[str, _models.CheckQuotaNameResourceTypes], resource_group: str, **kwargs: Any ) -> _models.CheckAvailabilityResponse: diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_net_app_resource_quota_limits_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_net_app_resource_quota_limits_operations.py index 70ceb498b599..5e328f05b4f5 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_net_app_resource_quota_limits_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_net_app_resource_quota_limits_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -98,10 +98,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_operations.py index 274c5658d0f2..7caaaa7f1c3b 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -91,10 +91,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_pools_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_pools_operations.py index f92a2211df6d..551914e6e283 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_pools_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_pools_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -107,10 +107,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_snapshot_policies_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_snapshot_policies_operations.py index 7cfd26f34e4b..da6d688e5144 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_snapshot_policies_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_snapshot_policies_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -108,10 +108,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_snapshots_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_snapshots_operations.py index 7e68c4e575d5..36d09d947bd6 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_snapshots_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_snapshots_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- import sys from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -122,10 +122,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_subvolumes_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_subvolumes_operations.py index 729f20451e33..7efa659359e6 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_subvolumes_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_subvolumes_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -116,10 +116,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_vaults_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_vaults_operations.py index d97c4c10f203..e8f7a4f2f039 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_vaults_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_vaults_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, Optional, TypeVar -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -98,10 +98,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volume_groups_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volume_groups_operations.py index 2bfa35cb4c5f..f902f2519014 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volume_groups_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volume_groups_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -108,10 +108,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volume_quota_rules_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volume_quota_rules_operations.py index bb006b3f87a2..267600bbf9d1 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volume_quota_rules_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volume_quota_rules_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -115,10 +115,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volumes_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volumes_operations.py index ecbbb5528e98..fe4a0b6c14e3 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volumes_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/aio/operations/_volumes_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, AsyncIterable, Callable, Dict, IO, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.async_paging import AsyncItemPaged, AsyncList from azure.core.exceptions import ( @@ -126,10 +126,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" @@ -1815,10 +1822,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_account_backups_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_account_backups_operations.py index eb64257a5eb3..423ea9d7ef45 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_account_backups_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_account_backups_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, Iterable, Optional, TypeVar, Union, cast -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -196,10 +196,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_accounts_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_accounts_operations.py index 019a6afd9836..edc25dc835d8 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_accounts_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_accounts_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -225,6 +225,9 @@ def build_update_request( def build_renew_credentials_request( resource_group_name: str, account_name: str, subscription_id: str, **kwargs: Any ) -> HttpRequest: + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + + api_version = kwargs.pop("api_version", _params.pop("api-version", "2022-05-01")) # type: str # Construct URL _url = kwargs.pop( "template_url", @@ -240,7 +243,10 @@ def build_renew_credentials_request( _url = _format_url_section(_url, **path_format_arguments) - return HttpRequest(method="POST", url=_url, **kwargs) + # Construct parameters + _params["api-version"] = _SERIALIZER.query("api_version", api_version, "str") + + return HttpRequest(method="POST", url=_url, params=_params, **kwargs) class AccountsOperations: @@ -302,10 +308,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" @@ -379,10 +392,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" @@ -1028,14 +1048,16 @@ def _renew_credentials_initial( # pylint: disable=inconsistent-return-statement error_map.update(kwargs.pop("error_map", {}) or {}) _headers = kwargs.pop("headers", {}) or {} - _params = kwargs.pop("params", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + api_version = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) # type: str cls = kwargs.pop("cls", None) # type: ClsType[None] request = build_renew_credentials_request( resource_group_name=resource_group_name, account_name=account_name, subscription_id=self._config.subscription_id, + api_version=api_version, template_url=self._renew_credentials_initial.metadata["url"], headers=_headers, params=_params, @@ -1083,8 +1105,9 @@ def begin_renew_credentials(self, resource_group_name: str, account_name: str, * :raises ~azure.core.exceptions.HttpResponseError: """ _headers = kwargs.pop("headers", {}) or {} - _params = kwargs.pop("params", {}) or {} + _params = case_insensitive_dict(kwargs.pop("params", {}) or {}) + api_version = kwargs.pop("api_version", _params.pop("api-version", self._config.api_version)) # type: str cls = kwargs.pop("cls", None) # type: ClsType[None] polling = kwargs.pop("polling", True) # type: Union[bool, PollingMethod] lro_delay = kwargs.pop("polling_interval", self._config.polling_interval) @@ -1093,6 +1116,7 @@ def begin_renew_credentials(self, resource_group_name: str, account_name: str, * raw_result = self._renew_credentials_initial( # type: ignore resource_group_name=resource_group_name, account_name=account_name, + api_version=api_version, cls=lambda x, y, z: x, headers=_headers, params=_params, diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_backup_policies_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_backup_policies_operations.py index 85fda201e47c..d9aa843bb97a 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_backup_policies_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_backup_policies_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -270,10 +270,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_backups_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_backups_operations.py index 43ff1c117079..8bed9a391bfa 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_backups_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_backups_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -548,10 +548,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_net_app_resource_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_net_app_resource_operations.py index 6aa08bdcd258..78f431b2a56a 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_net_app_resource_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_net_app_resource_operations.py @@ -178,7 +178,7 @@ def check_name_availability( self, location: str, name: str, - type: Union[str, "_models.CheckNameResourceTypes"], + type: Union[str, _models.CheckNameResourceTypes], resource_group: str, **kwargs: Any ) -> _models.CheckAvailabilityResponse: @@ -327,7 +327,7 @@ def check_quota_availability( self, location: str, name: str, - type: Union[str, "_models.CheckQuotaNameResourceTypes"], + type: Union[str, _models.CheckQuotaNameResourceTypes], resource_group: str, **kwargs: Any ) -> _models.CheckAvailabilityResponse: diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_net_app_resource_quota_limits_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_net_app_resource_quota_limits_operations.py index c447de3850cd..e39c8ec13a92 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_net_app_resource_quota_limits_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_net_app_resource_quota_limits_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, Iterable, Optional, TypeVar -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -155,10 +155,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_operations.py index 19e311d5004b..50042e0c23b2 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, Iterable, Optional, TypeVar -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -113,10 +113,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_pools_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_pools_operations.py index fb62a7e11e57..86d277e3fbed 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_pools_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_pools_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -278,10 +278,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_snapshot_policies_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_snapshot_policies_operations.py index a5477e8b6e39..d3ae97176a44 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_snapshot_policies_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_snapshot_policies_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -302,10 +302,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_snapshots_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_snapshots_operations.py index cc33eb1dbd23..4f280d392f6d 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_snapshots_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_snapshots_operations.py @@ -8,7 +8,7 @@ # -------------------------------------------------------------------------- import sys from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -388,10 +388,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_subvolumes_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_subvolumes_operations.py index 1e52454b42b3..d156bbcfda67 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_subvolumes_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_subvolumes_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -415,10 +415,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_vaults_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_vaults_operations.py index 792bbab8f386..d0084a732bc0 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_vaults_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_vaults_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, Iterable, Optional, TypeVar -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -132,10 +132,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volume_groups_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volume_groups_operations.py index 30ef64bd8e74..ded72e56a922 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volume_groups_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volume_groups_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -258,10 +258,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volume_quota_rules_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volume_quota_rules_operations.py index 9dc7208670b2..75c7055a6082 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volume_quota_rules_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volume_quota_rules_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -334,10 +334,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volumes_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volumes_operations.py index 4af435b0a0eb..e6cf816df31d 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volumes_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volumes_operations.py @@ -7,7 +7,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- from typing import Any, Callable, Dict, IO, Iterable, Optional, TypeVar, Union, cast, overload -from urllib.parse import parse_qs, urljoin, urlparse +import urllib.parse from azure.core.exceptions import ( ClientAuthenticationError, @@ -819,10 +819,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" @@ -2501,10 +2508,17 @@ def prepare_request(next_link=None): else: # make call to next link with the client's api-version - _parsed_next_link = urlparse(next_link) - _next_request_params = case_insensitive_dict(parse_qs(_parsed_next_link.query)) + _parsed_next_link = urllib.parse.urlparse(next_link) + _next_request_params = case_insensitive_dict( + { + key: [urllib.parse.quote(v) for v in value] + for key, value in urllib.parse.parse_qs(_parsed_next_link.query).items() + } + ) _next_request_params["api-version"] = self._config.api_version - request = HttpRequest("GET", urljoin(next_link, _parsed_next_link.path), params=_next_request_params) + request = HttpRequest( + "GET", urllib.parse.urljoin(next_link, _parsed_next_link.path), params=_next_request_params + ) request = _convert_request(request) request.url = self._client.format_url(request.url) # type: ignore request.method = "GET" diff --git a/sdk/netapp/azure-mgmt-netapp/dev_requirements.txt b/sdk/netapp/azure-mgmt-netapp/dev_requirements.txt index 1fafddc07520..77d774584dd2 100644 --- a/sdk/netapp/azure-mgmt-netapp/dev_requirements.txt +++ b/sdk/netapp/azure-mgmt-netapp/dev_requirements.txt @@ -1,4 +1,5 @@ -e ../../../tools/azure-sdk-tools -e ../../../tools/azure-devtools -e ../../../sdk/identity/azure-identity --e ../../network/azure-mgmt-network \ No newline at end of file +-e ../../network/azure-mgmt-network +-e ../../resources/azure-mgmt-resource \ No newline at end of file diff --git a/sdk/netapp/azure-mgmt-netapp/tests/conftest.py b/sdk/netapp/azure-mgmt-netapp/tests/conftest.py index e7981d635f56..3f47c0c4c6fd 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/conftest.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/conftest.py @@ -24,6 +24,7 @@ # # -------------------------------------------------------------------------- import os +import urllib.parse import platform import pytest import sys @@ -31,7 +32,7 @@ from dotenv import load_dotenv from devtools_testutils import test_proxy, add_general_regex_sanitizer -from devtools_testutils import add_header_regex_sanitizer, add_body_key_sanitizer +from devtools_testutils import add_header_regex_sanitizer, add_general_string_sanitizer, add_body_key_sanitizer # Ignore async tests for Python < 3.5 collect_ignore_glob = [] @@ -49,7 +50,7 @@ def add_sanitizers(test_proxy): add_general_regex_sanitizer(regex=subscription_id, value="00000000-0000-0000-0000-000000000000") add_general_regex_sanitizer(regex=tenant_id, value="00000000-0000-0000-0000-000000000000") add_general_regex_sanitizer(regex=client_id, value="00000000-0000-0000-0000-000000000000") - add_general_regex_sanitizer(regex=client_secret, value="00000000-0000-0000-0000-000000000000") + add_general_string_sanitizer(value="00000000-0000-0000-0000-000000000000", target=urllib.parse.quote(client_secret)) add_header_regex_sanitizer(key="Set-Cookie", value="[set-cookie;]") add_header_regex_sanitizer(key="Cookie", value="cookie;") add_body_key_sanitizer(json_path="$..access_token", value="access_token") \ No newline at end of file diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_create_delete_account.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_create_delete_account.json index 1f01878c61a0..025628a58107 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_create_delete_account.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_create_delete_account.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:03:51 GMT", + "Date": "Tue, 25 Oct 2022 08:59:16 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:03:51 GMT", + "Date": "Tue, 25 Oct 2022 08:59:16 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "d35a229c-1470-4c03-8c2c-56e18f7119a9", + "client-request-id": "609ae794-a43e-4fa6-83b1-0e656989fb79", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "d35a229c-1470-4c03-8c2c-56e18f7119a9", + "client-request-id": "609ae794-a43e-4fa6-83b1-0e656989fb79", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:03:51 GMT", + "Date": "Tue, 25 Oct 2022 08:59:16 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -219,27 +219,69 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:03:52 GMT", + "Date": "Tue, 25 Oct 2022 08:59:19 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82aadd36-7ca8-45e0-89e8-cfcb6d721dd7", + "x-ms-correlation-request-id": "2b818fe2-74b6-4c9b-b4a5-5c6c5929f684", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140353Z:82aadd36-7ca8-45e0-89e8-cfcb6d721dd7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085919Z:2b818fe2-74b6-4c9b-b4a5-5c6c5929f684", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": [] + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434", + "name": "sdk-py-tests-acc-1-c6cd2434", + "type": "Microsoft.NetApp/netAppAccounts", + "etag": "W/\u0022datetime\u00272022-10-23T12%3A49%3A47.1721464Z\u0027\u0022", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded", + "activeDirectories": [ + { + "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b", + "username": "sdkuser", + "password": "****************", + "domain": "sdkdomain", + "dns": "192.0.2.2", + "status": "Created", + "smbServerName": "SDKSMBSeNa", + "organizationalUnit": "CN=Computers", + "aesEncryption": false, + "ldapSigning": false, + "ldapOverTLS": false, + "allowLocalNfsUsersWithLdap": false, + "encryptDCConnections": false, + "ldapSearchScope": {} + } + ], + "encryption": { + "keySource": "Microsoft.NetApp" + } + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-21T12:39:31.9750554Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-23T12:49:44.8645107Z" + } + } + ] } }, { @@ -251,37 +293,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1eed753c-379b-40e3-b512-9fad4223521a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69ca757b-3235-45ec-a8cf-3b16a9395c10?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:04:00 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A03%3A59.6773239Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:26 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A25.3891812Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af813640-010f-4feb-96bc-49b44f9c6b58", + "x-ms-correlation-request-id": "3b7f4c4b-5b32-4eed-bbf5-f9a69e973b0a", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140401Z:af813640-010f-4feb-96bc-49b44f9c6b58", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085926Z:3b7f4c4b-5b32-4eed-bbf5-f9a69e973b0a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6", "name": "sdk-py-tests-acc-1-42c027f6", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A03%3A59.6773239Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A25.3891812Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:03:55.5717047Z" + "CreatedOnDate": "2022-10-25T08:59:22.3303023Z" }, "properties": { "provisioningState": "Creating" @@ -289,21 +331,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:03:58.7605553Z", + "createdAt": "2022-10-25T08:59:25.1935353Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:03:58.7605553Z" + "lastModifiedAt": "2022-10-25T08:59:25.1935353Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1eed753c-379b-40e3-b512-9fad4223521a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69ca757b-3235-45ec-a8cf-3b16a9395c10?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -311,7 +353,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:04:31 GMT", + "Date": "Tue, 25 Oct 2022 08:59:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -319,17 +361,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26c09c52-2f79-4832-b1bd-b436e994b804", + "x-ms-correlation-request-id": "41d352aa-23b8-4fec-a672-bcab4d5b4585", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140431Z:26c09c52-2f79-4832-b1bd-b436e994b804", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085927Z:41d352aa-23b8-4fec-a672-bcab4d5b4585", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1eed753c-379b-40e3-b512-9fad4223521a", - "name": "1eed753c-379b-40e3-b512-9fad4223521a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69ca757b-3235-45ec-a8cf-3b16a9395c10", + "name": "69ca757b-3235-45ec-a8cf-3b16a9395c10", "status": "Succeeded", - "startTime": "2022-09-16T14:03:59.7038917Z", - "endTime": "2022-09-16T14:03:59.7664066Z", + "startTime": "2022-10-25T08:59:25.3899723Z", + "endTime": "2022-10-25T08:59:25.4681514Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6" @@ -343,7 +385,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -351,8 +393,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:04:32 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A03%3A59.7801433Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:27 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A25.4590067Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -360,19 +402,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d0cc1b6-aa0b-4bae-b910-41bf65432b0e", + "x-ms-correlation-request-id": "f2158e25-f753-484f-918e-b3c4692235dc", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140432Z:5d0cc1b6-aa0b-4bae-b910-41bf65432b0e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085927Z:f2158e25-f753-484f-918e-b3c4692235dc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6", "name": "sdk-py-tests-acc-1-42c027f6", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A03%3A59.7801433Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A25.4590067Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:03:55.5717047Z" + "CreatedOnDate": "2022-10-25T08:59:22.3303023Z" }, "properties": { "activeDirectories": [ @@ -401,10 +443,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:03:58.7605553Z", + "createdAt": "2022-10-25T08:59:25.1935353Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:03:58.7605553Z" + "lastModifiedAt": "2022-10-25T08:59:25.1935353Z" } } }, @@ -415,7 +457,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -423,7 +465,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:06:03 GMT", + "Date": "Tue, 25 Oct 2022 08:59:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -431,9 +473,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b83ed7dd-eada-4774-aaf1-9fe279da2ed4", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140604Z:b83ed7dd-eada-4774-aaf1-9fe279da2ed4", + "x-ms-correlation-request-id": "77e5e2bc-fa8e-4f57-bd54-7e624d057ec1", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085927Z:77e5e2bc-fa8e-4f57-bd54-7e624d057ec1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -442,10 +484,10 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6", "name": "sdk-py-tests-acc-1-42c027f6", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A03%3A59.7801433Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A25.4590067Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:03:55.5717047Z" + "CreatedOnDate": "2022-10-25T08:59:22.3303023Z" }, "properties": { "activeDirectories": [ @@ -474,10 +516,49 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:03:58.7605553Z", + "createdAt": "2022-10-25T08:59:25.1935353Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:03:58.7605553Z" + "lastModifiedAt": "2022-10-25T08:59:25.1935353Z" + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434", + "name": "sdk-py-tests-acc-1-c6cd2434", + "type": "Microsoft.NetApp/netAppAccounts", + "etag": "W/\u0022datetime\u00272022-10-23T12%3A49%3A47.1721464Z\u0027\u0022", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded", + "activeDirectories": [ + { + "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b", + "username": "sdkuser", + "password": "****************", + "domain": "sdkdomain", + "dns": "192.0.2.2", + "status": "Created", + "smbServerName": "SDKSMBSeNa", + "organizationalUnit": "CN=Computers", + "aesEncryption": false, + "ldapSigning": false, + "ldapOverTLS": false, + "allowLocalNfsUsersWithLdap": false, + "encryptDCConnections": false, + "ldapSearchScope": {} + } + ], + "encryption": { + "keySource": "Microsoft.NetApp" + } + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-21T12:39:31.9750554Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-23T12:49:44.8645107Z" } } ] @@ -491,36 +572,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/92289745-957f-4721-a0d6-4657ee7eda3b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb7abb3a-f60b-48fd-be6a-d18f2588e3d1?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:06:07 GMT", + "Date": "Tue, 25 Oct 2022 08:59:27 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/92289745-957f-4721-a0d6-4657ee7eda3b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb7abb3a-f60b-48fd-be6a-d18f2588e3d1?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c11763c4-78a3-4f90-b56a-04db2b5e2cea", + "x-ms-correlation-request-id": "ec4d9366-c1b3-49fa-adb7-edd33d9e1b31", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140608Z:c11763c4-78a3-4f90-b56a-04db2b5e2cea", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085928Z:ec4d9366-c1b3-49fa-adb7-edd33d9e1b31", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/92289745-957f-4721-a0d6-4657ee7eda3b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb7abb3a-f60b-48fd-be6a-d18f2588e3d1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -528,7 +609,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:06:38 GMT", + "Date": "Tue, 25 Oct 2022 08:59:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -536,17 +617,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c0e8852-067e-4c2c-bcd2-521fb179f970", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140639Z:7c0e8852-067e-4c2c-bcd2-521fb179f970", + "x-ms-correlation-request-id": "d09ed7e7-67ba-401b-bf46-d38d7dbcebcd", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085928Z:d09ed7e7-67ba-401b-bf46-d38d7dbcebcd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/92289745-957f-4721-a0d6-4657ee7eda3b", - "name": "92289745-957f-4721-a0d6-4657ee7eda3b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb7abb3a-f60b-48fd-be6a-d18f2588e3d1", + "name": "fb7abb3a-f60b-48fd-be6a-d18f2588e3d1", "status": "Succeeded", - "startTime": "2022-09-16T14:06:08.6946194Z", - "endTime": "2022-09-16T14:06:08.7257961Z", + "startTime": "2022-10-25T08:59:28.3573682Z", + "endTime": "2022-10-25T08:59:28.4041682Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6" @@ -554,13 +635,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/92289745-957f-4721-a0d6-4657ee7eda3b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb7abb3a-f60b-48fd-be6a-d18f2588e3d1?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -568,7 +649,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:06:38 GMT", + "Date": "Tue, 25 Oct 2022 08:59:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -576,19 +657,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bceee7ad-b09d-4d88-b61f-0b32037e3989", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140639Z:bceee7ad-b09d-4d88-b61f-0b32037e3989", + "x-ms-correlation-request-id": "add4905c-9d06-4201-99bc-4dad25885daf", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085928Z:add4905c-9d06-4201-99bc-4dad25885daf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6", "name": "sdk-py-tests-acc-1-42c027f6", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A06%3A08.702932Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A28.3503554Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:03:55.5717047Z" + "CreatedOnDate": "2022-10-25T08:59:22.3303023Z" }, "properties": { "encryption": { @@ -599,10 +680,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:03:58.7605553Z", + "createdAt": "2022-10-25T08:59:25.1935353Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:03:58.7605553Z" + "lastModifiedAt": "2022-10-25T08:59:25.1935353Z" } } }, @@ -613,27 +694,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:06:39 GMT", + "Date": "Tue, 25 Oct 2022 08:59:28 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52bd3c12-0414-40d9-84a2-c7465b329a4e", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140639Z:52bd3c12-0414-40d9-84a2-c7465b329a4e" + "x-ms-correlation-request-id": "b05a3844-ce10-42c4-8aca-eac24695246f", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085929Z:b05a3844-ce10-42c4-8aca-eac24695246f", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-42c027f6\u0027 is not found." } } }, @@ -644,27 +727,69 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:06:43 GMT", + "Date": "Tue, 25 Oct 2022 08:59:29 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf133932-5c03-4d92-a286-1a8ab742ee28", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140643Z:bf133932-5c03-4d92-a286-1a8ab742ee28" + "x-ms-correlation-request-id": "502243d6-879b-4bf7-a6a0-838e743d3793", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085929Z:502243d6-879b-4bf7-a6a0-838e743d3793", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": [] + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434", + "name": "sdk-py-tests-acc-1-c6cd2434", + "type": "Microsoft.NetApp/netAppAccounts", + "etag": "W/\u0022datetime\u00272022-10-23T12%3A49%3A47.1721464Z\u0027\u0022", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded", + "activeDirectories": [ + { + "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b", + "username": "sdkuser", + "password": "****************", + "domain": "sdkdomain", + "dns": "192.0.2.2", + "status": "Created", + "smbServerName": "SDKSMBSeNa", + "organizationalUnit": "CN=Computers", + "aesEncryption": false, + "ldapSigning": false, + "ldapOverTLS": false, + "allowLocalNfsUsersWithLdap": false, + "encryptDCConnections": false, + "ldapSearchScope": {} + } + ], + "encryption": { + "keySource": "Microsoft.NetApp" + } + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-21T12:39:31.9750554Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-23T12:49:44.8645107Z" + } + } + ] } } ], diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_get_account_by_name.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_get_account_by_name.json index 28ccfef0767c..6f79fa239a8f 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_get_account_by_name.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_get_account_by_name.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:09:42 GMT", + "Date": "Tue, 25 Oct 2022 08:59:41 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:09:42 GMT", + "Date": "Tue, 25 Oct 2022 08:59:41 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "6b8f9f67-0eb4-49fe-9853-fa3fd35320e2", + "client-request-id": "e71da3e6-7fa0-49cf-8a50-f38f7a9cd414", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "6b8f9f67-0eb4-49fe-9853-fa3fd35320e2", + "client-request-id": "e71da3e6-7fa0-49cf-8a50-f38f7a9cd414", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:09:42 GMT", + "Date": "Tue, 25 Oct 2022 08:59:41 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b60eb55-7597-4064-a2b3-ae6c161d837b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3fb587a5-25af-406c-960b-f91ac0a2b1bb?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:09:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A09%3A47.2416832Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:44 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A44.1385165Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d99a255-7825-4bf4-8985-fe24ecf95e45", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140948Z:5d99a255-7825-4bf4-8985-fe24ecf95e45", + "x-ms-correlation-request-id": "fa1a17a9-e88e-45f1-9b79-6728ee50cf3e", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085945Z:fa1a17a9-e88e-45f1-9b79-6728ee50cf3e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a", "name": "sdk-py-tests-acc-1-f2b1272a", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A09%3A47.2416832Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A44.1385165Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:09:44.0876134Z" + "CreatedOnDate": "2022-10-25T08:59:43.0024992Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:09:46.3373578Z", + "createdAt": "2022-10-25T08:59:43.9753015Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:09:46.3373578Z" + "lastModifiedAt": "2022-10-25T08:59:43.9753015Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b60eb55-7597-4064-a2b3-ae6c161d837b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3fb587a5-25af-406c-960b-f91ac0a2b1bb?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:10:18 GMT", + "Date": "Tue, 25 Oct 2022 08:59:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6470ad1-d374-4c37-bc27-fdb314e262a9", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141018Z:a6470ad1-d374-4c37-bc27-fdb314e262a9", + "x-ms-correlation-request-id": "d93b0e61-c38a-4cb6-b61e-cb4bc590d012", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085945Z:d93b0e61-c38a-4cb6-b61e-cb4bc590d012", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b60eb55-7597-4064-a2b3-ae6c161d837b", - "name": "2b60eb55-7597-4064-a2b3-ae6c161d837b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3fb587a5-25af-406c-960b-f91ac0a2b1bb", + "name": "3fb587a5-25af-406c-960b-f91ac0a2b1bb", "status": "Succeeded", - "startTime": "2022-09-16T14:09:47.2491353Z", - "endTime": "2022-09-16T14:09:47.280404Z", + "startTime": "2022-10-25T08:59:44.1457995Z", + "endTime": "2022-10-25T08:59:44.1926225Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:10:19 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A09%3A47.2925096Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:45 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A44.195304Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9dc19ad-2a73-42b4-b789-7ca9e3819a58", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141019Z:d9dc19ad-2a73-42b4-b789-7ca9e3819a58", + "x-ms-correlation-request-id": "12c29215-4667-4fdb-8628-cb4eca1b123d", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085945Z:12c29215-4667-4fdb-8628-cb4eca1b123d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a", "name": "sdk-py-tests-acc-1-f2b1272a", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A09%3A47.2925096Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A44.195304Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:09:44.0876134Z" + "CreatedOnDate": "2022-10-25T08:59:43.0024992Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:09:46.3373578Z", + "createdAt": "2022-10-25T08:59:43.9753015Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:09:46.3373578Z" + "lastModifiedAt": "2022-10-25T08:59:43.9753015Z" } } }, @@ -385,7 +385,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -393,8 +393,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:10:19 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A09%3A47.2925096Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:45 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A44.195304Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -402,19 +402,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93e623c3-d8a3-48a7-ba9d-7b389fec5385", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141019Z:93e623c3-d8a3-48a7-ba9d-7b389fec5385", + "x-ms-correlation-request-id": "a55f8973-4a6b-4be9-aa8f-7fd6f29c5756", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085946Z:a55f8973-4a6b-4be9-aa8f-7fd6f29c5756", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a", "name": "sdk-py-tests-acc-1-f2b1272a", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A09%3A47.2925096Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A44.195304Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:09:44.0876134Z" + "CreatedOnDate": "2022-10-25T08:59:43.0024992Z" }, "properties": { "activeDirectories": [ @@ -443,10 +443,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:09:46.3373578Z", + "createdAt": "2022-10-25T08:59:43.9753015Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:09:46.3373578Z" + "lastModifiedAt": "2022-10-25T08:59:43.9753015Z" } } }, @@ -458,36 +458,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5d006bf-6a97-4a86-a849-207327e87e21?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9f847d9-c1c0-48c4-9cf1-ceea8fa5ac0b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:10:20 GMT", + "Date": "Tue, 25 Oct 2022 08:59:46 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5d006bf-6a97-4a86-a849-207327e87e21?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9f847d9-c1c0-48c4-9cf1-ceea8fa5ac0b?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96b9c4c8-5179-409f-8aef-ce9cb649cf21", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141020Z:96b9c4c8-5179-409f-8aef-ce9cb649cf21", + "x-ms-correlation-request-id": "98a319f0-874b-41fa-9f0e-b0275a53f983", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085947Z:98a319f0-874b-41fa-9f0e-b0275a53f983", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5d006bf-6a97-4a86-a849-207327e87e21?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9f847d9-c1c0-48c4-9cf1-ceea8fa5ac0b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -495,7 +495,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:10:50 GMT", + "Date": "Tue, 25 Oct 2022 08:59:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -503,17 +503,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b3f4909-1352-4b46-b3a7-6f66f4688a39", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141050Z:5b3f4909-1352-4b46-b3a7-6f66f4688a39", + "x-ms-correlation-request-id": "37378825-838f-4542-807b-32a0f573c437", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085947Z:37378825-838f-4542-807b-32a0f573c437", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5d006bf-6a97-4a86-a849-207327e87e21", - "name": "e5d006bf-6a97-4a86-a849-207327e87e21", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9f847d9-c1c0-48c4-9cf1-ceea8fa5ac0b", + "name": "f9f847d9-c1c0-48c4-9cf1-ceea8fa5ac0b", "status": "Succeeded", - "startTime": "2022-09-16T14:10:20.2664142Z", - "endTime": "2022-09-16T14:10:20.3133302Z", + "startTime": "2022-10-25T08:59:46.8649181Z", + "endTime": "2022-10-25T08:59:46.9274257Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a" @@ -521,13 +521,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5d006bf-6a97-4a86-a849-207327e87e21?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9f847d9-c1c0-48c4-9cf1-ceea8fa5ac0b?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -535,7 +535,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:10:50 GMT", + "Date": "Tue, 25 Oct 2022 08:59:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -543,19 +543,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b7834d5-c003-487a-836a-4f5d10032e28", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141051Z:6b7834d5-c003-487a-836a-4f5d10032e28", + "x-ms-correlation-request-id": "b3a16721-7f1b-4329-8c20-1105309dd328", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085947Z:b3a16721-7f1b-4329-8c20-1105309dd328", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a", "name": "sdk-py-tests-acc-1-f2b1272a", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A10%3A20.2819754Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A46.8637807Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:09:44.0876134Z" + "CreatedOnDate": "2022-10-25T08:59:43.0024992Z" }, "properties": { "encryption": { @@ -566,10 +566,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:09:46.3373578Z", + "createdAt": "2022-10-25T08:59:43.9753015Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:09:46.3373578Z" + "lastModifiedAt": "2022-10-25T08:59:43.9753015Z" } } }, @@ -580,27 +580,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:10:50 GMT", + "Date": "Tue, 25 Oct 2022 08:59:47 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0ff615f-ac02-4cd9-8e3f-9b7435b786e1", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141051Z:f0ff615f-ac02-4cd9-8e3f-9b7435b786e1" + "x-ms-correlation-request-id": "47fa28c9-600d-4f7c-bcc1-a33ae85fcb5c", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085947Z:47fa28c9-600d-4f7c-bcc1-a33ae85fcb5c", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-f2b1272a\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_list_accounts.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_list_accounts.json index 33b532effadf..846a4fbc6285 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_list_accounts.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_list_accounts.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:07:11 GMT", + "Date": "Tue, 25 Oct 2022 08:59:29 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13734.8 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:07:11 GMT", + "Date": "Tue, 25 Oct 2022 08:59:29 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "3af678c3-6ba3-4529-a135-684a6fc1b676", + "client-request-id": "dcbc3cfa-86e2-4c9e-a84d-648ee6e6272b", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "3af678c3-6ba3-4529-a135-684a6fc1b676", + "client-request-id": "dcbc3cfa-86e2-4c9e-a84d-648ee6e6272b", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:07:12 GMT", + "Date": "Tue, 25 Oct 2022 08:59:30 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -219,27 +219,69 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", - "Content-Length": "12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:07:15 GMT", + "Date": "Tue, 25 Oct 2022 08:59:30 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39bf1fdd-9feb-47ae-8da7-609b5271c465", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140715Z:39bf1fdd-9feb-47ae-8da7-609b5271c465" + "x-ms-correlation-request-id": "37373b35-6800-46a0-bcb0-26369cc38af1", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085930Z:37373b35-6800-46a0-bcb0-26369cc38af1", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": [] + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434", + "name": "sdk-py-tests-acc-1-c6cd2434", + "type": "Microsoft.NetApp/netAppAccounts", + "etag": "W/\u0022datetime\u00272022-10-23T12%3A49%3A47.1721464Z\u0027\u0022", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded", + "activeDirectories": [ + { + "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b", + "username": "sdkuser", + "password": "****************", + "domain": "sdkdomain", + "dns": "192.0.2.2", + "status": "Created", + "smbServerName": "SDKSMBSeNa", + "organizationalUnit": "CN=Computers", + "aesEncryption": false, + "ldapSigning": false, + "ldapOverTLS": false, + "allowLocalNfsUsersWithLdap": false, + "encryptDCConnections": false, + "ldapSearchScope": {} + } + ], + "encryption": { + "keySource": "Microsoft.NetApp" + } + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-21T12:39:31.9750554Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-23T12:49:44.8645107Z" + } + } + ] } }, { @@ -251,37 +293,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf54e515-8812-4760-a8ad-507e16be43ac?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/045393c1-c17b-4efe-a809-164bace2745a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "702", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:07:21 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A07%3A20.2772713Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:33 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A32.8179566Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f600ad25-b71f-4bb3-b9bd-e76177f4fe91", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140722Z:f600ad25-b71f-4bb3-b9bd-e76177f4fe91", + "x-ms-correlation-request-id": "b81efa4e-b3cb-4c4b-a5b9-5ec10ea88cde", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085933Z:b81efa4e-b3cb-4c4b-a5b9-5ec10ea88cde", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df", "name": "sdk-py-tests-acc-1-af624df", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A07%3A20.2772713Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A32.8179566Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:07:17.4262617Z" + "CreatedOnDate": "2022-10-25T08:59:31.7079792Z" }, "properties": { "provisioningState": "Creating" @@ -289,21 +331,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:07:19.349877Z", + "createdAt": "2022-10-25T08:59:32.681668Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:07:19.349877Z" + "lastModifiedAt": "2022-10-25T08:59:32.681668Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf54e515-8812-4760-a8ad-507e16be43ac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/045393c1-c17b-4efe-a809-164bace2745a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -311,7 +353,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:07:51 GMT", + "Date": "Tue, 25 Oct 2022 08:59:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -319,17 +361,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91cc32b7-6fee-44fb-a887-fdadd6df73ac", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140752Z:91cc32b7-6fee-44fb-a887-fdadd6df73ac", + "x-ms-correlation-request-id": "b20d0690-3575-4f45-9ab7-f3fc83029271", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085934Z:b20d0690-3575-4f45-9ab7-f3fc83029271", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf54e515-8812-4760-a8ad-507e16be43ac", - "name": "cf54e515-8812-4760-a8ad-507e16be43ac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/045393c1-c17b-4efe-a809-164bace2745a", + "name": "045393c1-c17b-4efe-a809-164bace2745a", "status": "Succeeded", - "startTime": "2022-09-16T14:07:20.2809069Z", - "endTime": "2022-09-16T14:07:20.327787Z", + "startTime": "2022-10-25T08:59:32.8152171Z", + "endTime": "2022-10-25T08:59:32.8777827Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df" @@ -343,7 +385,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -351,8 +393,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:07:52 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A07%3A20.3399525Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:33 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A32.8797682Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -360,19 +402,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d65fe490-c659-4756-8dd7-c570f2f81ae5", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140753Z:d65fe490-c659-4756-8dd7-c570f2f81ae5", + "x-ms-correlation-request-id": "293802f5-d45b-46f0-ab1d-6206cebe15ca", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085934Z:293802f5-d45b-46f0-ab1d-6206cebe15ca", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df", "name": "sdk-py-tests-acc-1-af624df", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A07%3A20.3399525Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A32.8797682Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:07:17.4262617Z" + "CreatedOnDate": "2022-10-25T08:59:31.7079792Z" }, "properties": { "activeDirectories": [ @@ -401,10 +443,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:07:19.349877Z", + "createdAt": "2022-10-25T08:59:32.681668Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:07:19.349877Z" + "lastModifiedAt": "2022-10-25T08:59:32.681668Z" } } }, @@ -417,37 +459,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae555668-f2a5-4cbf-9750-e9d5987b8d02?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/29562a49-c267-48bc-a0b5-63e3b22c0dbb?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:07:54 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A07%3A54.5095092Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:36 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A35.9591697Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5eb1952-f428-46b4-85c2-23a08909740d", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140755Z:d5eb1952-f428-46b4-85c2-23a08909740d", + "x-ms-correlation-request-id": "e80034ee-7223-4eb3-8158-0bc18a21f91a", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085937Z:e80034ee-7223-4eb3-8158-0bc18a21f91a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df", "name": "sdk-py-tests-acc-2-af624df", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A07%3A54.5095092Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A35.9591697Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:07:53.2689839Z" + "CreatedOnDate": "2022-10-25T08:59:34.8279979Z" }, "properties": { "provisioningState": "Creating" @@ -455,21 +497,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:07:54.3657546Z", + "createdAt": "2022-10-25T08:59:35.7939294Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:07:54.3657546Z" + "lastModifiedAt": "2022-10-25T08:59:35.7939294Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae555668-f2a5-4cbf-9750-e9d5987b8d02?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/29562a49-c267-48bc-a0b5-63e3b22c0dbb?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -477,7 +519,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:08:25 GMT", + "Date": "Tue, 25 Oct 2022 08:59:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -485,17 +527,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c17f701-171d-4436-9c76-ce4f5898f22d", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140825Z:8c17f701-171d-4436-9c76-ce4f5898f22d", + "x-ms-correlation-request-id": "4c50286a-b43a-430b-b9e0-afbe456eed9c", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085937Z:4c50286a-b43a-430b-b9e0-afbe456eed9c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae555668-f2a5-4cbf-9750-e9d5987b8d02", - "name": "ae555668-f2a5-4cbf-9750-e9d5987b8d02", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/29562a49-c267-48bc-a0b5-63e3b22c0dbb", + "name": "29562a49-c267-48bc-a0b5-63e3b22c0dbb", "status": "Succeeded", - "startTime": "2022-09-16T14:07:54.4997337Z", - "endTime": "2022-09-16T14:07:54.5311158Z", + "startTime": "2022-10-25T08:59:35.9621402Z", + "endTime": "2022-10-25T08:59:36.0559048Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df" @@ -509,7 +551,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -517,8 +559,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:08:25 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A07%3A54.5425253Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:37 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A36.0589523Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -526,19 +568,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f197a2b8-2104-4cf4-ae5b-9f13adb29e5a", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140825Z:f197a2b8-2104-4cf4-ae5b-9f13adb29e5a", + "x-ms-correlation-request-id": "f628364c-32d8-4648-8ebe-ac76c35e7302", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085937Z:f628364c-32d8-4648-8ebe-ac76c35e7302", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df", "name": "sdk-py-tests-acc-2-af624df", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A07%3A54.5425253Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A36.0589523Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:07:53.2689839Z" + "CreatedOnDate": "2022-10-25T08:59:34.8279979Z" }, "properties": { "activeDirectories": [ @@ -567,10 +609,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:07:54.3657546Z", + "createdAt": "2022-10-25T08:59:35.7939294Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:07:54.3657546Z" + "lastModifiedAt": "2022-10-25T08:59:35.7939294Z" } } }, @@ -581,7 +623,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -589,7 +631,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:08:25 GMT", + "Date": "Tue, 25 Oct 2022 08:59:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -597,9 +639,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1929861-edb4-482c-a780-cd6f821aa8d2", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140826Z:f1929861-edb4-482c-a780-cd6f821aa8d2", + "x-ms-correlation-request-id": "d4ab8fad-e23e-450c-aae0-524a0ce5965e", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085937Z:d4ab8fad-e23e-450c-aae0-524a0ce5965e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -608,10 +650,10 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df", "name": "sdk-py-tests-acc-1-af624df", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A07%3A20.3399525Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A32.8797682Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:07:17.4262617Z" + "CreatedOnDate": "2022-10-25T08:59:31.7079792Z" }, "properties": { "activeDirectories": [ @@ -640,20 +682,59 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:07:19.349877Z", + "createdAt": "2022-10-25T08:59:32.681668Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:07:19.349877Z" + "lastModifiedAt": "2022-10-25T08:59:32.681668Z" + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434", + "name": "sdk-py-tests-acc-1-c6cd2434", + "type": "Microsoft.NetApp/netAppAccounts", + "etag": "W/\u0022datetime\u00272022-10-23T12%3A49%3A47.1721464Z\u0027\u0022", + "location": "westus2", + "properties": { + "provisioningState": "Succeeded", + "activeDirectories": [ + { + "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b", + "username": "sdkuser", + "password": "****************", + "domain": "sdkdomain", + "dns": "192.0.2.2", + "status": "Created", + "smbServerName": "SDKSMBSeNa", + "organizationalUnit": "CN=Computers", + "aesEncryption": false, + "ldapSigning": false, + "ldapOverTLS": false, + "allowLocalNfsUsersWithLdap": false, + "encryptDCConnections": false, + "ldapSearchScope": {} + } + ], + "encryption": { + "keySource": "Microsoft.NetApp" + } + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-21T12:39:31.9750554Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-23T12:49:44.8645107Z" } }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df", "name": "sdk-py-tests-acc-2-af624df", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A07%3A54.5425253Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A36.0589523Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:07:53.2689839Z" + "CreatedOnDate": "2022-10-25T08:59:34.8279979Z" }, "properties": { "activeDirectories": [ @@ -682,10 +763,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:07:54.3657546Z", + "createdAt": "2022-10-25T08:59:35.7939294Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:07:54.3657546Z" + "lastModifiedAt": "2022-10-25T08:59:35.7939294Z" } } ] @@ -699,36 +780,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/904e1cd1-6782-4405-ba05-0258cb184de1?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d043f639-ff28-4b63-8b05-7f8116cbb961?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:08:26 GMT", + "Date": "Tue, 25 Oct 2022 08:59:38 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/904e1cd1-6782-4405-ba05-0258cb184de1?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d043f639-ff28-4b63-8b05-7f8116cbb961?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c91093c-c13d-4642-a8c5-fe4be39c0143", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140826Z:6c91093c-c13d-4642-a8c5-fe4be39c0143", + "x-ms-correlation-request-id": "2012d4e5-0286-4ae1-a95f-0b4560c61bd1", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085938Z:2012d4e5-0286-4ae1-a95f-0b4560c61bd1", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/904e1cd1-6782-4405-ba05-0258cb184de1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d043f639-ff28-4b63-8b05-7f8116cbb961?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -736,7 +817,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:08:56 GMT", + "Date": "Tue, 25 Oct 2022 08:59:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -744,17 +825,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b36c8b1-5cbe-4ad8-8881-60bed2f7dda7", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140857Z:2b36c8b1-5cbe-4ad8-8881-60bed2f7dda7", + "x-ms-correlation-request-id": "c0d02936-4674-4bf9-8ac9-bba6968b60ff", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085938Z:c0d02936-4674-4bf9-8ac9-bba6968b60ff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/904e1cd1-6782-4405-ba05-0258cb184de1", - "name": "904e1cd1-6782-4405-ba05-0258cb184de1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d043f639-ff28-4b63-8b05-7f8116cbb961", + "name": "d043f639-ff28-4b63-8b05-7f8116cbb961", "status": "Succeeded", - "startTime": "2022-09-16T14:08:26.7742953Z", - "endTime": "2022-09-16T14:08:26.8055095Z", + "startTime": "2022-10-25T08:59:38.5876056Z", + "endTime": "2022-10-25T08:59:38.6501943Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df" @@ -762,13 +843,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/904e1cd1-6782-4405-ba05-0258cb184de1?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d043f639-ff28-4b63-8b05-7f8116cbb961?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -776,7 +857,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:08:56 GMT", + "Date": "Tue, 25 Oct 2022 08:59:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -784,19 +865,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e27d347-1639-488f-a462-6640698ef1e7", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140857Z:9e27d347-1639-488f-a462-6640698ef1e7", + "x-ms-correlation-request-id": "44196ab8-a5d7-47eb-a500-570134969dc4", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085939Z:44196ab8-a5d7-47eb-a500-570134969dc4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af624df", "name": "sdk-py-tests-acc-1-af624df", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A08%3A26.778319Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A38.589506Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:07:17.4262617Z" + "CreatedOnDate": "2022-10-25T08:59:31.7079792Z" }, "properties": { "encryption": { @@ -807,10 +888,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:07:19.349877Z", + "createdAt": "2022-10-25T08:59:32.681668Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:07:19.349877Z" + "lastModifiedAt": "2022-10-25T08:59:32.681668Z" } } }, @@ -821,7 +902,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -829,15 +910,15 @@ "Cache-Control": "no-cache", "Content-Length": "254", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:08:57 GMT", + "Date": "Tue, 25 Oct 2022 08:59:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1483ec44-23a4-4f70-9696-c403344e85ab", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140857Z:1483ec44-23a4-4f70-9696-c403344e85ab", + "x-ms-correlation-request-id": "c1f5bfd4-505a-40d5-8422-2722946a978a", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085939Z:c1f5bfd4-505a-40d5-8422-2722946a978a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -855,36 +936,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d54eff2d-bde5-447a-91f8-0eb7f3304e53?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4599f138-731d-4298-be9b-18445c680de7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:08:57 GMT", + "Date": "Tue, 25 Oct 2022 08:59:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d54eff2d-bde5-447a-91f8-0eb7f3304e53?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4599f138-731d-4298-be9b-18445c680de7?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc8f552e-2dee-4237-98b3-513941f65f54", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140858Z:fc8f552e-2dee-4237-98b3-513941f65f54", + "x-ms-correlation-request-id": "293a5ff9-14a8-4bdf-bdb0-1cf806df16f9", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085940Z:293a5ff9-14a8-4bdf-bdb0-1cf806df16f9", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d54eff2d-bde5-447a-91f8-0eb7f3304e53?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4599f138-731d-4298-be9b-18445c680de7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -892,7 +973,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:09:28 GMT", + "Date": "Tue, 25 Oct 2022 08:59:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -900,17 +981,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1984cc96-2b18-403a-adcd-1d0f5709970c", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140928Z:1984cc96-2b18-403a-adcd-1d0f5709970c", + "x-ms-correlation-request-id": "e14a7e70-dffc-4cf7-bd2f-4337a06fd607", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085940Z:e14a7e70-dffc-4cf7-bd2f-4337a06fd607", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d54eff2d-bde5-447a-91f8-0eb7f3304e53", - "name": "d54eff2d-bde5-447a-91f8-0eb7f3304e53", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4599f138-731d-4298-be9b-18445c680de7", + "name": "4599f138-731d-4298-be9b-18445c680de7", "status": "Succeeded", - "startTime": "2022-09-16T14:08:58.3309661Z", - "endTime": "2022-09-16T14:08:58.3934089Z", + "startTime": "2022-10-25T08:59:40.2026847Z", + "endTime": "2022-10-25T08:59:40.3121352Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df" @@ -918,13 +999,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d54eff2d-bde5-447a-91f8-0eb7f3304e53?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4599f138-731d-4298-be9b-18445c680de7?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -932,7 +1013,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:09:28 GMT", + "Date": "Tue, 25 Oct 2022 08:59:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -940,19 +1021,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82005c6c-b537-45dd-b040-619204ffd36d", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140928Z:82005c6c-b537-45dd-b040-619204ffd36d", + "x-ms-correlation-request-id": "cbb9b31c-6a1f-441b-8249-ef7de66efcbb", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085940Z:cbb9b31c-6a1f-441b-8249-ef7de66efcbb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df", "name": "sdk-py-tests-acc-2-af624df", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A08%3A58.3425506Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A40.2045831Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:07:53.2689839Z" + "CreatedOnDate": "2022-10-25T08:59:34.8279979Z" }, "properties": { "encryption": { @@ -963,10 +1044,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:07:54.3657546Z", + "createdAt": "2022-10-25T08:59:35.7939294Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:07:54.3657546Z" + "lastModifiedAt": "2022-10-25T08:59:35.7939294Z" } } }, @@ -977,27 +1058,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "253", + "Content-Length": "254", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:09:29 GMT", + "Date": "Tue, 25 Oct 2022 08:59:40 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd90a655-366e-4f35-a6c7-b364e02476c2", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T140929Z:bd90a655-366e-4f35-a6c7-b364e02476c2" + "x-ms-correlation-request-id": "0a8a81e8-4b90-456a-b186-9cc5e81d24e6", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085941Z:0a8a81e8-4b90-456a-b186-9cc5e81d24e6", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-af624df\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_patch_account.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_patch_account.json index 0015f649d6ea..6649f4d8cc6e 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_patch_account.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.pyTestNetAppAccounttest_patch_account.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:12:05 GMT", + "Date": "Tue, 25 Oct 2022 08:59:47 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13734.8 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:12:05 GMT", + "Date": "Tue, 25 Oct 2022 08:59:47 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "f531a85d-a8c3-4f6b-aefd-94d1e1934c8d", + "client-request-id": "de3b6757-667d-481a-b505-82d38fe99b59", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "f531a85d-a8c3-4f6b-aefd-94d1e1934c8d", + "client-request-id": "de3b6757-667d-481a-b505-82d38fe99b59", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:12:06 GMT", + "Date": "Tue, 25 Oct 2022 08:59:48 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13734.8 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c1bca1d4-9292-4740-99e6-ff4231f3f629?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6f80cf37-3a57-4cc4-a5c3-0428e219820d?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "704", + "Content-Length": "702", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:12:12 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A12%3A11.4980594Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:50 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A50.44293Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31b465ab-e4a4-4576-8851-48fe409c65af", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141212Z:31b465ab-e4a4-4576-8851-48fe409c65af", + "x-ms-correlation-request-id": "9d583e65-ece3-4fa7-a1a6-7fb4c5537ed0", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085951Z:9d583e65-ece3-4fa7-a1a6-7fb4c5537ed0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0", "name": "sdk-py-tests-acc-1-93b24c0", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A12%3A11.4980594Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A50.44293Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:12:08.7364941Z" + "CreatedOnDate": "2022-10-25T08:59:49.4739455Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:12:10.6081213Z", + "createdAt": "2022-10-25T08:59:50.3072028Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:12:10.6081213Z" + "lastModifiedAt": "2022-10-25T08:59:50.3072028Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c1bca1d4-9292-4740-99e6-ff4231f3f629?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6f80cf37-3a57-4cc4-a5c3-0428e219820d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:12:42 GMT", + "Date": "Tue, 25 Oct 2022 08:59:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15dd8a27-0e6a-42a8-b7a6-5a915bec8ab9", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141243Z:15dd8a27-0e6a-42a8-b7a6-5a915bec8ab9", + "x-ms-correlation-request-id": "2e6f337a-7c41-4d8a-95bb-90606dd87125", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085951Z:2e6f337a-7c41-4d8a-95bb-90606dd87125", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c1bca1d4-9292-4740-99e6-ff4231f3f629", - "name": "c1bca1d4-9292-4740-99e6-ff4231f3f629", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6f80cf37-3a57-4cc4-a5c3-0428e219820d", + "name": "6f80cf37-3a57-4cc4-a5c3-0428e219820d", "status": "Succeeded", - "startTime": "2022-09-16T14:12:11.5032079Z", - "endTime": "2022-09-16T14:12:11.5188278Z", + "startTime": "2022-10-25T08:59:50.4448134Z", + "endTime": "2022-10-25T08:59:50.4760689Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:12:42 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A12%3A11.5311329Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:51 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A50.4787148Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b33d044c-8b6b-45de-bfc4-5ed21ba2dbd3", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141243Z:b33d044c-8b6b-45de-bfc4-5ed21ba2dbd3", + "x-ms-correlation-request-id": "37a72707-2930-4596-b041-ffca2ea0670e", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085952Z:37a72707-2930-4596-b041-ffca2ea0670e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0", "name": "sdk-py-tests-acc-1-93b24c0", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A12%3A11.5311329Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A50.4787148Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:12:08.7364941Z" + "CreatedOnDate": "2022-10-25T08:59:49.4739455Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:12:10.6081213Z", + "createdAt": "2022-10-25T08:59:50.3072028Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:12:10.6081213Z" + "lastModifiedAt": "2022-10-25T08:59:50.3072028Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "28", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "tags": { @@ -399,8 +399,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:12:49 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A12%3A44.0216714Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 08:59:52 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A52.5275441Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -408,20 +408,20 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1509a98b-ef12-4cbc-89d8-e49b16877771", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141250Z:1509a98b-ef12-4cbc-89d8-e49b16877771", + "x-ms-correlation-request-id": "194e3193-b1aa-4695-90fa-d65a54b984e2", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085953Z:194e3193-b1aa-4695-90fa-d65a54b984e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0", "name": "sdk-py-tests-acc-1-93b24c0", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A12%3A44.0216714Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A52.5275441Z\u0027\u0022", "location": "westus2", "tags": { "Tag1": "Value2", - "CreatedOnDate": "2022-09-16T14:12:43.6989845Z" + "CreatedOnDate": "2022-10-25T08:59:52.2360548Z" }, "properties": { "provisioningState": "Succeeded", @@ -450,10 +450,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:12:10.6081213Z", + "createdAt": "2022-10-25T08:59:50.3072028Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:12:43.8896289Z" + "lastModifiedAt": "2022-10-25T08:59:52.4174151Z" } } }, @@ -465,36 +465,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f03a9ba-a5c5-42bf-8a57-6406869ada55?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2fa9a52-aff5-4b4f-abc6-8995f47dc409?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:12:50 GMT", + "Date": "Tue, 25 Oct 2022 08:59:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f03a9ba-a5c5-42bf-8a57-6406869ada55?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2fa9a52-aff5-4b4f-abc6-8995f47dc409?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3b12905-96bb-4235-9433-9f3ec15f661e", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141251Z:d3b12905-96bb-4235-9433-9f3ec15f661e", + "x-ms-correlation-request-id": "af8da654-bc8f-489f-8ac0-3a02a97c1c2d", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085954Z:af8da654-bc8f-489f-8ac0-3a02a97c1c2d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f03a9ba-a5c5-42bf-8a57-6406869ada55?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2fa9a52-aff5-4b4f-abc6-8995f47dc409?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -502,7 +502,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:13:21 GMT", + "Date": "Tue, 25 Oct 2022 08:59:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -510,17 +510,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7b5cdbb-31a3-4cc4-907b-5a7bcfe62fbf", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141321Z:c7b5cdbb-31a3-4cc4-907b-5a7bcfe62fbf", + "x-ms-correlation-request-id": "dd84cf3d-c440-45c5-8930-e0042ab64717", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085954Z:dd84cf3d-c440-45c5-8930-e0042ab64717", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f03a9ba-a5c5-42bf-8a57-6406869ada55", - "name": "8f03a9ba-a5c5-42bf-8a57-6406869ada55", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2fa9a52-aff5-4b4f-abc6-8995f47dc409", + "name": "d2fa9a52-aff5-4b4f-abc6-8995f47dc409", "status": "Succeeded", - "startTime": "2022-09-16T14:12:51.280415Z", - "endTime": "2022-09-16T14:12:51.3741755Z", + "startTime": "2022-10-25T08:59:54.2985252Z", + "endTime": "2022-10-25T08:59:54.4079103Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0" @@ -528,13 +528,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f03a9ba-a5c5-42bf-8a57-6406869ada55?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2fa9a52-aff5-4b4f-abc6-8995f47dc409?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -542,7 +542,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:13:21 GMT", + "Date": "Tue, 25 Oct 2022 08:59:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -550,20 +550,20 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1be7e0c-5c8b-4d34-b4c9-85ddc58ea9e0", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141321Z:c1be7e0c-5c8b-4d34-b4c9-85ddc58ea9e0", + "x-ms-correlation-request-id": "1015d0b4-4d31-4cf5-af41-38eb6ef68078", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085954Z:1015d0b4-4d31-4cf5-af41-38eb6ef68078", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0", "name": "sdk-py-tests-acc-1-93b24c0", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A12%3A51.2903249Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T08%3A59%3A54.2905368Z\u0027\u0022", "location": "westus2", "tags": { "Tag1": "Value2", - "CreatedOnDate": "2022-09-16T14:12:43.6989845Z" + "CreatedOnDate": "2022-10-25T08:59:52.2360548Z" }, "properties": { "encryption": { @@ -574,10 +574,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:12:10.6081213Z", + "createdAt": "2022-10-25T08:59:50.3072028Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:12:43.8896289Z" + "lastModifiedAt": "2022-10-25T08:59:52.4174151Z" } } }, @@ -588,27 +588,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "253", + "Content-Length": "254", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:13:22 GMT", + "Date": "Tue, 25 Oct 2022 08:59:54 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b5064f9-c561-4d9b-80dd-35e45f3df0c8", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141322Z:6b5064f9-c561-4d9b-80dd-35e45f3df0c8" + "x-ms-correlation-request-id": "5fb84ab4-67a1-492d-b16f-d9c9831f5a29", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T085955Z:5fb84ab4-67a1-492d-b16f-d9c9831f5a29", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-93b24c0\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_delete_account_backups.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_delete_account_backups.json index 1d2e92b70f87..752c689b3382 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_delete_account_backups.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_delete_account_backups.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:11 GMT", + "Date": "Tue, 25 Oct 2022 20:36:02 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:11 GMT", + "Date": "Tue, 25 Oct 2022 20:36:02 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "e872646b-db6d-419e-81c3-b65a0f7a851e", + "client-request-id": "7f777205-c693-498f-9802-110862c31437", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "e872646b-db6d-419e-81c3-b65a0f7a851e", + "client-request-id": "7f777205-c693-498f-9802-110862c31437", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:11 GMT", + "Date": "Tue, 25 Oct 2022 20:36:03 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c97e3d39-faa0-460e-b7ec-971cb68a13bc?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/69d164eb-a76a-4acf-92bd-49b6bf97839a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:18 GMT", + "Date": "Tue, 25 Oct 2022 20:36:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "02f417c5-5649-4c42-b60b-7529fb715432", - "x-ms-correlation-request-id": "1209f6a2-7b40-45ca-a061-a7c39225777d", + "x-ms-arm-service-request-id": "91a48131-7e3c-415c-856e-46e7e2aeb0fb", + "x-ms-correlation-request-id": "c1a61352-96af-4e72-80ac-9d6c5b505bd8", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104118Z:1209f6a2-7b40-45ca-a061-a7c39225777d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203612Z:c1a61352-96af-4e72-80ac-9d6c5b505bd8" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-aac12d96", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96", - "etag": "W/\u00223f060ce0-cb26-40a3-bdbb-69707f3b7a62\u0022", + "etag": "W/\u002261c2901d-b64b-42e6-ae16-08242319c4b5\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:41:13.9720655Z" + "CreatedOnDate": "2022-10-25T20:36:06.6213931Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "0cef0299-327e-4139-aef4-0b9646c9b29b", + "resourceGuid": "180a9f0b-a430-4a59-a6ab-01607358f76f", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c97e3d39-faa0-460e-b7ec-971cb68a13bc?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/69d164eb-a76a-4acf-92bd-49b6bf97839a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:21 GMT", + "Date": "Tue, 25 Oct 2022 20:36:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "3571f89e-6567-4440-a30e-f5a888f0566d", - "x-ms-correlation-request-id": "0914b2fd-be7e-47be-a7a9-bd6fe83177f6", + "x-ms-arm-service-request-id": "d9edebcf-41c4-4070-aea6-d157ceebb3fd", + "x-ms-correlation-request-id": "cf1a168f-7c96-4702-8c07-2d07faa00816", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104121Z:0914b2fd-be7e-47be-a7a9-bd6fe83177f6" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203612Z:cf1a168f-7c96-4702-8c07-2d07faa00816" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:22 GMT", - "ETag": "W/\u00220356c6d0-cac8-4600-b8d1-99ab7cc41f62\u0022", + "Date": "Tue, 25 Oct 2022 20:36:12 GMT", + "ETag": "W/\u002208e85661-85a6-4876-bacd-1158fde62104\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "bed9b590-b6c3-4b6c-8ac8-f395831b7fee", - "x-ms-correlation-request-id": "424f7589-f86c-47b3-89ba-6b6c3453861e", + "x-ms-arm-service-request-id": "96e3e616-6a90-4451-875a-6b76713dc9f9", + "x-ms-correlation-request-id": "7da806c1-98cd-4cf4-bcee-1f83d1f493fa", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104122Z:424f7589-f86c-47b3-89ba-6b6c3453861e" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203612Z:7da806c1-98cd-4cf4-bcee-1f83d1f493fa" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-aac12d96", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96", - "etag": "W/\u00220356c6d0-cac8-4600-b8d1-99ab7cc41f62\u0022", + "etag": "W/\u002208e85661-85a6-4876-bacd-1158fde62104\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:41:13.9720655Z" + "CreatedOnDate": "2022-10-25T20:36:06.6213931Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "0cef0299-327e-4139-aef4-0b9646c9b29b", + "resourceGuid": "180a9f0b-a430-4a59-a6ab-01607358f76f", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dd68b034-5d90-4c70-9d6b-73b5add1e66f?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1f98584d-a5aa-4b13-aeea-efeda747f93e?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:22 GMT", + "Date": "Tue, 25 Oct 2022 20:36:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "de216742-7476-4906-80c8-64ad4e6bea4b", - "x-ms-correlation-request-id": "8c87b89c-603a-4240-b88b-66c48975ca82", + "x-ms-arm-service-request-id": "e2624fb2-2463-41d1-9b12-ebc78aea1c07", + "x-ms-correlation-request-id": "d2a75919-28e8-4b6a-8dfa-2cc36ee818cc", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104123Z:8c87b89c-603a-4240-b88b-66c48975ca82" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203613Z:d2a75919-28e8-4b6a-8dfa-2cc36ee818cc" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default", - "etag": "W/\u00221897b2f8-8a7d-4eb3-a709-fdf5403e30c8\u0022", + "etag": "W/\u0022fc343a53-ccd7-42a7-9a5c-08b32dedac49\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00221897b2f8-8a7d-4eb3-a709-fdf5403e30c8\u0022", + "etag": "W/\u0022fc343a53-ccd7-42a7-9a5c-08b32dedac49\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dd68b034-5d90-4c70-9d6b-73b5add1e66f?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1f98584d-a5aa-4b13-aeea-efeda747f93e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:26 GMT", + "Date": "Tue, 25 Oct 2022 20:36:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f42e3aba-56fa-435f-b6fe-5007125d370f", - "x-ms-correlation-request-id": "8063fc78-d097-4b92-ab9a-e5386350359d", + "x-ms-arm-service-request-id": "b94f5aae-f77e-444f-999c-ba46b42fe070", + "x-ms-correlation-request-id": "59facd97-13ee-4c02-a052-e662c8e3d0ed", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104126Z:8063fc78-d097-4b92-ab9a-e5386350359d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203613Z:59facd97-13ee-4c02-a052-e662c8e3d0ed" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:26 GMT", - "ETag": "W/\u00221c6e96f2-9ab6-469b-87ad-d091392fa874\u0022", + "Date": "Tue, 25 Oct 2022 20:36:13 GMT", + "ETag": "W/\u0022955e2e68-1e14-4bee-97fa-f8ca91264101\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "51fbc4a0-7777-4a29-857b-9d013f27aebb", - "x-ms-correlation-request-id": "06c33ef6-bcf5-40fe-88f6-45ff4f97ec1c", + "x-ms-arm-service-request-id": "5c177068-359c-4d6f-ae82-ef968a502bd4", + "x-ms-correlation-request-id": "ab443cb7-d3ed-462a-9b9a-0f1d3d7248d9", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104126Z:06c33ef6-bcf5-40fe-88f6-45ff4f97ec1c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203614Z:ab443cb7-d3ed-462a-9b9a-0f1d3d7248d9" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default", - "etag": "W/\u00221c6e96f2-9ab6-469b-87ad-d091392fa874\u0022", + "etag": "W/\u0022955e2e68-1e14-4bee-97fa-f8ca91264101\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00221c6e96f2-9ab6-469b-87ad-d091392fa874\u0022", + "etag": "W/\u0022955e2e68-1e14-4bee-97fa-f8ca91264101\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:26 GMT", + "Date": "Tue, 25 Oct 2022 20:36:14 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:26 GMT", + "Date": "Tue, 25 Oct 2022 20:36:14 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "c83d8294-a2a8-4a99-9d46-18877e3e5580", + "client-request-id": "01c5d086-530b-4edc-93e6-e0f8056e9af7", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "c83d8294-a2a8-4a99-9d46-18877e3e5580", + "client-request-id": "01c5d086-530b-4edc-93e6-e0f8056e9af7", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:26 GMT", + "Date": "Tue, 25 Oct 2022 20:36:14 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59e28078-7300-4537-b98a-de0f409f7f61?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a05f706-1afc-4393-a76d-c9701393f0e2?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:41:30 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A41%3A30.0151002Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 20:36:18 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T20%3A36%3A17.7522348Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e560c0b-b4fa-47a9-9091-a8c7fcf5cb08", + "x-ms-correlation-request-id": "ecf7e975-8688-4d75-9203-59e7716a4f93", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104131Z:8e560c0b-b4fa-47a9-9091-a8c7fcf5cb08", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203619Z:ecf7e975-8688-4d75-9203-59e7716a4f93", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96", "name": "sdk-py-tests-acc-1-aac12d96", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A41%3A30.0151002Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A36%3A17.7522348Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:41:28.2244607Z" + "CreatedOnDate": "2022-10-25T20:36:15.8009879Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:41:29.0356105Z", + "createdAt": "2022-10-25T20:36:16.7609056Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:41:29.0356105Z" + "lastModifiedAt": "2022-10-25T20:36:16.7609056Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59e28078-7300-4537-b98a-de0f409f7f61?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a05f706-1afc-4393-a76d-c9701393f0e2?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:42:00 GMT", + "Date": "Tue, 25 Oct 2022 20:36:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b22ef02-a16d-466a-a251-6f17ab248a87", + "x-ms-correlation-request-id": "043375a1-efd8-41de-b26f-c970171b47eb", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104201Z:2b22ef02-a16d-466a-a251-6f17ab248a87", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203619Z:043375a1-efd8-41de-b26f-c970171b47eb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59e28078-7300-4537-b98a-de0f409f7f61", - "name": "59e28078-7300-4537-b98a-de0f409f7f61", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a05f706-1afc-4393-a76d-c9701393f0e2", + "name": "9a05f706-1afc-4393-a76d-c9701393f0e2", "status": "Succeeded", - "startTime": "2022-09-20T10:41:30.0063796Z", - "endTime": "2022-09-20T10:41:30.0533255Z", + "startTime": "2022-10-25T20:36:17.7516288Z", + "endTime": "2022-10-25T20:36:17.7985862Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:42:01 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A41%3A30.0595152Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 20:36:19 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T20%3A36%3A17.8024978Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce282f4c-080d-4913-b827-24efe3957e22", + "x-ms-correlation-request-id": "a90e27d6-f9c5-48d6-93f7-9dc3c32e4e0f", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104201Z:ce282f4c-080d-4913-b827-24efe3957e22", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203619Z:a90e27d6-f9c5-48d6-93f7-9dc3c32e4e0f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96", "name": "sdk-py-tests-acc-1-aac12d96", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A41%3A30.0595152Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A36%3A17.8024978Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:41:28.2244607Z" + "CreatedOnDate": "2022-10-25T20:36:15.8009879Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:41:29.0356105Z", + "createdAt": "2022-10-25T20:36:16.7609056Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:41:29.0356105Z" + "lastModifiedAt": "2022-10-25T20:36:16.7609056Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37884cfc-16ff-454b-b262-5bddbd05d822?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76803e66-306f-4ea7-a8fa-a2e2a88a02bd?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:42:04 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A42%3A03.7687685Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 20:36:21 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T20%3A36%3A21.1813026Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92fdc5c5-5c50-43fa-8a60-6ff16bb0177a", + "x-ms-correlation-request-id": "c571eaba-e562-4555-9fb7-19c929e00c27", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104205Z:92fdc5c5-5c50-43fa-8a60-6ff16bb0177a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203622Z:c571eaba-e562-4555-9fb7-19c929e00c27", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A42%3A03.7687685Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A36%3A21.1813026Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:42:02.3177672Z" + "CreatedOnDate": "2022-10-25T20:36:19.9818184Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:42:03.5608523Z", + "createdAt": "2022-10-25T20:36:20.9664963Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:42:03.5608523Z" + "lastModifiedAt": "2022-10-25T20:36:20.9664963Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37884cfc-16ff-454b-b262-5bddbd05d822?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76803e66-306f-4ea7-a8fa-a2e2a88a02bd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:42:34 GMT", + "Date": "Tue, 25 Oct 2022 20:36:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8631e60-423d-4cb5-8e89-f8297e1961ed", + "x-ms-correlation-request-id": "6e697c9d-0ed4-421e-ab08-d5d8dff1b967", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104235Z:a8631e60-423d-4cb5-8e89-f8297e1961ed", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203622Z:6e697c9d-0ed4-421e-ab08-d5d8dff1b967", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76803e66-306f-4ea7-a8fa-a2e2a88a02bd", + "name": "76803e66-306f-4ea7-a8fa-a2e2a88a02bd", + "status": "Creating", + "startTime": "2022-10-25T20:36:21.1748625Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76803e66-306f-4ea7-a8fa-a2e2a88a02bd?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 20:36:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "12c39675-157c-44bb-b3a9-b1bc868c03b1", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203652Z:12c39675-157c-44bb-b3a9-b1bc868c03b1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37884cfc-16ff-454b-b262-5bddbd05d822", - "name": "37884cfc-16ff-454b-b262-5bddbd05d822", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76803e66-306f-4ea7-a8fa-a2e2a88a02bd", + "name": "76803e66-306f-4ea7-a8fa-a2e2a88a02bd", "status": "Succeeded", - "startTime": "2022-09-20T10:42:03.7645732Z", - "endTime": "2022-09-20T10:42:04.7489546Z", + "startTime": "2022-10-25T20:36:21.1748625Z", + "endTime": "2022-10-25T20:36:22.253004Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1072,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1080,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:42:34 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A42%3A04.7437527Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 20:36:52 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T20%3A36%3A22.2449646Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1089,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4dc6f724-5207-4b1a-9f4f-28591c8e7b5a", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104235Z:4dc6f724-5207-4b1a-9f4f-28591c8e7b5a", + "x-ms-correlation-request-id": "828e7eab-3ec6-434e-bdd1-4a0de9dbc6e4", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203652Z:828e7eab-3ec6-434e-bdd1-4a0de9dbc6e4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A42%3A04.7437527Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A36%3A22.2449646Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:42:02.3177672Z" + "CreatedOnDate": "2022-10-25T20:36:19.9818184Z" }, "properties": { - "poolId": "5a9b1946-01cd-41b5-9a4c-66326b84f021", + "poolId": "42e67581-855e-8082-da07-66342d5c0eec", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1117,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:42:03.5608523Z", + "createdAt": "2022-10-25T20:36:20.9664963Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:42:03.5608523Z" + "lastModifiedAt": "2022-10-25T20:36:20.9664963Z" } } }, @@ -1092,7 +1133,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1163,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "1585", + "Content-Length": "1582", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:42:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A42%3A47.3248262Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 20:37:05 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T20%3A37%3A04.740737Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45da4ca5-00e3-4257-b175-4a37ed47f4a4", + "x-ms-correlation-request-id": "73a44d3b-f929-4a40-83a4-f0ddb73349d7", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104248Z:45da4ca5-00e3-4257-b175-4a37ed47f4a4", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203705Z:73a44d3b-f929-4a40-83a4-f0ddb73349d7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96", "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A42%3A47.3248262Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A37%3A04.740737Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:42:46.1052657Z" + "CreatedOnDate": "2022-10-25T20:37:03.3940136Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1216,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:42:47.0416494Z", + "createdAt": "2022-10-25T20:37:04.383152Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:42:47.0416494Z" + "lastModifiedAt": "2022-10-25T20:37:04.383152Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:43:18 GMT", + "Date": "Tue, 25 Oct 2022 20:37:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4198263e-0fc0-4141-b528-705e00af263e", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104318Z:4198263e-0fc0-4141-b528-705e00af263e", + "x-ms-correlation-request-id": "4bd70b58-4f20-4e2d-bfc3-d93a345f797d", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203705Z:4bd70b58-4f20-4e2d-bfc3-d93a345f797d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc", - "name": "25ed37c6-5330-4bf6-86e3-175d0e3219cc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", "status": "Creating", - "startTime": "2022-09-20T10:42:47.3309726Z", + "startTime": "2022-10-25T20:37:04.7451474Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:43:48 GMT", + "Date": "Tue, 25 Oct 2022 20:37:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "795914e8-cb0b-4d0a-a3db-685fe66076b5", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104348Z:795914e8-cb0b-4d0a-a3db-685fe66076b5", + "x-ms-correlation-request-id": "f9283a9f-6dcf-40d4-8b56-71a7265c3130", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203736Z:f9283a9f-6dcf-40d4-8b56-71a7265c3130", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc", - "name": "25ed37c6-5330-4bf6-86e3-175d0e3219cc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", "status": "Creating", - "startTime": "2022-09-20T10:42:47.3309726Z", + "startTime": "2022-10-25T20:37:04.7451474Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:44:18 GMT", + "Date": "Tue, 25 Oct 2022 20:38:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ea02857-2d95-4675-a42c-4c78d808acb1", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104418Z:9ea02857-2d95-4675-a42c-4c78d808acb1", + "x-ms-correlation-request-id": "0828896a-54a8-4724-a363-17634c0468ea", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203806Z:0828896a-54a8-4724-a363-17634c0468ea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc", - "name": "25ed37c6-5330-4bf6-86e3-175d0e3219cc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", "status": "Creating", - "startTime": "2022-09-20T10:42:47.3309726Z", + "startTime": "2022-10-25T20:37:04.7451474Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:44:48 GMT", + "Date": "Tue, 25 Oct 2022 20:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14534903-6302-4261-9110-e6832e7b0941", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104449Z:14534903-6302-4261-9110-e6832e7b0941", + "x-ms-correlation-request-id": "459ccc39-8bf1-4d4d-9c9a-3d882b7f5bf4", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203836Z:459ccc39-8bf1-4d4d-9c9a-3d882b7f5bf4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc", - "name": "25ed37c6-5330-4bf6-86e3-175d0e3219cc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", "status": "Creating", - "startTime": "2022-09-20T10:42:47.3309726Z", + "startTime": "2022-10-25T20:37:04.7451474Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:45:19 GMT", + "Date": "Tue, 25 Oct 2022 20:39:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a483d4e-aba4-42f4-82ae-5f091ba3f14c", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104519Z:1a483d4e-aba4-42f4-82ae-5f091ba3f14c", + "x-ms-correlation-request-id": "0c440e43-6b25-4798-b2ab-c0bff7a78902", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203906Z:0c440e43-6b25-4798-b2ab-c0bff7a78902", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc", - "name": "25ed37c6-5330-4bf6-86e3-175d0e3219cc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", "status": "Creating", - "startTime": "2022-09-20T10:42:47.3309726Z", + "startTime": "2022-10-25T20:37:04.7451474Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:45:49 GMT", + "Date": "Tue, 25 Oct 2022 20:39:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b245584-344d-47eb-84da-7e51aba74790", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104549Z:0b245584-344d-47eb-84da-7e51aba74790", + "x-ms-correlation-request-id": "4e255ca9-f107-4ba4-a99a-b8a88075b1a3", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T203937Z:4e255ca9-f107-4ba4-a99a-b8a88075b1a3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc", - "name": "25ed37c6-5330-4bf6-86e3-175d0e3219cc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", "status": "Creating", - "startTime": "2022-09-20T10:42:47.3309726Z", + "startTime": "2022-10-25T20:37:04.7451474Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:46:19 GMT", + "Date": "Tue, 25 Oct 2022 20:40:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1486,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18682a0c-3321-41bc-bee2-4053ead8e811", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104619Z:18682a0c-3321-41bc-bee2-4053ead8e811", + "x-ms-correlation-request-id": "1ab56d30-6773-4aa9-9f04-ea6802b423d1", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204007Z:1ab56d30-6773-4aa9-9f04-ea6802b423d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc", - "name": "25ed37c6-5330-4bf6-86e3-175d0e3219cc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", "status": "Creating", - "startTime": "2022-09-20T10:42:47.3309726Z", + "startTime": "2022-10-25T20:37:04.7451474Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1504,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1518,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:46:49 GMT", + "Date": "Tue, 25 Oct 2022 20:40:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,16 +1526,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f088961b-e9e6-4f24-808c-b947340499c8", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104650Z:f088961b-e9e6-4f24-808c-b947340499c8", + "x-ms-correlation-request-id": "cf71a456-74fb-4cbc-8013-af66e44e160c", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204037Z:cf71a456-74fb-4cbc-8013-af66e44e160c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc", - "name": "25ed37c6-5330-4bf6-86e3-175d0e3219cc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", "status": "Creating", - "startTime": "2022-09-20T10:42:47.3309726Z", + "startTime": "2022-10-25T20:37:04.7451474Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1503,13 +1544,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,7 +1558,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:47:20 GMT", + "Date": "Tue, 25 Oct 2022 20:41:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1525,16 +1566,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d80ecdf8-0e28-4407-9fde-035b255207e8", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104720Z:d80ecdf8-0e28-4407-9fde-035b255207e8", + "x-ms-correlation-request-id": "bb2d13c3-905e-4eab-8a00-419c7ee879f8", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204108Z:bb2d13c3-905e-4eab-8a00-419c7ee879f8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc", - "name": "25ed37c6-5330-4bf6-86e3-175d0e3219cc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", "status": "Creating", - "startTime": "2022-09-20T10:42:47.3309726Z", + "startTime": "2022-10-25T20:37:04.7451474Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1543,13 +1584,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1557,7 +1598,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:47:50 GMT", + "Date": "Tue, 25 Oct 2022 20:41:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1565,17 +1606,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4198ca87-19de-46d6-8fd0-77edb5dbe8b8", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104751Z:4198ca87-19de-46d6-8fd0-77edb5dbe8b8", + "x-ms-correlation-request-id": "acc81c62-3a91-4e85-957e-a04392bbcfc6", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204139Z:acc81c62-3a91-4e85-957e-a04392bbcfc6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "status": "Creating", + "startTime": "2022-10-25T20:37:04.7451474Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 20:42:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c18db44f-ea03-424f-9af0-64d2dd9c99bd", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204209Z:c18db44f-ea03-424f-9af0-64d2dd9c99bd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25ed37c6-5330-4bf6-86e3-175d0e3219cc", - "name": "25ed37c6-5330-4bf6-86e3-175d0e3219cc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", + "name": "b7546ae2-be90-402b-aa67-3b9d4dbd6c6e", "status": "Succeeded", - "startTime": "2022-09-20T10:42:47.3309726Z", - "endTime": "2022-09-20T10:47:49.5607083Z", + "startTime": "2022-10-25T20:37:04.7451474Z", + "endTime": "2022-10-25T20:41:52.6894602Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96" @@ -1589,7 +1670,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1597,8 +1678,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:47:51 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A47%3A49.5505586Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 20:42:08 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T20%3A41%3A52.6914912Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1606,22 +1687,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3543e2cd-57f4-4119-8644-9f96b3450f7e", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104751Z:3543e2cd-57f4-4119-8644-9f96b3450f7e", + "x-ms-correlation-request-id": "5efd4a6b-4078-4a73-b55f-b998cd3418e3", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204209Z:5efd4a6b-4078-4a73-b55f-b998cd3418e3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96", "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A47%3A49.5505586Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A41%3A52.6914912Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:42:46.1052657Z" + "CreatedOnDate": "2022-10-25T20:37:03.3940136Z" }, "properties": { - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-aac12d96", "usageThreshold": 107374182400, @@ -1649,7 +1730,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2a404281", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d1ae2248", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1664,8 +1745,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", + "mountTargetId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", "ipAddress": "10.0.0.4" } ], @@ -1685,10 +1766,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:42:47.0416494Z", + "createdAt": "2022-10-25T20:37:04.383152Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:42:47.0416494Z" + "lastModifiedAt": "2022-10-25T20:37:04.383152Z" } } }, @@ -1699,7 +1780,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1707,8 +1788,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:48:01 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A47%3A49.5505586Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 20:42:19 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T20%3A41%3A52.6914912Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1716,22 +1797,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a9342fe-8a70-4b4c-b55b-3439011e0e27", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104802Z:1a9342fe-8a70-4b4c-b55b-3439011e0e27", + "x-ms-correlation-request-id": "31a39242-28fe-4e5b-8127-60eb45a97e90", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204220Z:31a39242-28fe-4e5b-8127-60eb45a97e90", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96", "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A47%3A49.5505586Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A41%3A52.6914912Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:42:46.1052657Z" + "CreatedOnDate": "2022-10-25T20:37:03.3940136Z" }, "properties": { - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-aac12d96", "usageThreshold": 107374182400, @@ -1759,7 +1840,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2a404281", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d1ae2248", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1774,8 +1855,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", + "mountTargetId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", "ipAddress": "10.0.0.4" } ], @@ -1795,10 +1876,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:42:47.0416494Z", + "createdAt": "2022-10-25T20:37:04.383152Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:42:47.0416494Z" + "lastModifiedAt": "2022-10-25T20:37:04.383152Z" } } }, @@ -1809,7 +1890,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1817,7 +1898,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:48:02 GMT", + "Date": "Tue, 25 Oct 2022 20:42:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1825,9 +1906,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64c327a4-02b2-483c-b6f3-33a212059c32", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104802Z:64c327a4-02b2-483c-b6f3-33a212059c32", + "x-ms-correlation-request-id": "5315f1a1-b4d0-4366-97de-4b710f0f9932", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204220Z:5315f1a1-b4d0-4366-97de-4b710f0f9932", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1850,7 +1931,7 @@ "Connection": "keep-alive", "Content-Length": "412", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1869,35 +1950,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f0ecb3e-ec7d-4e8a-81ee-690700bf5d1a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8d9df61-22c6-4253-a91c-2f28ba307004?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "2480", + "Content-Length": "2478", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:48:02 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A48%3A03.1604167Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 20:42:21 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T20%3A42%3A21.2012442Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f0ecb3e-ec7d-4e8a-81ee-690700bf5d1a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8d9df61-22c6-4253-a91c-2f28ba307004?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85fcf6a9-f471-4b7c-b9c3-589737792ff0", + "x-ms-correlation-request-id": "c0f30484-9980-4ac5-8d3f-55cce44701c6", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104803Z:85fcf6a9-f471-4b7c-b9c3-589737792ff0", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204221Z:c0f30484-9980-4ac5-8d3f-55cce44701c6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96", "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A48%3A03.1604167Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A42%3A21.2012442Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:42:46.1052657Z" + "CreatedOnDate": "2022-10-25T20:37:03.3940136Z" }, "properties": { "provisioningState": "Patching", - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-aac12d96", "usageThreshold": 107374182400, @@ -1925,7 +2006,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2a404281", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d1ae2248", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1940,8 +2021,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", + "mountTargetId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", "ipAddress": "10.0.0.4" } ], @@ -1960,21 +2041,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:42:47.0416494Z", + "createdAt": "2022-10-25T20:37:04.383152Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:42:47.0416494Z" + "lastModifiedAt": "2022-10-25T20:37:04.383152Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f0ecb3e-ec7d-4e8a-81ee-690700bf5d1a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8d9df61-22c6-4253-a91c-2f28ba307004?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1982,7 +2063,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:48:33 GMT", + "Date": "Tue, 25 Oct 2022 20:42:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1990,17 +2071,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edec46f0-bf42-4304-b757-8c2b9f4210be", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104833Z:edec46f0-bf42-4304-b757-8c2b9f4210be", + "x-ms-correlation-request-id": "da4da759-8f3b-4980-acb6-f62542000780", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204221Z:da4da759-8f3b-4980-acb6-f62542000780", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8d9df61-22c6-4253-a91c-2f28ba307004", + "name": "a8d9df61-22c6-4253-a91c-2f28ba307004", + "status": "Patching", + "startTime": "2022-10-25T20:42:21.2060348Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8d9df61-22c6-4253-a91c-2f28ba307004?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 20:42:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "267ab3e5-56bb-4a59-a8ae-2c29c542069c", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204251Z:267ab3e5-56bb-4a59-a8ae-2c29c542069c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f0ecb3e-ec7d-4e8a-81ee-690700bf5d1a", - "name": "7f0ecb3e-ec7d-4e8a-81ee-690700bf5d1a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8d9df61-22c6-4253-a91c-2f28ba307004", + "name": "a8d9df61-22c6-4253-a91c-2f28ba307004", "status": "Succeeded", - "startTime": "2022-09-20T10:48:03.1535769Z", - "endTime": "2022-09-20T10:48:05.7198254Z", + "startTime": "2022-10-25T20:42:21.2060348Z", + "endTime": "2022-10-25T20:42:26.0166077Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96" @@ -2008,13 +2129,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7f0ecb3e-ec7d-4e8a-81ee-690700bf5d1a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8d9df61-22c6-4253-a91c-2f28ba307004?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2022,7 +2143,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:48:33 GMT", + "Date": "Tue, 25 Oct 2022 20:42:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2030,19 +2151,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56e57462-ca87-4b41-89c1-8ddd5bb4d08c", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104833Z:56e57462-ca87-4b41-89c1-8ddd5bb4d08c", + "x-ms-correlation-request-id": "f45e099b-bcbd-4714-b9f3-8cdd5a6aeb60", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204252Z:f45e099b-bcbd-4714-b9f3-8cdd5a6aeb60", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96", "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A48%3A05.7218845Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A42%3A26.0125017Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:48:02.8571337Z" + "CreatedOnDate": "2022-10-25T20:42:20.7274983Z" }, "properties": { "dataProtection": { @@ -2052,7 +2173,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/vaults/cbsvault" } }, - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-aac12d96", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2083,19 +2204,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2a404281", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d1ae2248", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96", - "poolId": "5a9b1946-01cd-41b5-9a4c-66326b84f021", + "poolId": "42e67581-855e-8082-da07-66342d5c0eec", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", + "mountTargetId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", "startIp": "", "endIp": "", "gateway": "", @@ -2127,10 +2248,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:42:47.0416494Z", + "createdAt": "2022-10-25T20:37:04.383152Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:48:03.0352805Z" + "lastModifiedAt": "2022-10-25T20:42:21.0452983Z" } } }, @@ -2143,7 +2264,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -2153,20 +2274,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/febf72a8-935a-4934-92a3-1231a19ad3a6?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/211be44f-e2d7-42ea-8ad4-ffa375f2e62d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:48:34 GMT", + "Date": "Tue, 25 Oct 2022 20:42:51 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/febf72a8-935a-4934-92a3-1231a19ad3a6?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/211be44f-e2d7-42ea-8ad4-ffa375f2e62d?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d86c3bbc-7f2e-4993-bfd7-f1f42344d2c2", + "x-ms-correlation-request-id": "06b00217-ba41-4d33-bf40-1184f39739f1", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104834Z:d86c3bbc-7f2e-4993-bfd7-f1f42344d2c2", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204252Z:06b00217-ba41-4d33-bf40-1184f39739f1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2181,13 +2302,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/febf72a8-935a-4934-92a3-1231a19ad3a6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/211be44f-e2d7-42ea-8ad4-ffa375f2e62d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2195,7 +2316,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:49:04 GMT", + "Date": "Tue, 25 Oct 2022 20:42:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2203,75 +2324,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89f23895-dd41-4b80-b6c0-6d68b2898e95", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104904Z:89f23895-dd41-4b80-b6c0-6d68b2898e95", + "x-ms-correlation-request-id": "a739b3c4-f5a2-4e4d-9d31-3ed9a3089d3b", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204252Z:a739b3c4-f5a2-4e4d-9d31-3ed9a3089d3b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/febf72a8-935a-4934-92a3-1231a19ad3a6", - "name": "febf72a8-935a-4934-92a3-1231a19ad3a6", - "status": "Succeeded", - "startTime": "2022-09-20T10:48:34.2214964Z", - "endTime": "2022-09-20T10:48:35.1745919Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/211be44f-e2d7-42ea-8ad4-ffa375f2e62d", + "name": "211be44f-e2d7-42ea-8ad4-ffa375f2e62d", + "status": "Creating", + "startTime": "2022-10-25T20:42:52.4752415Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/febf72a8-935a-4934-92a3-1231a19ad3a6?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/211be44f-e2d7-42ea-8ad4-ffa375f2e62d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "780", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:49:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfcd7f6e-4587-49d3-b219-5c5965d96f30", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104904Z:cfcd7f6e-4587-49d3-b219-5c5965d96f30", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/20/2022 10:48:35 AM", - "location": "", - "properties": { - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", - "creationDate": "0001-01-01T00:00:00Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "failureReason": "None", - "useExistingSnapshot": false, - "provisioningState": "Creating" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2279,7 +2356,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:49:15 GMT", + "Date": "Tue, 25 Oct 2022 20:43:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2287,70 +2364,64 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27285cdf-3f5b-49a7-9e9b-81e3ee3b62e2", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104916Z:27285cdf-3f5b-49a7-9e9b-81e3ee3b62e2", + "x-ms-correlation-request-id": "51e98c0a-d245-4749-aa1c-3a081f338dc4", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204323Z:51e98c0a-d245-4749-aa1c-3a081f338dc4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/211be44f-e2d7-42ea-8ad4-ffa375f2e62d", + "name": "211be44f-e2d7-42ea-8ad4-ffa375f2e62d", + "status": "Succeeded", + "startTime": "2022-10-25T20:42:52.4752415Z", + "endTime": "2022-10-25T20:42:53.5378773Z", + "percentComplete": 100.0, "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/211be44f-e2d7-42ea-8ad4-ffa375f2e62d?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "780", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:49:25 GMT", + "Date": "Tue, 25 Oct 2022 20:43:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "032548c3-7b29-4b7a-aff0-ec562ec3fec2", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104926Z:032548c3-7b29-4b7a-aff0-ec562ec3fec2", + "x-ms-correlation-request-id": "c3de11ed-204f-4caf-b6fc-7c686e63f129", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204323Z:c3de11ed-204f-4caf-b6fc-7c686e63f129", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "etag": "10/25/2022 8:42:53 PM", + "location": "", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", + "creationDate": "0001-01-01T00:00:00Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false + "failureReason": "None", + "useExistingSnapshot": false, + "provisioningState": "Creating" } } }, @@ -2361,7 +2432,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2369,7 +2440,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:49:36 GMT", + "Date": "Tue, 25 Oct 2022 20:43:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2377,9 +2448,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f174a5b9-d2ad-47eb-9ab5-2e49fc07ea01", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104937Z:f174a5b9-d2ad-47eb-9ab5-2e49fc07ea01", + "x-ms-correlation-request-id": "64d8bf7a-9708-4255-8623-0d170e12bcbd", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204334Z:64d8bf7a-9708-4255-8623-0d170e12bcbd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2388,12 +2459,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", + "creationDate": "2022-10-25T20:42:53Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } @@ -2406,7 +2477,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2414,7 +2485,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:49:47 GMT", + "Date": "Tue, 25 Oct 2022 20:43:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2422,9 +2493,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd1a35be-fa59-43d1-9be4-6e714dfd4347", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104947Z:dd1a35be-fa59-43d1-9be4-6e714dfd4347", + "x-ms-correlation-request-id": "bea98026-efcd-4471-a785-d82c5e712e80", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204345Z:bea98026-efcd-4471-a785-d82c5e712e80", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2433,12 +2504,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", + "creationDate": "2022-10-25T20:42:53Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } @@ -2451,7 +2522,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2459,7 +2530,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:49:57 GMT", + "Date": "Tue, 25 Oct 2022 20:43:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2467,9 +2538,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30f7f780-7887-4d76-9a7f-d5a1235d9e7d", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104957Z:30f7f780-7887-4d76-9a7f-d5a1235d9e7d", + "x-ms-correlation-request-id": "97a51447-380d-4da6-8232-12488bee3364", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204355Z:97a51447-380d-4da6-8232-12488bee3364", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2478,12 +2549,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", + "creationDate": "2022-10-25T20:42:53Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } @@ -2496,7 +2567,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2504,7 +2575,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:50:08 GMT", + "Date": "Tue, 25 Oct 2022 20:44:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2512,9 +2583,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4262722-7af6-4c37-9ea7-1106e0c052ab", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105008Z:f4262722-7af6-4c37-9ea7-1106e0c052ab", + "x-ms-correlation-request-id": "93dec6bf-4280-4255-9b41-f3944ef6f4b8", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204406Z:93dec6bf-4280-4255-9b41-f3944ef6f4b8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2523,12 +2594,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", + "creationDate": "2022-10-25T20:42:53Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } @@ -2541,7 +2612,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2549,7 +2620,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:50:19 GMT", + "Date": "Tue, 25 Oct 2022 20:44:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2557,9 +2628,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ab1d853-809f-41eb-839e-883d4b173f70", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105019Z:3ab1d853-809f-41eb-839e-883d4b173f70", + "x-ms-correlation-request-id": "5f8c685c-fa12-4c2e-91b6-e385994f7e8f", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204417Z:5f8c685c-fa12-4c2e-91b6-e385994f7e8f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2568,12 +2639,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", + "creationDate": "2022-10-25T20:42:53Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } @@ -2586,7 +2657,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2594,7 +2665,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:50:30 GMT", + "Date": "Tue, 25 Oct 2022 20:44:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2602,9 +2673,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6336cf90-4c14-42ed-8e14-2ea28171ca90", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105030Z:6336cf90-4c14-42ed-8e14-2ea28171ca90", + "x-ms-correlation-request-id": "da8efb78-ee3d-408f-b3e0-99264e19902c", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204428Z:da8efb78-ee3d-408f-b3e0-99264e19902c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2613,12 +2684,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", + "creationDate": "2022-10-25T20:42:53Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } @@ -2631,7 +2702,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2639,7 +2710,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:50:41 GMT", + "Date": "Tue, 25 Oct 2022 20:44:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2647,9 +2718,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d051bff-4393-4586-9e59-7286c40605bf", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105041Z:0d051bff-4393-4586-9e59-7286c40605bf", + "x-ms-correlation-request-id": "e50f6996-1d9b-419f-a626-f940cf035bb1", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204439Z:e50f6996-1d9b-419f-a626-f940cf035bb1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2658,12 +2729,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", + "creationDate": "2022-10-25T20:42:53Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } @@ -2676,7 +2747,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2684,7 +2755,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:50:51 GMT", + "Date": "Tue, 25 Oct 2022 20:44:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2692,9 +2763,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2b7e562-386f-41b7-96e8-d6836944dfff", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105052Z:b2b7e562-386f-41b7-96e8-d6836944dfff", + "x-ms-correlation-request-id": "38f03fc8-1a78-461b-81b4-8214cb942c67", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204450Z:38f03fc8-1a78-461b-81b4-8214cb942c67", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2703,12 +2774,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", + "creationDate": "2022-10-25T20:42:53Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } @@ -2721,7 +2792,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2729,7 +2800,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:51:02 GMT", + "Date": "Tue, 25 Oct 2022 20:45:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2737,9 +2808,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "daa31335-0d8a-4df1-bede-c74e1a3c1ed7", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105102Z:daa31335-0d8a-4df1-bede-c74e1a3c1ed7", + "x-ms-correlation-request-id": "0b46d5d9-00ad-479f-b92d-2797cf9e1edf", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204501Z:0b46d5d9-00ad-479f-b92d-2797cf9e1edf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2748,12 +2819,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", + "creationDate": "2022-10-25T20:42:53Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } @@ -2766,7 +2837,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2774,7 +2845,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:51:12 GMT", + "Date": "Tue, 25 Oct 2022 20:45:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2782,9 +2853,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77af5e6e-3e5a-42c0-9782-fc36f6b10214", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105113Z:77af5e6e-3e5a-42c0-9782-fc36f6b10214", + "x-ms-correlation-request-id": "86d4b0d9-e483-4569-bb6a-9a9176d11693", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204511Z:86d4b0d9-e483-4569-bb6a-9a9176d11693", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2793,25 +2864,25 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, + "creationDate": "2022-10-25T20:42:56Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2819,7 +2890,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:51:23 GMT", + "Date": "Tue, 25 Oct 2022 20:45:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2827,1269 +2898,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e03585d2-d7eb-411f-869b-5aacd3a621e5", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105123Z:e03585d2-d7eb-411f-869b-5aacd3a621e5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:51:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa2ffd63-b839-469f-badf-003e35300b5e", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105135Z:fa2ffd63-b839-469f-badf-003e35300b5e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:51:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a3c0633-c3ee-4018-b609-44c90804e860", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105145Z:0a3c0633-c3ee-4018-b609-44c90804e860", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:51:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78b71f2e-8310-44a2-9e16-e80cd552c427", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105156Z:78b71f2e-8310-44a2-9e16-e80cd552c427", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:52:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "940fb867-0a90-4e1d-bfc5-5ecfef9080e2", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105207Z:940fb867-0a90-4e1d-bfc5-5ecfef9080e2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:52:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7753da1-60da-4121-a7b7-32f5d2e1b813", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105217Z:e7753da1-60da-4121-a7b7-32f5d2e1b813", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:52:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae4c9e7e-306e-430c-a78f-29da1b7b900b", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105227Z:ae4c9e7e-306e-430c-a78f-29da1b7b900b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:52:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a2faef1-bc8b-4c69-b836-d49a90c7dca0", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105238Z:6a2faef1-bc8b-4c69-b836-d49a90c7dca0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:52:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "052d5798-b9f5-46da-a2e2-9ec918477608", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105248Z:052d5798-b9f5-46da-a2e2-9ec918477608", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:52:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6737c36e-813e-4c13-afae-6e5bad1296a3", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105259Z:6737c36e-813e-4c13-afae-6e5bad1296a3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:53:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88817fce-4d0e-4667-ac1b-5989116da7f1", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105309Z:88817fce-4d0e-4667-ac1b-5989116da7f1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:53:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4dcd1505-54a7-432b-af9a-c3d2a894546c", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105320Z:4dcd1505-54a7-432b-af9a-c3d2a894546c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:53:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f061902-cd9e-4e50-86de-4e68f7802ff0", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105330Z:7f061902-cd9e-4e50-86de-4e68f7802ff0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:53:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8bbd388-5b85-4e0e-879c-f607bbfb6926", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105341Z:d8bbd388-5b85-4e0e-879c-f607bbfb6926", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:53:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cb0e00b-9c3b-4ceb-b6bd-c6d549ee489d", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105352Z:7cb0e00b-9c3b-4ceb-b6bd-c6d549ee489d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:54:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "523185e9-47e8-47bf-bb14-49f181c086a8", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105404Z:523185e9-47e8-47bf-bb14-49f181c086a8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:54:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33332ac0-2cc6-48e9-851b-89df51018199", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105414Z:33332ac0-2cc6-48e9-851b-89df51018199", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:54:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40d32521-4f4c-4990-bb01-7582b5da92df", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105425Z:40d32521-4f4c-4990-bb01-7582b5da92df", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:54:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fb9008e-4aca-4644-aac4-f83cd61a3f70", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105436Z:4fb9008e-4aca-4644-aac4-f83cd61a3f70", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:54:46 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dcfda109-3c25-4794-a69d-29660c639ea7", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105447Z:dcfda109-3c25-4794-a69d-29660c639ea7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:54:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "108896d3-33e8-43b8-9bad-34b0aeabfdb1", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105457Z:108896d3-33e8-43b8-9bad-34b0aeabfdb1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:55:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31f3adb3-acbe-4e41-84ae-a0103668ed93", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105508Z:31f3adb3-acbe-4e41-84ae-a0103668ed93", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:55:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3593148-a9a9-4a39-b77f-9e0e9009e10a", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105518Z:e3593148-a9a9-4a39-b77f-9e0e9009e10a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:55:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a5ad45c-f2b6-46bb-8fee-87932433ee48", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105529Z:6a5ad45c-f2b6-46bb-8fee-87932433ee48", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:55:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a90b6eef-f5e3-43e8-a958-43593bfd68f3", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105540Z:a90b6eef-f5e3-43e8-a958-43593bfd68f3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:55:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2404a259-6769-42e0-a79f-ec93bc391930", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105550Z:2404a259-6769-42e0-a79f-ec93bc391930", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:56:00 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94d9ff11-7743-40fd-a7a1-4dfe2b8f939f", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105601Z:94d9ff11-7743-40fd-a7a1-4dfe2b8f939f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:56:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be9be460-3971-4e39-ad82-c346e1271ae9", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105613Z:be9be460-3971-4e39-ad82-c346e1271ae9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96/backups/sdk-py-tests-backup-1-aac12d96", - "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96/sdk-py-tests-backup-1-aac12d96", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-aac12d96", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:56:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92987fa6-6f72-4d42-ae97-7c8cde4c0870", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105613Z:92987fa6-6f72-4d42-ae97-7c8cde4c0870", + "x-ms-correlation-request-id": "44eb007c-1581-4c03-9b9a-a2907c727107", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204512Z:44eb007c-1581-4c03-9b9a-a2907c727107", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4593,12 +3404,12 @@ "type": "Microsoft.NetApp/netAppAccounts/accountBackups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:48:35Z", - "backupId": "1b5a742d-6cd3-af81-60ec-a492a80e080e", - "size": 0, + "creationDate": "2022-10-25T20:42:56Z", + "backupId": "90cd6d5c-707e-895a-2e9c-28dddfd02d8e", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-aac12d96", "useExistingSnapshot": false } @@ -4614,36 +3425,116 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1458ca86-ed62-47a0-9d89-7afd9dca6bcf?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 10:56:13 GMT", + "Date": "Tue, 25 Oct 2022 20:45:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1458ca86-ed62-47a0-9d89-7afd9dca6bcf?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ec5a3bd-ed49-47db-a7f0-9dda61de7184", + "x-ms-correlation-request-id": "feb100a3-f12c-4c3f-9b3b-5afd6a2e3cab", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105614Z:5ec5a3bd-ed49-47db-a7f0-9dda61de7184", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204513Z:feb100a3-f12c-4c3f-9b3b-5afd6a2e3cab", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1458ca86-ed62-47a0-9d89-7afd9dca6bcf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 20:45:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2350a974-a1e0-4468-8ec4-ed89e0b880e1", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204513Z:2350a974-a1e0-4468-8ec4-ed89e0b880e1", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088", + "name": "4019b7ce-c9bc-4647-be47-0c5759a81088", + "status": "Deleting", + "startTime": "2022-10-25T20:45:12.9272189Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 20:45:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "451dfa4c-14c0-46b5-941d-edeb577b6fa0", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204543Z:451dfa4c-14c0-46b5-941d-edeb577b6fa0", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088", + "name": "4019b7ce-c9bc-4647-be47-0c5759a81088", + "status": "Deleting", + "startTime": "2022-10-25T20:45:12.9272189Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4651,7 +3542,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:56:43 GMT", + "Date": "Tue, 25 Oct 2022 20:46:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4659,16 +3550,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0368ff3f-252d-493d-aa5e-d1b9565ca226", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105644Z:0368ff3f-252d-493d-aa5e-d1b9565ca226", + "x-ms-correlation-request-id": "c24dbe5b-fca2-45f4-84e9-d202a56009ec", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204614Z:c24dbe5b-fca2-45f4-84e9-d202a56009ec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1458ca86-ed62-47a0-9d89-7afd9dca6bcf", - "name": "1458ca86-ed62-47a0-9d89-7afd9dca6bcf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088", + "name": "4019b7ce-c9bc-4647-be47-0c5759a81088", "status": "Deleting", - "startTime": "2022-09-20T10:56:14.5757807Z", + "startTime": "2022-10-25T20:45:12.9272189Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -4677,13 +3568,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1458ca86-ed62-47a0-9d89-7afd9dca6bcf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4691,7 +3582,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:57:14 GMT", + "Date": "Tue, 25 Oct 2022 20:46:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4699,16 +3590,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96183266-19a0-4c86-ab9f-83786a2b84ed", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105715Z:96183266-19a0-4c86-ab9f-83786a2b84ed", + "x-ms-correlation-request-id": "a7275d36-3f38-437a-acc3-f6dd655e2a97", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204644Z:a7275d36-3f38-437a-acc3-f6dd655e2a97", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1458ca86-ed62-47a0-9d89-7afd9dca6bcf", - "name": "1458ca86-ed62-47a0-9d89-7afd9dca6bcf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088", + "name": "4019b7ce-c9bc-4647-be47-0c5759a81088", "status": "Deleting", - "startTime": "2022-09-20T10:56:14.5757807Z", + "startTime": "2022-10-25T20:45:12.9272189Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -4717,13 +3608,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1458ca86-ed62-47a0-9d89-7afd9dca6bcf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4731,7 +3622,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:57:44 GMT", + "Date": "Tue, 25 Oct 2022 20:47:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4739,17 +3630,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79ea26da-1177-45a0-b65c-ddb301781bbc", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105745Z:79ea26da-1177-45a0-b65c-ddb301781bbc", + "x-ms-correlation-request-id": "4b9bfe53-5cd0-4a0f-9b4f-731007af78c1", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204715Z:4b9bfe53-5cd0-4a0f-9b4f-731007af78c1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1458ca86-ed62-47a0-9d89-7afd9dca6bcf", - "name": "1458ca86-ed62-47a0-9d89-7afd9dca6bcf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088", + "name": "4019b7ce-c9bc-4647-be47-0c5759a81088", "status": "Succeeded", - "startTime": "2022-09-20T10:56:14.5757807Z", - "endTime": "2022-09-20T10:57:28.4466962Z", + "startTime": "2022-10-25T20:45:12.9272189Z", + "endTime": "2022-10-25T20:46:58.3528336Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96" @@ -4757,13 +3648,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1458ca86-ed62-47a0-9d89-7afd9dca6bcf?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4019b7ce-c9bc-4647-be47-0c5759a81088?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4771,7 +3662,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:57:45 GMT", + "Date": "Tue, 25 Oct 2022 20:47:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4779,19 +3670,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71588a68-7f4f-48a5-b6af-8b53ef86ee23", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-routing-request-id": "WESTEUROPE:20220920T105745Z:71588a68-7f4f-48a5-b6af-8b53ef86ee23", + "x-ms-correlation-request-id": "fcdc0370-0eb7-4413-a593-53e187177782", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T204715Z:fcdc0370-0eb7-4413-a593-53e187177782", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96", "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1/sdk-py-tests-vol-3-aac12d96", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A57%3A11.3874863Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A46%3A49.2215532Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:48:02.8571337Z" + "CreatedOnDate": "2022-10-25T20:42:20.7274983Z" }, "properties": { "dataProtection": { @@ -4801,7 +3692,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/vaults/cbsvault" } }, - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-aac12d96", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -4832,19 +3723,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2a404281", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d1ae2248", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-aac12d96", - "poolId": "5a9b1946-01cd-41b5-9a4c-66326b84f021", + "poolId": "42e67581-855e-8082-da07-66342d5c0eec", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", - "fileSystemId": "5fc63c50-b61d-9011-5e71-2aa763b75a17", + "mountTargetId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", + "fileSystemId": "dcb5c19d-e094-e131-3023-0228c3b30e4f", "startIp": "", "endIp": "", "gateway": "", @@ -4876,10 +3767,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:42:47.0416494Z", + "createdAt": "2022-10-25T20:37:04.383152Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:48:03.0352805Z" + "lastModifiedAt": "2022-10-25T20:42:21.0452983Z" } } }, @@ -4890,7 +3781,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -4898,14 +3789,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:01:05 GMT", + "Date": "Tue, 25 Oct 2022 20:50:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce80261d-cd49-47da-8616-088570806ec3", + "x-ms-correlation-request-id": "03e5b48d-48ab-47ce-988c-e2b89dbeef59", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110106Z:ce80261d-cd49-47da-8616-088570806ec3" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205038Z:03e5b48d-48ab-47ce-988c-e2b89dbeef59" }, "ResponseBody": { "error": { @@ -4922,36 +3813,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ac3b42f-e461-4a6b-a68f-975364c1f7ed?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 11:01:07 GMT", + "Date": "Tue, 25 Oct 2022 20:50:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ac3b42f-e461-4a6b-a68f-975364c1f7ed?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb7b6e4a-b08d-4001-832c-b279e8c23557", + "x-ms-correlation-request-id": "42d9da84-251a-423a-a958-3c4ae2e76a9a", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110108Z:cb7b6e4a-b08d-4001-832c-b279e8c23557", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205040Z:42d9da84-251a-423a-a958-3c4ae2e76a9a", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ac3b42f-e461-4a6b-a68f-975364c1f7ed?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4959,7 +3850,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:01:38 GMT", + "Date": "Tue, 25 Oct 2022 20:50:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4967,17 +3858,217 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6927bfdd-8a46-4bec-813a-35a09053b569", + "x-ms-correlation-request-id": "e6991aa1-ad0e-40d6-a2ff-9e848f3976d7", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110138Z:6927bfdd-8a46-4bec-813a-35a09053b569", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205040Z:e6991aa1-ad0e-40d6-a2ff-9e848f3976d7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098", + "name": "1598ec66-dbdc-4974-9350-ca4383446098", + "status": "Deleting", + "startTime": "2022-10-25T20:50:40.0108635Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-aac12d96" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 20:51:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8996a6b7-cd12-43bb-b2d4-840a9b19967e", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205110Z:8996a6b7-cd12-43bb-b2d4-840a9b19967e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098", + "name": "1598ec66-dbdc-4974-9350-ca4383446098", + "status": "Deleting", + "startTime": "2022-10-25T20:50:40.0108635Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-aac12d96" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 20:51:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "732d9abc-23ad-4010-9f42-1370d4fa8457", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205140Z:732d9abc-23ad-4010-9f42-1370d4fa8457", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098", + "name": "1598ec66-dbdc-4974-9350-ca4383446098", + "status": "Deleting", + "startTime": "2022-10-25T20:50:40.0108635Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-aac12d96" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 20:52:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b0d59b83-2140-4078-91b2-52e02552502a", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205211Z:b0d59b83-2140-4078-91b2-52e02552502a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098", + "name": "1598ec66-dbdc-4974-9350-ca4383446098", + "status": "Deleting", + "startTime": "2022-10-25T20:50:40.0108635Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-aac12d96" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 20:52:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9c88d11a-8e50-4bbb-b049-4f779fb170db", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205241Z:9c88d11a-8e50-4bbb-b049-4f779fb170db", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098", + "name": "1598ec66-dbdc-4974-9350-ca4383446098", + "status": "Deleting", + "startTime": "2022-10-25T20:50:40.0108635Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-aac12d96" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 20:53:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "be758331-33c9-4262-bd6f-27f3728c0add", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205311Z:be758331-33c9-4262-bd6f-27f3728c0add", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ac3b42f-e461-4a6b-a68f-975364c1f7ed", - "name": "7ac3b42f-e461-4a6b-a68f-975364c1f7ed", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098", + "name": "1598ec66-dbdc-4974-9350-ca4383446098", "status": "Succeeded", - "startTime": "2022-09-20T11:01:08.5425308Z", - "endTime": "2022-09-20T11:01:09.3238483Z", + "startTime": "2022-10-25T20:50:40.0108635Z", + "endTime": "2022-10-25T20:52:45.0088482Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/accountBackups/sdk-py-tests-backup-1-aac12d96" @@ -4985,13 +4076,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7ac3b42f-e461-4a6b-a68f-975364c1f7ed?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1598ec66-dbdc-4974-9350-ca4383446098?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4999,7 +4090,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:01:39 GMT", + "Date": "Tue, 25 Oct 2022 20:53:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5007,9 +4098,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c161ade0-68b4-4dee-854b-b1cdbc48161f", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110139Z:c161ade0-68b4-4dee-854b-b1cdbc48161f", + "x-ms-correlation-request-id": "bb56d71d-070f-4e1d-9910-17349530ce7a", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205311Z:bb56d71d-070f-4e1d-9910-17349530ce7a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5026,7 +4117,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5034,7 +4125,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:01:42 GMT", + "Date": "Tue, 25 Oct 2022 20:53:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5042,9 +4133,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9dc6b3c2-6112-4e45-8000-41507204b443", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110142Z:9dc6b3c2-6112-4e45-8000-41507204b443", + "x-ms-correlation-request-id": "b188c351-059a-4714-a0b2-a226bd7469e8", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205313Z:b188c351-059a-4714-a0b2-a226bd7469e8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5553,36 +4644,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e0fa948-572a-490e-9efe-9509b06cb886?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56dec026-c1bf-499a-8db8-14ebf979537e?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 11:01:53 GMT", + "Date": "Tue, 25 Oct 2022 20:53:23 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e0fa948-572a-490e-9efe-9509b06cb886?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56dec026-c1bf-499a-8db8-14ebf979537e?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b900a5ef-1a72-4f20-8bea-de137c756320", + "x-ms-correlation-request-id": "c3a44d77-c8c7-49c2-a0cd-4d689f59bc97", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110153Z:b900a5ef-1a72-4f20-8bea-de137c756320", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205323Z:c3a44d77-c8c7-49c2-a0cd-4d689f59bc97", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e0fa948-572a-490e-9efe-9509b06cb886?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56dec026-c1bf-499a-8db8-14ebf979537e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5590,7 +4681,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:02:23 GMT", + "Date": "Tue, 25 Oct 2022 20:53:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5598,17 +4689,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a45e28b7-394c-4936-aa16-38dfdf7d8b02", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110223Z:a45e28b7-394c-4936-aa16-38dfdf7d8b02", + "x-ms-correlation-request-id": "1ed5e357-381f-4637-87c5-46664ca43025", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205324Z:1ed5e357-381f-4637-87c5-46664ca43025", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e0fa948-572a-490e-9efe-9509b06cb886", - "name": "7e0fa948-572a-490e-9efe-9509b06cb886", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56dec026-c1bf-499a-8db8-14ebf979537e", + "name": "56dec026-c1bf-499a-8db8-14ebf979537e", "status": "Succeeded", - "startTime": "2022-09-20T11:01:53.1848252Z", - "endTime": "2022-09-20T11:01:53.9505686Z", + "startTime": "2022-10-25T20:53:23.8805843Z", + "endTime": "2022-10-25T20:53:24.1305449Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1" @@ -5616,13 +4707,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e0fa948-572a-490e-9efe-9509b06cb886?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56dec026-c1bf-499a-8db8-14ebf979537e?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5630,7 +4721,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:02:23 GMT", + "Date": "Tue, 25 Oct 2022 20:53:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5638,22 +4729,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27727a2e-eecc-4878-a7b1-ba6b01c71129", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110223Z:27727a2e-eecc-4878-a7b1-ba6b01c71129", + "x-ms-correlation-request-id": "df55bac6-9587-45fa-b75b-8f0f3a1573a3", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205324Z:df55bac6-9587-45fa-b75b-8f0f3a1573a3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-aac12d96/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A01%3A53.1887913Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A53%3A23.8783605Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:42:02.3177672Z" + "CreatedOnDate": "2022-10-25T20:36:19.9818184Z" }, "properties": { - "poolId": "5a9b1946-01cd-41b5-9a4c-66326b84f021", + "poolId": "42e67581-855e-8082-da07-66342d5c0eec", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96/capacityPools/sdk-py-tests-pool-1", @@ -5667,10 +4758,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:42:03.5608523Z", + "createdAt": "2022-10-25T20:36:20.9664963Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:42:03.5608523Z" + "lastModifiedAt": "2022-10-25T20:36:20.9664963Z" } } }, @@ -5682,20 +4773,22 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 11:02:33 GMT", + "Date": "Tue, 25 Oct 2022 20:53:37 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1a7a7ec-999c-40f4-9d6d-2655c184a5b5", + "x-ms-correlation-request-id": "1b8316f7-dda1-42df-be55-3831b2fad443", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110234Z:a1a7a7ec-999c-40f4-9d6d-2655c184a5b5" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205338Z:1b8316f7-dda1-42df-be55-3831b2fad443", + "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, @@ -5707,20 +4800,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 11:02:43 GMT", + "Date": "Tue, 25 Oct 2022 20:53:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1da89d0e-6c51-4be0-bff3-275e8152110e", + "x-ms-correlation-request-id": "db14c87b-0d43-45f7-a885-0bf586c6c0a3", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110244Z:1da89d0e-6c51-4be0-bff3-275e8152110e" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205349Z:db14c87b-0d43-45f7-a885-0bf586c6c0a3" }, "ResponseBody": null }, @@ -5732,20 +4825,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 11:02:54 GMT", + "Date": "Tue, 25 Oct 2022 20:53:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0711fd33-59ba-4d82-b6c0-787250da300e", + "x-ms-correlation-request-id": "6b1e2452-b849-45de-b43f-50376ece0973", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110254Z:0711fd33-59ba-4d82-b6c0-787250da300e" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205359Z:6b1e2452-b849-45de-b43f-50376ece0973" }, "ResponseBody": null }, @@ -5757,20 +4850,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 11:03:04 GMT", + "Date": "Tue, 25 Oct 2022 20:54:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0e7fb96-f730-450c-8d5c-64f7bc3e1018", + "x-ms-correlation-request-id": "707735a5-1f2d-402d-bd86-92f1764f8b2c", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110305Z:c0e7fb96-f730-450c-8d5c-64f7bc3e1018" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205409Z:707735a5-1f2d-402d-bd86-92f1764f8b2c" }, "ResponseBody": null }, @@ -5781,7 +4874,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -5789,14 +4882,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:03:14 GMT", + "Date": "Tue, 25 Oct 2022 20:54:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5238883-36a3-4dd3-b071-7271b8f480a7", + "x-ms-correlation-request-id": "a8a1237d-cea2-4b4b-ae00-5d9fdd44cdb9", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110315Z:d5238883-36a3-4dd3-b071-7271b8f480a7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205419Z:a8a1237d-cea2-4b4b-ae00-5d9fdd44cdb9" }, "ResponseBody": { "error": { @@ -5813,36 +4906,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e41c48dd-1f2b-4787-9d18-11f84beff1f6?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4839b871-fc7a-4a19-9e7b-33361054766b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 11:03:16 GMT", + "Date": "Tue, 25 Oct 2022 20:54:20 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e41c48dd-1f2b-4787-9d18-11f84beff1f6?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4839b871-fc7a-4a19-9e7b-33361054766b?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84fa3b73-3a3a-49b0-9df4-b5e941922c3d", + "x-ms-correlation-request-id": "513114a2-93a4-438c-952c-3ae44babd4ec", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110316Z:84fa3b73-3a3a-49b0-9df4-b5e941922c3d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205420Z:513114a2-93a4-438c-952c-3ae44babd4ec", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e41c48dd-1f2b-4787-9d18-11f84beff1f6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4839b871-fc7a-4a19-9e7b-33361054766b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5850,7 +4943,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:03:47 GMT", + "Date": "Tue, 25 Oct 2022 20:54:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5858,17 +4951,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d757bd31-dbdf-4e74-9aae-d7127c1c587a", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110347Z:d757bd31-dbdf-4e74-9aae-d7127c1c587a", + "x-ms-correlation-request-id": "711c6759-d2e8-4ce6-a34c-bab377f893f4", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205421Z:711c6759-d2e8-4ce6-a34c-bab377f893f4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e41c48dd-1f2b-4787-9d18-11f84beff1f6", - "name": "e41c48dd-1f2b-4787-9d18-11f84beff1f6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4839b871-fc7a-4a19-9e7b-33361054766b", + "name": "4839b871-fc7a-4a19-9e7b-33361054766b", "status": "Succeeded", - "startTime": "2022-09-20T11:03:16.7742279Z", - "endTime": "2022-09-20T11:03:16.8524124Z", + "startTime": "2022-10-25T20:54:20.5463553Z", + "endTime": "2022-10-25T20:54:20.8433216Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96" @@ -5876,13 +4969,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e41c48dd-1f2b-4787-9d18-11f84beff1f6?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4839b871-fc7a-4a19-9e7b-33361054766b?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5890,7 +4983,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:03:47 GMT", + "Date": "Tue, 25 Oct 2022 20:54:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5898,19 +4991,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "543c29b5-61ea-4894-aaf3-47a5f7bf2688", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110347Z:543c29b5-61ea-4894-aaf3-47a5f7bf2688", + "x-ms-correlation-request-id": "271e7fee-934e-4d03-9d29-6a19e0338841", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205421Z:271e7fee-934e-4d03-9d29-6a19e0338841", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96", "name": "sdk-py-tests-acc-1-aac12d96", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A03%3A16.7828378Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T20%3A54%3A20.4701133Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:41:28.2244607Z" + "CreatedOnDate": "2022-10-25T20:36:15.8009879Z" }, "properties": { "encryption": { @@ -5921,10 +5014,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:41:29.0356105Z", + "createdAt": "2022-10-25T20:36:16.7609056Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:41:29.0356105Z" + "lastModifiedAt": "2022-10-25T20:36:16.7609056Z" } } }, @@ -5935,50 +5028,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:03:47 GMT", + "Date": "Tue, 25 Oct 2022 20:54:21 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a5356f1-e475-4ca6-a069-e03669779a5e", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110347Z:8a5356f1-e475-4ca6-a069-e03669779a5e" + "x-ms-correlation-request-id": "a96dbffe-4c38-4b87-ace1-c16d47f0a273", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205421Z:a96dbffe-4c38-4b87-ace1-c16d47f0a273", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-aac12d96\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-aac12d96?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fbe73c91-1316-47d4-8137-7957f551b07a?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d6b4a9f7-24c4-4c13-b49a-b0e201ae39e4?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 11:03:48 GMT", + "Date": "Tue, 25 Oct 2022 20:54:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/fbe73c91-1316-47d4-8137-7957f551b07a?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/d6b4a9f7-24c4-4c13-b49a-b0e201ae39e4?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -5987,10 +5082,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "79bd54cc-00f9-474d-b9ad-242d9ddcd1d3", - "x-ms-correlation-request-id": "b21de782-b620-4bfe-b914-4ca1a5be6aa5", + "x-ms-arm-service-request-id": "3dc0570f-ee87-45c6-b454-6227b12e7d7e", + "x-ms-correlation-request-id": "e9f877bf-50fd-40d5-a449-4c8948a2f759", "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110348Z:b21de782-b620-4bfe-b914-4ca1a5be6aa5" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T205423Z:e9f877bf-50fd-40d5-a449-4c8948a2f759" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_get_account_backups.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_get_account_backups.json index 0e5daeb21ac5..99ed7eef5b40 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_get_account_backups.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_get_account_backups.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:09 GMT", + "Date": "Tue, 25 Oct 2022 09:02:42 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:09 GMT", + "Date": "Tue, 25 Oct 2022 09:02:42 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "ccfe41a8-8aee-432a-99ef-2751af8657d0", + "client-request-id": "82546634-a14d-4852-9359-a260b9415cb4", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "ccfe41a8-8aee-432a-99ef-2751af8657d0", + "client-request-id": "82546634-a14d-4852-9359-a260b9415cb4", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:10 GMT", + "Date": "Tue, 25 Oct 2022 09:02:42 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d810d5d4-4e65-4b92-b7b9-3b79b71ae94f?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8ecdb7ff-1e47-4698-83da-e89027e78fef?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:14 GMT", + "Date": "Tue, 25 Oct 2022 09:02:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "981da580-9335-4c93-abee-26dcf41ab0fe", - "x-ms-correlation-request-id": "567f9016-bdb8-4bfd-b624-709a7e969822", + "x-ms-arm-service-request-id": "27ebda02-8342-4490-a3cc-7b34db8e1d44", + "x-ms-correlation-request-id": "5e934137-69d4-4987-b6eb-f12537a85307", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101815Z:567f9016-bdb8-4bfd-b624-709a7e969822" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090253Z:5e934137-69d4-4987-b6eb-f12537a85307" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-219c2c63", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63", - "etag": "W/\u0022d1519a36-ed1d-4222-8454-f8064d839060\u0022", + "etag": "W/\u0022d3308619-1ea3-45d4-a4ab-85c64de95dd9\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:18:11.3757545Z" + "CreatedOnDate": "2022-10-25T09:02:45.8586789Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "933442b0-074f-42ee-ba5d-3692c33aa08f", + "resourceGuid": "16f50d46-eff8-4abb-9611-abb7c217bd3c", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d810d5d4-4e65-4b92-b7b9-3b79b71ae94f?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8ecdb7ff-1e47-4698-83da-e89027e78fef?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:18 GMT", + "Date": "Tue, 25 Oct 2022 09:02:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f700e6fd-2fa2-4a0d-8f4c-07e9d70374af", - "x-ms-correlation-request-id": "287b7523-eefa-4eb1-b9df-5c4afc65f784", + "x-ms-arm-service-request-id": "130dce0a-77de-4ee1-816d-a0e7dd20730f", + "x-ms-correlation-request-id": "3cec9063-e425-42ef-8753-ec350ba0d5c9", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101818Z:287b7523-eefa-4eb1-b9df-5c4afc65f784" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090253Z:3cec9063-e425-42ef-8753-ec350ba0d5c9" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:19 GMT", - "ETag": "W/\u00220174af52-561a-4b76-a53e-1ec88c3a83e9\u0022", + "Date": "Tue, 25 Oct 2022 09:02:53 GMT", + "ETag": "W/\u0022878b3232-27ea-4725-95a0-c32b450063a9\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "612b4363-2643-4e50-9080-1ce847c38488", - "x-ms-correlation-request-id": "e8729c85-08b4-49e6-a2b7-ae3b173cf907", + "x-ms-arm-service-request-id": "5ec12506-b4d2-4aaa-9b33-c0ac1d809006", + "x-ms-correlation-request-id": "dc3df938-6295-4055-9332-9a84f946e939", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101820Z:e8729c85-08b4-49e6-a2b7-ae3b173cf907" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090253Z:dc3df938-6295-4055-9332-9a84f946e939" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-219c2c63", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63", - "etag": "W/\u00220174af52-561a-4b76-a53e-1ec88c3a83e9\u0022", + "etag": "W/\u0022878b3232-27ea-4725-95a0-c32b450063a9\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:18:11.3757545Z" + "CreatedOnDate": "2022-10-25T09:02:45.8586789Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "933442b0-074f-42ee-ba5d-3692c33aa08f", + "resourceGuid": "16f50d46-eff8-4abb-9611-abb7c217bd3c", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/59bcfc5c-fb9f-409f-971b-41187152bd8e?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3a41caca-8daf-4fc5-8787-5dddd8c70919?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:20 GMT", + "Date": "Tue, 25 Oct 2022 09:02:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "19fe945a-2fa0-4da6-a930-fc791e1ca8a4", - "x-ms-correlation-request-id": "c0eb2b9f-5369-4dd2-899b-7e2a3b535c13", + "x-ms-arm-service-request-id": "e920c058-b4fc-46a7-8477-d57012b45eca", + "x-ms-correlation-request-id": "9562c026-b965-4ca2-a8d8-9d22e5590dbe", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101820Z:c0eb2b9f-5369-4dd2-899b-7e2a3b535c13" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090254Z:9562c026-b965-4ca2-a8d8-9d22e5590dbe" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default", - "etag": "W/\u0022c05e4e85-752c-4f35-91b9-f0e60c2ad6f1\u0022", + "etag": "W/\u00223f2484fe-132e-4bb2-9204-e7383541f50a\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022c05e4e85-752c-4f35-91b9-f0e60c2ad6f1\u0022", + "etag": "W/\u00223f2484fe-132e-4bb2-9204-e7383541f50a\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/59bcfc5c-fb9f-409f-971b-41187152bd8e?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3a41caca-8daf-4fc5-8787-5dddd8c70919?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:23 GMT", + "Date": "Tue, 25 Oct 2022 09:02:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0f74aad2-fef1-475c-b3ff-8ab4b76a6311", - "x-ms-correlation-request-id": "947b16f9-1774-4e2e-9087-2ecb55b816d6", + "x-ms-arm-service-request-id": "a7899a4a-5242-4aca-9b0f-435a55a58afb", + "x-ms-correlation-request-id": "abff3f5b-2050-4891-82f8-f067452576ce", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101824Z:947b16f9-1774-4e2e-9087-2ecb55b816d6" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090254Z:abff3f5b-2050-4891-82f8-f067452576ce" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:23 GMT", - "ETag": "W/\u0022f8f6784c-462c-440a-8b44-de2dc1f0915a\u0022", + "Date": "Tue, 25 Oct 2022 09:02:54 GMT", + "ETag": "W/\u00227bcc0a72-15d6-4fe3-8f20-5bea253a54ea\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "68dd4b18-4d88-411b-b386-1f51497fd1b4", - "x-ms-correlation-request-id": "4933a286-3ce1-429b-852c-5402e78eb26a", + "x-ms-arm-service-request-id": "b92dd0dc-4855-4f5f-8208-cbf537c73a29", + "x-ms-correlation-request-id": "3fda7b71-09fa-44de-ab3f-01b5d2ba6415", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101824Z:4933a286-3ce1-429b-852c-5402e78eb26a" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090255Z:3fda7b71-09fa-44de-ab3f-01b5d2ba6415" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default", - "etag": "W/\u0022f8f6784c-462c-440a-8b44-de2dc1f0915a\u0022", + "etag": "W/\u00227bcc0a72-15d6-4fe3-8f20-5bea253a54ea\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022f8f6784c-462c-440a-8b44-de2dc1f0915a\u0022", + "etag": "W/\u00227bcc0a72-15d6-4fe3-8f20-5bea253a54ea\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:24 GMT", + "Date": "Tue, 25 Oct 2022 09:02:54 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:24 GMT", + "Date": "Tue, 25 Oct 2022 09:02:54 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "491c30ab-86e7-4902-9521-adaf5e7b8ead", + "client-request-id": "75a4d025-32ea-44bb-ac61-0dcbb4bb27a5", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "491c30ab-86e7-4902-9521-adaf5e7b8ead", + "client-request-id": "75a4d025-32ea-44bb-ac61-0dcbb4bb27a5", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:24 GMT", + "Date": "Tue, 25 Oct 2022 09:02:54 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02b4a720-4acf-4cb4-9eb6-e3a179b13c79?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7371791c-f7ad-41ed-938f-a49fe77fc2bd?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "706", + "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:18:33 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A18%3A27.6811057Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:02:59 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A02%3A58.6318451Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e36249c-1824-48f8-a806-07dd5fb7fb6b", + "x-ms-correlation-request-id": "29224e1e-9d76-4fe2-9117-3598768031af", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101834Z:6e36249c-1824-48f8-a806-07dd5fb7fb6b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090259Z:29224e1e-9d76-4fe2-9117-3598768031af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A18%3A27.6811057Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A02%3A58.6318451Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:18:25.7883446Z" + "CreatedOnDate": "2022-10-25T09:02:56.7900761Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:18:26.7644288Z", + "createdAt": "2022-10-25T09:02:57.673601Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:18:26.7644288Z" + "lastModifiedAt": "2022-10-25T09:02:57.673601Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02b4a720-4acf-4cb4-9eb6-e3a179b13c79?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7371791c-f7ad-41ed-938f-a49fe77fc2bd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:19:04 GMT", + "Date": "Tue, 25 Oct 2022 09:02:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bae68aaf-f5ad-4371-bcc7-0c25d8f7f841", + "x-ms-correlation-request-id": "d6043ddd-dcfd-404c-9ac0-736e03af70ad", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101904Z:bae68aaf-f5ad-4371-bcc7-0c25d8f7f841", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090300Z:d6043ddd-dcfd-404c-9ac0-736e03af70ad", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02b4a720-4acf-4cb4-9eb6-e3a179b13c79", - "name": "02b4a720-4acf-4cb4-9eb6-e3a179b13c79", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7371791c-f7ad-41ed-938f-a49fe77fc2bd", + "name": "7371791c-f7ad-41ed-938f-a49fe77fc2bd", "status": "Succeeded", - "startTime": "2022-09-20T10:18:27.6844138Z", - "endTime": "2022-09-20T10:18:27.7625558Z", + "startTime": "2022-10-25T09:02:58.6165033Z", + "endTime": "2022-10-25T09:02:58.6634031Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:19:05 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A18%3A27.7392278Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:03:00 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A02%3A58.6655845Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a922420e-9865-43a0-98d7-64c0b6d503a1", + "x-ms-correlation-request-id": "692feff2-ffef-4f95-881c-4772dd900bc5", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101905Z:a922420e-9865-43a0-98d7-64c0b6d503a1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090300Z:692feff2-ffef-4f95-881c-4772dd900bc5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A18%3A27.7392278Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A02%3A58.6655845Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:18:25.7883446Z" + "CreatedOnDate": "2022-10-25T09:02:56.7900761Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:18:26.7644288Z", + "createdAt": "2022-10-25T09:02:57.673601Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:18:26.7644288Z" + "lastModifiedAt": "2022-10-25T09:02:57.673601Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/680bf51a-f318-48f8-a507-76a1c89c9697?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d457da53-49d5-471c-a351-90a849343b3f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:19:08 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A19%3A07.4722748Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:03:02 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A03%3A02.1536748Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6efa0516-b7a7-490d-86bf-073d354dee56", + "x-ms-correlation-request-id": "c8775e60-8821-4930-961b-73dbde39c0cb", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101908Z:6efa0516-b7a7-490d-86bf-073d354dee56", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090303Z:c8775e60-8821-4930-961b-73dbde39c0cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A19%3A07.4722748Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A03%3A02.1536748Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:19:05.6868195Z" + "CreatedOnDate": "2022-10-25T09:03:00.9234648Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:07.2926637Z", + "createdAt": "2022-10-25T09:03:01.8940277Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:19:07.2926637Z" + "lastModifiedAt": "2022-10-25T09:03:01.8940277Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/680bf51a-f318-48f8-a507-76a1c89c9697?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d457da53-49d5-471c-a351-90a849343b3f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:19:38 GMT", + "Date": "Tue, 25 Oct 2022 09:03:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e337b8b8-f1b3-4a17-90af-b080c5094bf2", + "x-ms-correlation-request-id": "668ce4b4-1260-473e-ae92-af95ee8333fe", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101939Z:e337b8b8-f1b3-4a17-90af-b080c5094bf2", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090303Z:668ce4b4-1260-473e-ae92-af95ee8333fe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/680bf51a-f318-48f8-a507-76a1c89c9697", - "name": "680bf51a-f318-48f8-a507-76a1c89c9697", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d457da53-49d5-471c-a351-90a849343b3f", + "name": "d457da53-49d5-471c-a351-90a849343b3f", "status": "Succeeded", - "startTime": "2022-09-20T10:19:07.4961068Z", - "endTime": "2022-09-20T10:19:07.6367437Z", + "startTime": "2022-10-25T09:03:02.1480775Z", + "endTime": "2022-10-25T09:03:03.0700216Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:19:39 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A19%3A07.6363571Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:03:03 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A03%3A03.063087Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7b1707a-f369-4170-a346-5b088e13c4a0", + "x-ms-correlation-request-id": "8e5fb1d2-d197-4c2e-97de-49b224b1713d", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101939Z:d7b1707a-f369-4170-a346-5b088e13c4a0", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090303Z:8e5fb1d2-d197-4c2e-97de-49b224b1713d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A19%3A07.6363571Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A03%3A03.063087Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:19:05.6868195Z" + "CreatedOnDate": "2022-10-25T09:03:00.9234648Z" }, "properties": { - "poolId": "0c111b7d-1311-7ff4-7aa9-d421dc168d2e", + "poolId": "5045f8f0-9afd-6de9-9d66-8ba3729cf58a", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:07.2926637Z", + "createdAt": "2022-10-25T09:03:01.8940277Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:19:07.2926637Z" + "lastModifiedAt": "2022-10-25T09:03:01.8940277Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:19:52 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A19%3A51.7848582Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:03:15 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A03%3A15.4424939Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b65d7ec2-3f5f-4536-9229-e12c8d0fe9b5", + "x-ms-correlation-request-id": "9d8ff36f-df2c-4fc7-a96a-30e2d3c71ecf", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101953Z:b65d7ec2-3f5f-4536-9229-e12c8d0fe9b5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090316Z:9d8ff36f-df2c-4fc7-a96a-30e2d3c71ecf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A19%3A51.7848582Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A03%3A15.4424939Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:19:49.6571760Z" + "CreatedOnDate": "2022-10-25T09:03:14.0097929Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:50.8890043Z", + "createdAt": "2022-10-25T09:03:15.1394661Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:19:50.8890043Z" + "lastModifiedAt": "2022-10-25T09:03:15.1394661Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:20:22 GMT", + "Date": "Tue, 25 Oct 2022 09:03:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c0d1ac6-e0d8-4dee-afd0-382af5cfb46b", + "x-ms-correlation-request-id": "307b935d-dbaa-43d4-b987-d3e93d320faf", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102023Z:5c0d1ac6-e0d8-4dee-afd0-382af5cfb46b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090316Z:307b935d-dbaa-43d4-b987-d3e93d320faf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97", - "name": "20d128e0-a73c-4451-83cd-eafcea573c97", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", "status": "Creating", - "startTime": "2022-09-20T10:19:51.7827692Z", + "startTime": "2022-10-25T09:03:15.4278591Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:20:52 GMT", + "Date": "Tue, 25 Oct 2022 09:03:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fca1f25c-d807-4c75-a73b-71d097d528c6", + "x-ms-correlation-request-id": "6341c5e4-516d-4e08-a341-607ea030882d", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102053Z:fca1f25c-d807-4c75-a73b-71d097d528c6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090346Z:6341c5e4-516d-4e08-a341-607ea030882d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97", - "name": "20d128e0-a73c-4451-83cd-eafcea573c97", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", "status": "Creating", - "startTime": "2022-09-20T10:19:51.7827692Z", + "startTime": "2022-10-25T09:03:15.4278591Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:21:23 GMT", + "Date": "Tue, 25 Oct 2022 09:04:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ab6b821-34f3-40b9-a26f-5c3c520f20e6", + "x-ms-correlation-request-id": "9df97864-278d-48d0-bf9f-a29e5c80f117", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102123Z:3ab6b821-34f3-40b9-a26f-5c3c520f20e6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090417Z:9df97864-278d-48d0-bf9f-a29e5c80f117", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97", - "name": "20d128e0-a73c-4451-83cd-eafcea573c97", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", "status": "Creating", - "startTime": "2022-09-20T10:19:51.7827692Z", + "startTime": "2022-10-25T09:03:15.4278591Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:21:53 GMT", + "Date": "Tue, 25 Oct 2022 09:04:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb6527d5-57a6-484b-a385-39b672eb5489", + "x-ms-correlation-request-id": "edbae2b1-6b66-49e2-a85a-92e8c6d1b098", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102154Z:fb6527d5-57a6-484b-a385-39b672eb5489", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090447Z:edbae2b1-6b66-49e2-a85a-92e8c6d1b098", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97", - "name": "20d128e0-a73c-4451-83cd-eafcea573c97", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", "status": "Creating", - "startTime": "2022-09-20T10:19:51.7827692Z", + "startTime": "2022-10-25T09:03:15.4278591Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:22:23 GMT", + "Date": "Tue, 25 Oct 2022 09:05:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d4a26bd-1751-46b8-b45c-5b873118fd9b", + "x-ms-correlation-request-id": "4dcb4d34-7cb4-4378-a11e-1248bc466f15", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102224Z:6d4a26bd-1751-46b8-b45c-5b873118fd9b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090517Z:4dcb4d34-7cb4-4378-a11e-1248bc466f15", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97", - "name": "20d128e0-a73c-4451-83cd-eafcea573c97", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", "status": "Creating", - "startTime": "2022-09-20T10:19:51.7827692Z", + "startTime": "2022-10-25T09:03:15.4278591Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:22:54 GMT", + "Date": "Tue, 25 Oct 2022 09:05:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c112b62f-d209-4f6b-b6d6-820bdb140f1f", + "x-ms-correlation-request-id": "0b7f201d-e7ce-4933-96b5-58adea55012e", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102254Z:c112b62f-d209-4f6b-b6d6-820bdb140f1f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090548Z:0b7f201d-e7ce-4933-96b5-58adea55012e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97", - "name": "20d128e0-a73c-4451-83cd-eafcea573c97", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", "status": "Creating", - "startTime": "2022-09-20T10:19:51.7827692Z", + "startTime": "2022-10-25T09:03:15.4278591Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:23:24 GMT", + "Date": "Tue, 25 Oct 2022 09:06:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a525eb35-f974-40be-843b-acf1d5adbb3c", + "x-ms-correlation-request-id": "8bf7debd-b84f-41ee-9686-9597e52b9977", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102324Z:a525eb35-f974-40be-843b-acf1d5adbb3c", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090618Z:8bf7debd-b84f-41ee-9686-9597e52b9977", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97", - "name": "20d128e0-a73c-4451-83cd-eafcea573c97", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", "status": "Creating", - "startTime": "2022-09-20T10:19:51.7827692Z", + "startTime": "2022-10-25T09:03:15.4278591Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:23:55 GMT", + "Date": "Tue, 25 Oct 2022 09:06:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,16 +1486,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f7522dc-b32c-4fe6-87ad-50bd1aecb525", + "x-ms-correlation-request-id": "cf1339d3-45c1-40e5-90c1-dac55947bd98", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102355Z:3f7522dc-b32c-4fe6-87ad-50bd1aecb525", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090648Z:cf1339d3-45c1-40e5-90c1-dac55947bd98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97", - "name": "20d128e0-a73c-4451-83cd-eafcea573c97", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", "status": "Creating", - "startTime": "2022-09-20T10:19:51.7827692Z", + "startTime": "2022-10-25T09:03:15.4278591Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1503,13 +1504,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,7 +1518,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:24:26 GMT", + "Date": "Tue, 25 Oct 2022 09:07:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1525,17 +1526,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61cbdd8c-bd3c-4176-9225-de6be9c9a24a", + "x-ms-correlation-request-id": "95b533ac-5aa2-41bd-8979-baf92831b2f8", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102426Z:61cbdd8c-bd3c-4176-9225-de6be9c9a24a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090718Z:95b533ac-5aa2-41bd-8979-baf92831b2f8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", + "status": "Creating", + "startTime": "2022-10-25T09:03:15.4278591Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 09:07:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "058d522b-bee9-4a1e-955d-8dc9b4bf13f0", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090749Z:058d522b-bee9-4a1e-955d-8dc9b4bf13f0", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", + "status": "Creating", + "startTime": "2022-10-25T09:03:15.4278591Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 09:08:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4e96ed74-fcf4-4ced-a9f8-335e1e016280", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090820Z:4e96ed74-fcf4-4ced-a9f8-335e1e016280", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20d128e0-a73c-4451-83cd-eafcea573c97", - "name": "20d128e0-a73c-4451-83cd-eafcea573c97", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc415bc5-d900-427f-bc82-0261876c7fc5", + "name": "cc415bc5-d900-427f-bc82-0261876c7fc5", "status": "Succeeded", - "startTime": "2022-09-20T10:19:51.7827692Z", - "endTime": "2022-09-20T10:24:01.4099109Z", + "startTime": "2022-10-25T09:03:15.4278591Z", + "endTime": "2022-10-25T09:07:50.1146743Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" @@ -1549,7 +1630,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1557,8 +1638,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:24:26 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A24%3A01.4096296Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:08:20 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A07%3A50.1141321Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1566,22 +1647,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eba43b5b-c4fa-4435-bcb7-251fa80749d8", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102426Z:eba43b5b-c4fa-4435-bcb7-251fa80749d8", + "x-ms-correlation-request-id": "781fbcb3-8980-4ac4-a9f3-cb75e45d04fb", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090820Z:781fbcb3-8980-4ac4-a9f3-cb75e45d04fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A24%3A01.4096296Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A07%3A50.1141321Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:19:49.6571760Z" + "CreatedOnDate": "2022-10-25T09:03:14.0097929Z" }, "properties": { - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-219c2c63", "usageThreshold": 107374182400, @@ -1609,7 +1690,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_71054086", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0139ad84", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1624,8 +1705,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "mountTargetId": "5f685ea2-1080-d509-f47d-4d3b46920259", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "ipAddress": "10.0.0.4" } ], @@ -1645,10 +1726,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:50.8890043Z", + "createdAt": "2022-10-25T09:03:15.1394661Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:19:50.8890043Z" + "lastModifiedAt": "2022-10-25T09:03:15.1394661Z" } } }, @@ -1659,7 +1740,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1667,8 +1748,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:24:37 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A24%3A01.4096296Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:08:30 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A07%3A50.1141321Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1676,22 +1757,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5df294bf-3178-4326-a156-1e4defd81d88", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102437Z:5df294bf-3178-4326-a156-1e4defd81d88", + "x-ms-correlation-request-id": "d30db76e-f7b1-49e2-8245-9b27ea6698ef", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090830Z:d30db76e-f7b1-49e2-8245-9b27ea6698ef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A24%3A01.4096296Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A07%3A50.1141321Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:19:49.6571760Z" + "CreatedOnDate": "2022-10-25T09:03:14.0097929Z" }, "properties": { - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-219c2c63", "usageThreshold": 107374182400, @@ -1719,7 +1800,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_71054086", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0139ad84", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1734,8 +1815,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "mountTargetId": "5f685ea2-1080-d509-f47d-4d3b46920259", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "ipAddress": "10.0.0.4" } ], @@ -1755,10 +1836,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:50.8890043Z", + "createdAt": "2022-10-25T09:03:15.1394661Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:19:50.8890043Z" + "lastModifiedAt": "2022-10-25T09:03:15.1394661Z" } } }, @@ -1769,7 +1850,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1777,7 +1858,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:24:37 GMT", + "Date": "Tue, 25 Oct 2022 09:08:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1785,9 +1866,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c15764d6-a054-4e75-b015-00185a1ba510", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102437Z:c15764d6-a054-4e75-b015-00185a1ba510", + "x-ms-correlation-request-id": "68c8cf26-34d2-444d-9839-ca51e6e83fdf", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090831Z:68c8cf26-34d2-444d-9839-ca51e6e83fdf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1810,7 +1891,7 @@ "Connection": "keep-alive", "Content-Length": "412", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1829,35 +1910,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a3406fb4-91f8-4357-bc38-bd991e86703b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b637ec7-004b-49a8-bc93-40b7b7d2d504?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "2480", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:24:38 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A24%3A38.0067326Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:08:32 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A08%3A32.1522689Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a3406fb4-91f8-4357-bc38-bd991e86703b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b637ec7-004b-49a8-bc93-40b7b7d2d504?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb1c4322-685c-4c7c-8bb9-8f35071cc482", + "x-ms-correlation-request-id": "5f929f27-7225-4cdf-aede-052751b58e14", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102438Z:bb1c4322-685c-4c7c-8bb9-8f35071cc482", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090832Z:5f929f27-7225-4cdf-aede-052751b58e14", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A24%3A38.0067326Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A08%3A32.1522689Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:19:49.6571760Z" + "CreatedOnDate": "2022-10-25T09:03:14.0097929Z" }, "properties": { "provisioningState": "Patching", - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-219c2c63", "usageThreshold": 107374182400, @@ -1885,7 +1966,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_71054086", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0139ad84", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1900,8 +1981,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "mountTargetId": "5f685ea2-1080-d509-f47d-4d3b46920259", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "ipAddress": "10.0.0.4" } ], @@ -1920,21 +2001,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:50.8890043Z", + "createdAt": "2022-10-25T09:03:15.1394661Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:19:50.8890043Z" + "lastModifiedAt": "2022-10-25T09:03:15.1394661Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a3406fb4-91f8-4357-bc38-bd991e86703b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b637ec7-004b-49a8-bc93-40b7b7d2d504?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1942,7 +2023,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:25:07 GMT", + "Date": "Tue, 25 Oct 2022 09:08:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1950,17 +2031,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c451f40-6c16-4d88-a5e5-59d1bdb83d39", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102508Z:9c451f40-6c16-4d88-a5e5-59d1bdb83d39", + "x-ms-correlation-request-id": "4384b2eb-ddcf-4e0b-9210-886f32a6d88c", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090832Z:4384b2eb-ddcf-4e0b-9210-886f32a6d88c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b637ec7-004b-49a8-bc93-40b7b7d2d504", + "name": "1b637ec7-004b-49a8-bc93-40b7b7d2d504", + "status": "Patching", + "startTime": "2022-10-25T09:08:32.1578206Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b637ec7-004b-49a8-bc93-40b7b7d2d504?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 09:09:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e458033d-77fa-4000-91f6-62f1a0f4b2e3", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090902Z:e458033d-77fa-4000-91f6-62f1a0f4b2e3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a3406fb4-91f8-4357-bc38-bd991e86703b", - "name": "a3406fb4-91f8-4357-bc38-bd991e86703b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b637ec7-004b-49a8-bc93-40b7b7d2d504", + "name": "1b637ec7-004b-49a8-bc93-40b7b7d2d504", "status": "Succeeded", - "startTime": "2022-09-20T10:24:38.0026862Z", - "endTime": "2022-09-20T10:24:40.9095169Z", + "startTime": "2022-10-25T09:08:32.1578206Z", + "endTime": "2022-10-25T09:08:35.4080846Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" @@ -1968,13 +2089,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a3406fb4-91f8-4357-bc38-bd991e86703b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b637ec7-004b-49a8-bc93-40b7b7d2d504?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1982,7 +2103,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:25:08 GMT", + "Date": "Tue, 25 Oct 2022 09:09:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1990,19 +2111,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eee8dd21-fcf4-4635-926c-dfcf3dd934e2", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102508Z:eee8dd21-fcf4-4635-926c-dfcf3dd934e2", + "x-ms-correlation-request-id": "1022e76d-df1c-450a-8761-46bfad41460e", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090903Z:1022e76d-df1c-450a-8761-46bfad41460e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A24%3A40.9119945Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A08%3A35.4074201Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:24:37.6777052Z" + "CreatedOnDate": "2022-10-25T09:08:31.8324938Z" }, "properties": { "dataProtection": { @@ -2012,7 +2133,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault" } }, - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-219c2c63", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2043,19 +2164,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_71054086", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0139ad84", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", - "poolId": "0c111b7d-1311-7ff4-7aa9-d421dc168d2e", + "poolId": "5045f8f0-9afd-6de9-9d66-8ba3729cf58a", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "mountTargetId": "5f685ea2-1080-d509-f47d-4d3b46920259", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "startIp": "", "endIp": "", "gateway": "", @@ -2087,10 +2208,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:50.8890043Z", + "createdAt": "2022-10-25T09:03:15.1394661Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:24:37.8769317Z" + "lastModifiedAt": "2022-10-25T09:08:32.0019093Z" } } }, @@ -2103,7 +2224,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -2113,20 +2234,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdfdc31e-7051-4bfe-a713-1ccf68ca283e?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/66444503-b8e6-4c00-96ac-45449d667105?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:25:08 GMT", + "Date": "Tue, 25 Oct 2022 09:09:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdfdc31e-7051-4bfe-a713-1ccf68ca283e?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/66444503-b8e6-4c00-96ac-45449d667105?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abd4914d-36d6-4bc0-9f9a-54bf5dfa0c10", + "x-ms-correlation-request-id": "89de835a-63f2-499a-b7b6-60c2966233a9", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102509Z:abd4914d-36d6-4bc0-9f9a-54bf5dfa0c10", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090903Z:89de835a-63f2-499a-b7b6-60c2966233a9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2141,13 +2262,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdfdc31e-7051-4bfe-a713-1ccf68ca283e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/66444503-b8e6-4c00-96ac-45449d667105?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2155,7 +2276,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:25:38 GMT", + "Date": "Tue, 25 Oct 2022 09:09:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2163,109 +2284,104 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd05bd8d-12f7-4bdb-9ea7-69a556d18b50", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102539Z:cd05bd8d-12f7-4bdb-9ea7-69a556d18b50", + "x-ms-correlation-request-id": "44fc1886-22a2-4e5e-a9f1-735f7f66781a", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090903Z:44fc1886-22a2-4e5e-a9f1-735f7f66781a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdfdc31e-7051-4bfe-a713-1ccf68ca283e", - "name": "bdfdc31e-7051-4bfe-a713-1ccf68ca283e", - "status": "Succeeded", - "startTime": "2022-09-20T10:25:09.0700005Z", - "endTime": "2022-09-20T10:25:09.2888148Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/66444503-b8e6-4c00-96ac-45449d667105", + "name": "66444503-b8e6-4c00-96ac-45449d667105", + "status": "Creating", + "startTime": "2022-10-25T09:09:03.4574895Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bdfdc31e-7051-4bfe-a713-1ccf68ca283e?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/66444503-b8e6-4c00-96ac-45449d667105?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "780", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:25:38 GMT", + "Date": "Tue, 25 Oct 2022 09:09:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dadb3841-e755-4c4e-9ab8-9c72b0146420", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102539Z:dadb3841-e755-4c4e-9ab8-9c72b0146420", + "x-ms-correlation-request-id": "aaac7ddf-9087-4fa8-9ec8-d1cc27c53684", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090934Z:aaac7ddf-9087-4fa8-9ec8-d1cc27c53684", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/20/2022 10:25:09 AM", - "location": "", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/66444503-b8e6-4c00-96ac-45449d667105", + "name": "66444503-b8e6-4c00-96ac-45449d667105", + "status": "Succeeded", + "startTime": "2022-10-25T09:09:03.4574895Z", + "endTime": "2022-10-25T09:09:05.1483812Z", + "percentComplete": 100.0, "properties": { - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", - "creationDate": "0001-01-01T00:00:00Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "failureReason": "None", - "useExistingSnapshot": false, - "provisioningState": "Creating" + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/66444503-b8e6-4c00-96ac-45449d667105?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "780", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:25:50 GMT", + "Date": "Tue, 25 Oct 2022 09:09:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3032dd9d-ea55-4967-935a-a8e8f2c3fc57", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102550Z:3032dd9d-ea55-4967-935a-a8e8f2c3fc57", + "x-ms-correlation-request-id": "8abd8b2c-6d10-4b9e-82af-638d40b57a39", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090934Z:8abd8b2c-6d10-4b9e-82af-638d40b57a39", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "etag": "10/25/2022 9:09:05 AM", + "location": "", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", + "creationDate": "0001-01-01T00:00:00Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false + "failureReason": "None", + "useExistingSnapshot": false, + "provisioningState": "Creating" } } }, @@ -2276,7 +2392,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2284,7 +2400,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:26:00 GMT", + "Date": "Tue, 25 Oct 2022 09:09:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2292,9 +2408,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aef149dd-4cdb-4700-8229-8feeed0c4ac5", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102600Z:aef149dd-4cdb-4700-8229-8feeed0c4ac5", + "x-ms-correlation-request-id": "d6d8f35b-4ad0-40ff-81b4-964684c7c0a3", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090945Z:d6d8f35b-4ad0-40ff-81b4-964684c7c0a3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2303,12 +2419,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2321,7 +2437,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2329,7 +2445,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:26:11 GMT", + "Date": "Tue, 25 Oct 2022 09:09:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2337,9 +2453,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25fc4187-53ef-45f0-8afb-fc38de580c7f", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102611Z:25fc4187-53ef-45f0-8afb-fc38de580c7f", + "x-ms-correlation-request-id": "d04b8e2a-6b52-4231-8d04-1f72c1a25068", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T090955Z:d04b8e2a-6b52-4231-8d04-1f72c1a25068", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2348,12 +2464,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2366,7 +2482,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2374,7 +2490,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:26:22 GMT", + "Date": "Tue, 25 Oct 2022 09:10:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2382,9 +2498,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "990501b4-0c4f-42ee-a788-11ef72e7fcd7", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102622Z:990501b4-0c4f-42ee-a788-11ef72e7fcd7", + "x-ms-correlation-request-id": "a4b8a4ad-0ee0-468e-9d0a-df8535a037a9", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091007Z:a4b8a4ad-0ee0-468e-9d0a-df8535a037a9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2393,12 +2509,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2411,7 +2527,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2419,7 +2535,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:26:33 GMT", + "Date": "Tue, 25 Oct 2022 09:10:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2427,9 +2543,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2e2dd68-7ee6-4eb9-acee-12ee20fd904b", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102633Z:c2e2dd68-7ee6-4eb9-acee-12ee20fd904b", + "x-ms-correlation-request-id": "1eeab9f6-e7cd-4c5f-8839-f7026b2ef867", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091017Z:1eeab9f6-e7cd-4c5f-8839-f7026b2ef867", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2438,12 +2554,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2456,7 +2572,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2464,7 +2580,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:26:43 GMT", + "Date": "Tue, 25 Oct 2022 09:10:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2472,9 +2588,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fdad9dec-939b-4862-8585-1f91f8d21bf4", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102643Z:fdad9dec-939b-4862-8585-1f91f8d21bf4", + "x-ms-correlation-request-id": "f8211929-1ac9-4a1d-8d18-5fd7f5bd25ee", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091028Z:f8211929-1ac9-4a1d-8d18-5fd7f5bd25ee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2483,12 +2599,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2501,7 +2617,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2509,7 +2625,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:26:53 GMT", + "Date": "Tue, 25 Oct 2022 09:10:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2517,9 +2633,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae2b3afd-11c9-4247-90d0-8c0766eda1b9", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102654Z:ae2b3afd-11c9-4247-90d0-8c0766eda1b9", + "x-ms-correlation-request-id": "6569532b-67d2-443f-90f9-a555563071cb", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091038Z:6569532b-67d2-443f-90f9-a555563071cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2528,12 +2644,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2546,7 +2662,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2554,7 +2670,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:27:04 GMT", + "Date": "Tue, 25 Oct 2022 09:10:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2562,9 +2678,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d44c56bd-299e-4e17-b96d-02fb61cc8a43", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102704Z:d44c56bd-299e-4e17-b96d-02fb61cc8a43", + "x-ms-correlation-request-id": "972d90c3-1c7e-46c3-b0ee-9486d0f0b182", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091049Z:972d90c3-1c7e-46c3-b0ee-9486d0f0b182", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2573,12 +2689,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2591,7 +2707,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2599,7 +2715,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:27:15 GMT", + "Date": "Tue, 25 Oct 2022 09:10:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2607,9 +2723,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f43ba32-1c98-4be0-b7c4-4f858eec7de5", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102715Z:5f43ba32-1c98-4be0-b7c4-4f858eec7de5", + "x-ms-correlation-request-id": "39484947-abcd-492c-b379-33e85c09535e", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091100Z:39484947-abcd-492c-b379-33e85c09535e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2618,12 +2734,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2636,7 +2752,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2644,7 +2760,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:27:25 GMT", + "Date": "Tue, 25 Oct 2022 09:11:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2652,9 +2768,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6aa6c20a-cbf2-4ea6-a99b-886751def86e", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102726Z:6aa6c20a-cbf2-4ea6-a99b-886751def86e", + "x-ms-correlation-request-id": "3a8d4f1a-52a8-45cd-898a-0a1599d1bd79", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091111Z:3a8d4f1a-52a8-45cd-898a-0a1599d1bd79", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2663,12 +2779,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2681,7 +2797,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2689,7 +2805,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:27:38 GMT", + "Date": "Tue, 25 Oct 2022 09:11:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2697,9 +2813,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a56fb08-1df9-44b3-919e-84ff6b3e496f", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102739Z:2a56fb08-1df9-44b3-919e-84ff6b3e496f", + "x-ms-correlation-request-id": "3edc5933-7bf4-4529-a3ff-88ade8f202e2", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091122Z:3edc5933-7bf4-4529-a3ff-88ade8f202e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2708,12 +2824,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2726,7 +2842,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2734,7 +2850,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:27:50 GMT", + "Date": "Tue, 25 Oct 2022 09:11:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2742,9 +2858,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35e2a78b-fe0d-4f06-a848-c9ed2d9c47c1", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102750Z:35e2a78b-fe0d-4f06-a848-c9ed2d9c47c1", + "x-ms-correlation-request-id": "90c78619-072d-42f3-81bd-bf374341a0ce", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091133Z:90c78619-072d-42f3-81bd-bf374341a0ce", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2753,12 +2869,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2771,7 +2887,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2779,7 +2895,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:28:01 GMT", + "Date": "Tue, 25 Oct 2022 09:11:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2787,9 +2903,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58199177-7bc9-41dd-8c22-803415a47716", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102801Z:58199177-7bc9-41dd-8c22-803415a47716", + "x-ms-correlation-request-id": "76344737-349a-46ae-aff1-fbcf20d11a35", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091143Z:76344737-349a-46ae-aff1-fbcf20d11a35", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2798,12 +2914,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2816,7 +2932,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2824,7 +2940,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:28:11 GMT", + "Date": "Tue, 25 Oct 2022 09:11:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2832,9 +2948,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e61ef6c-d6de-43d7-84fb-45e36097ab46", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102811Z:8e61ef6c-d6de-43d7-84fb-45e36097ab46", + "x-ms-correlation-request-id": "f5e07aaf-ed8d-45a6-aca5-8e86efe97886", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091154Z:f5e07aaf-ed8d-45a6-aca5-8e86efe97886", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2843,12 +2959,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2861,7 +2977,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2869,7 +2985,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:28:22 GMT", + "Date": "Tue, 25 Oct 2022 09:12:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2877,9 +2993,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a66e508a-fac2-4ee7-8025-21599af54e39", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102822Z:a66e508a-fac2-4ee7-8025-21599af54e39", + "x-ms-correlation-request-id": "a3bf34d2-c205-44a3-baee-00da1abaef1c", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091205Z:a3bf34d2-c205-44a3-baee-00da1abaef1c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2888,12 +3004,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2906,7 +3022,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2914,7 +3030,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:28:33 GMT", + "Date": "Tue, 25 Oct 2022 09:12:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2922,9 +3038,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d279933-7096-4a5d-88f0-944e0b019558", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102833Z:3d279933-7096-4a5d-88f0-944e0b019558", + "x-ms-correlation-request-id": "50c49e5d-c6c5-48c2-a454-d9d81ad03cd1", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091215Z:50c49e5d-c6c5-48c2-a454-d9d81ad03cd1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2933,12 +3049,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2951,7 +3067,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2959,7 +3075,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:28:43 GMT", + "Date": "Tue, 25 Oct 2022 09:12:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2967,9 +3083,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79d052bb-94cb-4084-a9f8-e7becb65e76f", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102844Z:79d052bb-94cb-4084-a9f8-e7becb65e76f", + "x-ms-correlation-request-id": "8781985e-f865-4507-8db1-c73b5e2c9ecc", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091226Z:8781985e-f865-4507-8db1-c73b5e2c9ecc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2978,12 +3094,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -2996,7 +3112,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3004,7 +3120,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:28:55 GMT", + "Date": "Tue, 25 Oct 2022 09:12:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3012,9 +3128,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34075d4d-0937-4cca-aab4-7733d11834b0", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102855Z:34075d4d-0937-4cca-aab4-7733d11834b0", + "x-ms-correlation-request-id": "b1a61c0f-ced5-4b46-97f8-698848cdf3e3", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091237Z:b1a61c0f-ced5-4b46-97f8-698848cdf3e3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3023,12 +3139,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -3041,7 +3157,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3049,7 +3165,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:29:05 GMT", + "Date": "Tue, 25 Oct 2022 09:12:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3057,9 +3173,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2242e29c-27dc-4155-8694-d9a924765c0d", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102906Z:2242e29c-27dc-4155-8694-d9a924765c0d", + "x-ms-correlation-request-id": "8fc27f40-2b91-4f11-af60-f986e49e96e7", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091248Z:8fc27f40-2b91-4f11-af60-f986e49e96e7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3068,12 +3184,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", + "creationDate": "2022-10-25T09:09:05Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } @@ -3086,7 +3202,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3094,7 +3210,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:29:16 GMT", + "Date": "Tue, 25 Oct 2022 09:13:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3102,9 +3218,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1431453e-23fb-496d-a1b3-0ef459aa4e61", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102916Z:1431453e-23fb-496d-a1b3-0ef459aa4e61", + "x-ms-correlation-request-id": "6cc902e6-9690-44e9-a009-77681cd9f0ca", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091300Z:6cc902e6-9690-44e9-a009-77681cd9f0ca", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3113,25 +3229,25 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, + "creationDate": "2022-10-25T09:09:17Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/accountBackups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3139,7 +3255,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:29:27 GMT", + "Date": "Tue, 25 Oct 2022 09:13:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3147,36 +3263,36 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a12549d8-ccfc-4600-83ed-a1424a7264ce", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102927Z:a12549d8-ccfc-4600-83ed-a1424a7264ce", + "x-ms-correlation-request-id": "13f708d8-927e-4660-bc3a-abcb6886f799", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091300Z:13f708d8-927e-4660-bc3a-abcb6886f799", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/accountBackups/sdk-py-tests-backup-1-219c2c63", + "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-backup-1-219c2c63", + "type": "Microsoft.NetApp/netAppAccounts/accountBackups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, + "creationDate": "2022-10-25T09:09:17Z", + "backupId": "ac87fb7a-6127-2b44-409a-b78e92d4ce59", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-219c2c63", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3184,7 +3300,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:29:38 GMT", + "Date": "Tue, 25 Oct 2022 09:13:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3192,909 +3308,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1bda6f8-a31a-41a2-8ac0-351dee0d6efd", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102938Z:b1bda6f8-a31a-41a2-8ac0-351dee0d6efd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:29:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8b85c16-dd9e-4587-9d33-f69868fffb6d", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102949Z:d8b85c16-dd9e-4587-9d33-f69868fffb6d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:29:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6cc6d7a-a948-430f-b19c-5ef8d910a002", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-routing-request-id": "WESTEUROPE:20220920T102959Z:f6cc6d7a-a948-430f-b19c-5ef8d910a002", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:30:09 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6b5d69a-7876-4075-9b87-5d624652714b", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103010Z:a6b5d69a-7876-4075-9b87-5d624652714b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:30:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44f0e9b3-4386-4575-a2f0-8a0ef833a789", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103020Z:44f0e9b3-4386-4575-a2f0-8a0ef833a789", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:30:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1f9e422-e12c-48fb-be37-43804cd0c309", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103031Z:a1f9e422-e12c-48fb-be37-43804cd0c309", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:30:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cfb81cd-a996-4757-b6e3-a4603e2482a6", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103042Z:4cfb81cd-a996-4757-b6e3-a4603e2482a6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:30:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a22dca02-d046-4ebf-89f9-93e9724e3920", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103052Z:a22dca02-d046-4ebf-89f9-93e9724e3920", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:31:02 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72ee5e84-240c-43c0-a9de-98033ff4110a", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103103Z:72ee5e84-240c-43c0-a9de-98033ff4110a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:31:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ecf069c4-ddbf-4d20-8651-3f9914343d0f", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103113Z:ecf069c4-ddbf-4d20-8651-3f9914343d0f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:31:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56c45351-922f-4e7e-8b8c-65b7f23f5bef", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103124Z:56c45351-922f-4e7e-8b8c-65b7f23f5bef", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:31:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a29db7d4-d02c-4421-89f2-b0e6692e3ad9", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103134Z:a29db7d4-d02c-4421-89f2-b0e6692e3ad9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:31:45 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77ef0fab-9db7-456a-93cf-d8637087f65f", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103145Z:77ef0fab-9db7-456a-93cf-d8637087f65f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:31:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1844337-97b0-4551-b1e9-97e5283896e7", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103156Z:f1844337-97b0-4551-b1e9-97e5283896e7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:32:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae1f7f70-af95-40e4-b8cd-09035c38ba2c", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103207Z:ae1f7f70-af95-40e4-b8cd-09035c38ba2c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:32:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8572ad6b-f861-4303-84d8-b239403ba51b", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103218Z:8572ad6b-f861-4303-84d8-b239403ba51b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:32:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8045b928-6c0f-4c1e-b6e4-f8c89c357da7", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103229Z:8045b928-6c0f-4c1e-b6e4-f8c89c357da7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:32:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "528c51c5-aac2-469f-b0cd-accf91a08e10", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103239Z:528c51c5-aac2-469f-b0cd-accf91a08e10", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:32:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "217ca9aa-bf1b-49c3-94f1-1881da9d7316", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103250Z:217ca9aa-bf1b-49c3-94f1-1881da9d7316", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63/backups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/accountBackups/sdk-py-tests-backup-1-219c2c63?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:32:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51f510df-b65c-4756-b7cc-3941919ca8b7", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103250Z:51f510df-b65c-4756-b7cc-3941919ca8b7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/accountBackups/sdk-py-tests-backup-1-219c2c63", - "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-backup-1-219c2c63", - "type": "Microsoft.NetApp/netAppAccounts/accountBackups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:25:09Z", - "backupId": "b6809dd1-5fd5-23b5-aed6-e3cf5d021cf8", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-219c2c63", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:32:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15bf512e-4e96-48ce-9bd0-e2fbfaebfc43", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103251Z:15bf512e-4e96-48ce-9bd0-e2fbfaebfc43", + "x-ms-correlation-request-id": "00b00c46-272a-4a9c-b8e4-9d79f0fc52ea", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091301Z:00b00c46-272a-4a9c-b8e4-9d79f0fc52ea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4117,7 +3333,7 @@ "Connection": "keep-alive", "Content-Length": "413", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -4136,31 +3352,31 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0adf7af3-94f1-4060-b9c2-c992ab8c3fae?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/52ca32f5-bd0b-48a7-a286-631e8b898694?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "2743", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:32:51 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A32%3A52.0173489Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:13:01 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A13%3A01.8507857Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0adf7af3-94f1-4060-b9c2-c992ab8c3fae?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/52ca32f5-bd0b-48a7-a286-631e8b898694?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9614efb-333a-4df6-ac75-78931ade2e1d", + "x-ms-correlation-request-id": "cac78250-3f6f-4c5d-91a4-bc6659e3fa5b", "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103252Z:c9614efb-333a-4df6-ac75-78931ade2e1d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091301Z:cac78250-3f6f-4c5d-91a4-bc6659e3fa5b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A32%3A52.0173489Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A13%3A01.8507857Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:24:37.6777052Z" + "CreatedOnDate": "2022-10-25T09:08:31.8324938Z" }, "properties": { "dataProtection": { @@ -4171,7 +3387,7 @@ } }, "provisioningState": "Patching", - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-219c2c63", "usageThreshold": 107374182400, @@ -4199,7 +3415,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_71054086", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0139ad84", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -4214,8 +3430,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "mountTargetId": "5f685ea2-1080-d509-f47d-4d3b46920259", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "ipAddress": "10.0.0.4" } ], @@ -4234,21 +3450,61 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:50.8890043Z", + "createdAt": "2022-10-25T09:03:15.1394661Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:24:37.8769317Z" + "lastModifiedAt": "2022-10-25T09:08:32.0019093Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/52ca32f5-bd0b-48a7-a286-631e8b898694?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 09:13:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "29cc3bdc-71ee-44ef-9759-1468c021f65e", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091302Z:29cc3bdc-71ee-44ef-9759-1468c021f65e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/52ca32f5-bd0b-48a7-a286-631e8b898694", + "name": "52ca32f5-bd0b-48a7-a286-631e8b898694", + "status": "Patching", + "startTime": "2022-10-25T09:13:01.8484879Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0adf7af3-94f1-4060-b9c2-c992ab8c3fae?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/52ca32f5-bd0b-48a7-a286-631e8b898694?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4256,7 +3512,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:33:21 GMT", + "Date": "Tue, 25 Oct 2022 09:13:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4264,17 +3520,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca32fe91-b09b-4a54-bdf9-ad7689efeffb", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103322Z:ca32fe91-b09b-4a54-bdf9-ad7689efeffb", + "x-ms-correlation-request-id": "ff38b1a4-d37a-4ad4-8ce4-1a83eac9ca50", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091332Z:ff38b1a4-d37a-4ad4-8ce4-1a83eac9ca50", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0adf7af3-94f1-4060-b9c2-c992ab8c3fae", - "name": "0adf7af3-94f1-4060-b9c2-c992ab8c3fae", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/52ca32f5-bd0b-48a7-a286-631e8b898694", + "name": "52ca32f5-bd0b-48a7-a286-631e8b898694", "status": "Succeeded", - "startTime": "2022-09-20T10:32:52.0073477Z", - "endTime": "2022-09-20T10:32:54.882591Z", + "startTime": "2022-10-25T09:13:01.8484879Z", + "endTime": "2022-10-25T09:13:07.1361781Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" @@ -4282,13 +3538,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0adf7af3-94f1-4060-b9c2-c992ab8c3fae?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/52ca32f5-bd0b-48a7-a286-631e8b898694?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4296,7 +3552,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:33:22 GMT", + "Date": "Tue, 25 Oct 2022 09:13:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4304,19 +3560,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ae4596d-614e-4387-be48-4a19534c6d26", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103322Z:9ae4596d-614e-4387-be48-4a19534c6d26", + "x-ms-correlation-request-id": "1ab7a5ad-1193-4fea-af70-a457d653e864", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091332Z:1ab7a5ad-1193-4fea-af70-a457d653e864", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A32%3A54.8906294Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A13%3A07.1267772Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:24:37.6777052Z" + "CreatedOnDate": "2022-10-25T09:13:01.5108983Z" }, "properties": { "dataProtection": { @@ -4326,7 +3582,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault" } }, - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-219c2c63", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -4357,19 +3613,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_71054086", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0139ad84", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", - "poolId": "0c111b7d-1311-7ff4-7aa9-d421dc168d2e", + "poolId": "5045f8f0-9afd-6de9-9d66-8ba3729cf58a", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "mountTargetId": "5f685ea2-1080-d509-f47d-4d3b46920259", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "startIp": "", "endIp": "", "gateway": "", @@ -4401,10 +3657,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:50.8890043Z", + "createdAt": "2022-10-25T09:03:15.1394661Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:32:51.8693816Z" + "lastModifiedAt": "2022-10-25T09:13:01.7125377Z" } } }, @@ -4415,7 +3671,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -4423,15 +3679,15 @@ "Cache-Control": "no-cache", "Content-Length": "77", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:33:24 GMT", + "Date": "Tue, 25 Oct 2022 09:13:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11e4a6c9-d1ca-4fec-a121-ef5db2a4b4b7", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103325Z:11e4a6c9-d1ca-4fec-a121-ef5db2a4b4b7", + "x-ms-correlation-request-id": "541ff17d-b436-4918-b056-d2d7787af4bb", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091335Z:541ff17d-b436-4918-b056-d2d7787af4bb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4449,36 +3705,196 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eb27151b-5526-4097-b567-fdd65063f100?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 10:33:25 GMT", + "Date": "Tue, 25 Oct 2022 09:13:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eb27151b-5526-4097-b567-fdd65063f100?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c5d3345-6cd0-40b7-83d9-5db7f1636611", + "x-ms-correlation-request-id": "fb8fca28-7a0d-405a-b67e-9fcdc2e1c38d", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103326Z:9c5d3345-6cd0-40b7-83d9-5db7f1636611", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091336Z:fb8fca28-7a0d-405a-b67e-9fcdc2e1c38d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eb27151b-5526-4097-b567-fdd65063f100?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 09:13:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c67cd7ea-e329-452a-b3e1-deec2b79056f", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091336Z:c67cd7ea-e329-452a-b3e1-deec2b79056f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731", + "name": "63d26f4b-c052-4498-a7d9-f675f266c731", + "status": "Deleting", + "startTime": "2022-10-25T09:13:36.0168764Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 09:14:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b3c4e838-a228-4efd-b6be-ec850e394591", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091406Z:b3c4e838-a228-4efd-b6be-ec850e394591", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731", + "name": "63d26f4b-c052-4498-a7d9-f675f266c731", + "status": "Deleting", + "startTime": "2022-10-25T09:13:36.0168764Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 09:14:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ab5c6735-41be-4d64-a62e-2c6d50367e32", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091436Z:ab5c6735-41be-4d64-a62e-2c6d50367e32", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731", + "name": "63d26f4b-c052-4498-a7d9-f675f266c731", + "status": "Deleting", + "startTime": "2022-10-25T09:13:36.0168764Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 09:15:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "01cfb1c7-2359-4bb2-a2d1-9fb5317de005", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091507Z:01cfb1c7-2359-4bb2-a2d1-9fb5317de005", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731", + "name": "63d26f4b-c052-4498-a7d9-f675f266c731", + "status": "Deleting", + "startTime": "2022-10-25T09:13:36.0168764Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4486,7 +3902,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:33:55 GMT", + "Date": "Tue, 25 Oct 2022 09:15:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4494,16 +3910,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff6b734f-b84b-478f-8cec-bb07710ffe09", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103356Z:ff6b734f-b84b-478f-8cec-bb07710ffe09", + "x-ms-correlation-request-id": "be2fed44-d713-4bf5-8bec-7837040ac0c1", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091537Z:be2fed44-d713-4bf5-8bec-7837040ac0c1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eb27151b-5526-4097-b567-fdd65063f100", - "name": "eb27151b-5526-4097-b567-fdd65063f100", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731", + "name": "63d26f4b-c052-4498-a7d9-f675f266c731", "status": "Deleting", - "startTime": "2022-09-20T10:33:25.8078657Z", + "startTime": "2022-10-25T09:13:36.0168764Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -4512,13 +3928,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eb27151b-5526-4097-b567-fdd65063f100?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4526,7 +3942,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:34:27 GMT", + "Date": "Tue, 25 Oct 2022 09:16:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4534,16 +3950,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc4798a8-d015-466f-9c2f-38037c8be4d1", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103427Z:fc4798a8-d015-466f-9c2f-38037c8be4d1", + "x-ms-correlation-request-id": "c50dbaa8-d09b-4496-8438-5dfe5690f58f", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091607Z:c50dbaa8-d09b-4496-8438-5dfe5690f58f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eb27151b-5526-4097-b567-fdd65063f100", - "name": "eb27151b-5526-4097-b567-fdd65063f100", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731", + "name": "63d26f4b-c052-4498-a7d9-f675f266c731", "status": "Deleting", - "startTime": "2022-09-20T10:33:25.8078657Z", + "startTime": "2022-10-25T09:13:36.0168764Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -4552,13 +3968,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eb27151b-5526-4097-b567-fdd65063f100?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4566,7 +3982,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:34:57 GMT", + "Date": "Tue, 25 Oct 2022 09:16:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4574,17 +3990,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6725de66-c005-432a-b23b-2fc3e2a2baad", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103457Z:6725de66-c005-432a-b23b-2fc3e2a2baad", + "x-ms-correlation-request-id": "87e2f95e-3e7f-4021-8dcf-fd5535d0e1d1", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091638Z:87e2f95e-3e7f-4021-8dcf-fd5535d0e1d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eb27151b-5526-4097-b567-fdd65063f100", - "name": "eb27151b-5526-4097-b567-fdd65063f100", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731", + "name": "63d26f4b-c052-4498-a7d9-f675f266c731", "status": "Succeeded", - "startTime": "2022-09-20T10:33:25.8078657Z", - "endTime": "2022-09-20T10:34:35.1720452Z", + "startTime": "2022-10-25T09:13:36.0168764Z", + "endTime": "2022-10-25T09:16:31.6106696Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63" @@ -4592,13 +4008,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/eb27151b-5526-4097-b567-fdd65063f100?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63d26f4b-c052-4498-a7d9-f675f266c731?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4606,7 +4022,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:34:57 GMT", + "Date": "Tue, 25 Oct 2022 09:16:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4614,19 +4030,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c11fdc3-b113-4267-9069-1e8cb90b3547", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103457Z:8c11fdc3-b113-4267-9069-1e8cb90b3547", + "x-ms-correlation-request-id": "f0e98ccc-7152-4732-8a5d-76ea06bffacd", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T091638Z:f0e98ccc-7152-4732-8a5d-76ea06bffacd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1/sdk-py-tests-vol-3-219c2c63", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A34%3A30.3305663Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A16%3A14.3319678Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:24:37.6777052Z" + "CreatedOnDate": "2022-10-25T09:13:01.5108983Z" }, "properties": { "dataProtection": { @@ -4636,7 +4052,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/vaults/cbsvault" } }, - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-219c2c63", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -4667,19 +4083,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_71054086", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0139ad84", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-219c2c63", - "poolId": "0c111b7d-1311-7ff4-7aa9-d421dc168d2e", + "poolId": "5045f8f0-9afd-6de9-9d66-8ba3729cf58a", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", - "fileSystemId": "786fb61e-d077-0523-954c-8fdf4f8cdb0c", + "mountTargetId": "5f685ea2-1080-d509-f47d-4d3b46920259", + "fileSystemId": "5f685ea2-1080-d509-f47d-4d3b46920259", "startIp": "", "endIp": "", "gateway": "", @@ -4711,10 +4127,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:50.8890043Z", + "createdAt": "2022-10-25T09:03:15.1394661Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:32:51.8693816Z" + "lastModifiedAt": "2022-10-25T09:13:01.7125377Z" } } }, @@ -4725,7 +4141,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -4733,14 +4149,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:38:19 GMT", + "Date": "Tue, 25 Oct 2022 09:20:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7430b090-8885-4997-b279-44bf2b0cd38e", + "x-ms-correlation-request-id": "e2fb0102-e388-4632-9255-fd67a013faf2", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103819Z:7430b090-8885-4997-b279-44bf2b0cd38e" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092002Z:e2fb0102-e388-4632-9255-fd67a013faf2" }, "ResponseBody": { "error": { @@ -4757,36 +4173,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f19fdc4-d2a0-47f3-8bc5-bd8f09427b11?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48a3c1b2-20b5-41ce-ac01-d9ac7b9ced94?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 10:38:31 GMT", + "Date": "Tue, 25 Oct 2022 09:20:15 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f19fdc4-d2a0-47f3-8bc5-bd8f09427b11?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48a3c1b2-20b5-41ce-ac01-d9ac7b9ced94?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ef1145e-600b-4736-8705-9e2c331db848", + "x-ms-correlation-request-id": "493f0bff-28a9-402e-8dd1-d21bd043bcc1", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103832Z:6ef1145e-600b-4736-8705-9e2c331db848", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092015Z:493f0bff-28a9-402e-8dd1-d21bd043bcc1", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f19fdc4-d2a0-47f3-8bc5-bd8f09427b11?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48a3c1b2-20b5-41ce-ac01-d9ac7b9ced94?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4794,7 +4210,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:39:02 GMT", + "Date": "Tue, 25 Oct 2022 09:20:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4802,17 +4218,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32588ff2-0d62-498f-98ab-1e558c28a613", + "x-ms-correlation-request-id": "d982494a-a6dc-4d12-87b0-9be6773e1646", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103902Z:32588ff2-0d62-498f-98ab-1e558c28a613", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092015Z:d982494a-a6dc-4d12-87b0-9be6773e1646", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48a3c1b2-20b5-41ce-ac01-d9ac7b9ced94", + "name": "48a3c1b2-20b5-41ce-ac01-d9ac7b9ced94", + "status": "Deleting", + "startTime": "2022-10-25T09:20:15.0695324Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48a3c1b2-20b5-41ce-ac01-d9ac7b9ced94?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 09:20:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8d2dbcc5-ffab-4bac-83c9-b8e2a1a3eeed", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092046Z:8d2dbcc5-ffab-4bac-83c9-b8e2a1a3eeed", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f19fdc4-d2a0-47f3-8bc5-bd8f09427b11", - "name": "4f19fdc4-d2a0-47f3-8bc5-bd8f09427b11", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48a3c1b2-20b5-41ce-ac01-d9ac7b9ced94", + "name": "48a3c1b2-20b5-41ce-ac01-d9ac7b9ced94", "status": "Succeeded", - "startTime": "2022-09-20T10:38:32.1678535Z", - "endTime": "2022-09-20T10:38:33.2773091Z", + "startTime": "2022-10-25T09:20:15.0695324Z", + "endTime": "2022-10-25T09:20:16.0540769Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1" @@ -4820,13 +4276,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f19fdc4-d2a0-47f3-8bc5-bd8f09427b11?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48a3c1b2-20b5-41ce-ac01-d9ac7b9ced94?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4834,7 +4290,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:39:02 GMT", + "Date": "Tue, 25 Oct 2022 09:20:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4842,22 +4298,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d030802a-31ae-4601-8b99-71a19ea23cca", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103902Z:d030802a-31ae-4601-8b99-71a19ea23cca", + "x-ms-correlation-request-id": "6639b696-b550-435e-9292-50057c8169ac", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092046Z:6639b696-b550-435e-9292-50057c8169ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-219c2c63/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A38%3A32.1709925Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A20%3A15.0708899Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:19:05.6868195Z" + "CreatedOnDate": "2022-10-25T09:03:00.9234648Z" }, "properties": { - "poolId": "0c111b7d-1311-7ff4-7aa9-d421dc168d2e", + "poolId": "5045f8f0-9afd-6de9-9d66-8ba3729cf58a", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63/capacityPools/sdk-py-tests-pool-1", @@ -4871,10 +4327,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:19:07.2926637Z", + "createdAt": "2022-10-25T09:03:01.8940277Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:19:07.2926637Z" + "lastModifiedAt": "2022-10-25T09:03:01.8940277Z" } } }, @@ -4886,20 +4342,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 10:39:13 GMT", + "Date": "Tue, 25 Oct 2022 09:20:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7578b4f-64a0-4aab-bdd4-cd261ff82ed8", + "x-ms-correlation-request-id": "576e89f3-2804-4709-ba02-c656a892291a", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103913Z:a7578b4f-64a0-4aab-bdd4-cd261ff82ed8" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092056Z:576e89f3-2804-4709-ba02-c656a892291a" }, "ResponseBody": null }, @@ -4911,20 +4367,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 10:39:23 GMT", + "Date": "Tue, 25 Oct 2022 09:21:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a57e23d-e646-46fe-9c09-16f17070749f", + "x-ms-correlation-request-id": "b1770302-761d-4f65-bb44-bb6d14893214", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103923Z:6a57e23d-e646-46fe-9c09-16f17070749f" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092106Z:b1770302-761d-4f65-bb44-bb6d14893214" }, "ResponseBody": null }, @@ -4936,20 +4392,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 10:39:33 GMT", + "Date": "Tue, 25 Oct 2022 09:21:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46226c63-9cdc-415e-8362-362c060bebfa", + "x-ms-correlation-request-id": "556dceb0-d511-450d-860c-53ea4f87039c", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103933Z:46226c63-9cdc-415e-8362-362c060bebfa" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092117Z:556dceb0-d511-450d-860c-53ea4f87039c" }, "ResponseBody": null }, @@ -4961,20 +4417,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 10:39:43 GMT", + "Date": "Tue, 25 Oct 2022 09:21:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "881bda3f-4072-444a-b73d-67d0758767b9", + "x-ms-correlation-request-id": "e11983c2-5201-4f1b-a933-2188f68bd457", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103944Z:881bda3f-4072-444a-b73d-67d0758767b9" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092127Z:e11983c2-5201-4f1b-a933-2188f68bd457" }, "ResponseBody": null }, @@ -4985,7 +4441,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -4993,14 +4449,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:39:53 GMT", + "Date": "Tue, 25 Oct 2022 09:21:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d37e5e0c-5ca4-48bb-8a55-fba6b944a28c", + "x-ms-correlation-request-id": "5027c6b2-fd47-4d6b-b6cb-41db50aaa951", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103954Z:d37e5e0c-5ca4-48bb-8a55-fba6b944a28c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092137Z:5027c6b2-fd47-4d6b-b6cb-41db50aaa951" }, "ResponseBody": { "error": { @@ -5017,36 +4473,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02325394-3ee9-4872-b601-f3ea69bb7efc?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6786e27c-741f-443f-8ab5-e21d9df36802?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 10:39:55 GMT", + "Date": "Tue, 25 Oct 2022 09:21:38 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02325394-3ee9-4872-b601-f3ea69bb7efc?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6786e27c-741f-443f-8ab5-e21d9df36802?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7ad9f55-2c6e-47e9-af28-c03d79cb5f22", + "x-ms-correlation-request-id": "3b2637eb-e8f3-4d70-b180-97fed3dfcfbb", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220920T103956Z:e7ad9f55-2c6e-47e9-af28-c03d79cb5f22", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092139Z:3b2637eb-e8f3-4d70-b180-97fed3dfcfbb", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02325394-3ee9-4872-b601-f3ea69bb7efc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6786e27c-741f-443f-8ab5-e21d9df36802?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5054,7 +4510,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:40:25 GMT", + "Date": "Tue, 25 Oct 2022 09:21:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5062,17 +4518,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39e6539e-882e-460c-bb10-eb3dca036c41", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104026Z:39e6539e-882e-460c-bb10-eb3dca036c41", + "x-ms-correlation-request-id": "95fcade1-2f72-4260-9f7c-17344f3737ba", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092139Z:95fcade1-2f72-4260-9f7c-17344f3737ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02325394-3ee9-4872-b601-f3ea69bb7efc", - "name": "02325394-3ee9-4872-b601-f3ea69bb7efc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6786e27c-741f-443f-8ab5-e21d9df36802", + "name": "6786e27c-741f-443f-8ab5-e21d9df36802", "status": "Succeeded", - "startTime": "2022-09-20T10:39:55.8721038Z", - "endTime": "2022-09-20T10:39:55.9346091Z", + "startTime": "2022-10-25T09:21:39.0314636Z", + "endTime": "2022-10-25T09:21:39.078291Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63" @@ -5080,13 +4536,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02325394-3ee9-4872-b601-f3ea69bb7efc?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6786e27c-741f-443f-8ab5-e21d9df36802?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5094,7 +4550,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:40:25 GMT", + "Date": "Tue, 25 Oct 2022 09:21:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5102,19 +4558,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1c0e22c-ab0d-4658-8f54-7e276522f75b", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104026Z:b1c0e22c-ab0d-4658-8f54-7e276522f75b", + "x-ms-correlation-request-id": "1eae3403-c3fa-4b15-99cb-3f1819fa6e83", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092139Z:1eae3403-c3fa-4b15-99cb-3f1819fa6e83", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63", "name": "sdk-py-tests-acc-1-219c2c63", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A39%3A55.8479168Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A21%3A39.0252286Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T10:18:25.7883446Z" + "CreatedOnDate": "2022-10-25T09:02:56.7900761Z" }, "properties": { "encryption": { @@ -5125,10 +4581,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T10:18:26.7644288Z", + "createdAt": "2022-10-25T09:02:57.673601Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:18:26.7644288Z" + "lastModifiedAt": "2022-10-25T09:02:57.673601Z" } } }, @@ -5139,50 +4595,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:40:25 GMT", + "Date": "Tue, 25 Oct 2022 09:21:39 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8dd29fca-e61d-4b2f-ba3e-c66ae78b61aa", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104026Z:8dd29fca-e61d-4b2f-ba3e-c66ae78b61aa" + "x-ms-correlation-request-id": "d092280e-5ca0-4c40-aa41-cb9a04d8a194", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092140Z:d092280e-5ca0-4c40-aa41-cb9a04d8a194", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-219c2c63\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-219c2c63?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d5b0d24d-3c4b-4985-871a-7ddc8425906d?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/869e2ae7-eac4-4c2d-bca9-e1bc241ff654?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 10:40:27 GMT", + "Date": "Tue, 25 Oct 2022 09:21:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/d5b0d24d-3c4b-4985-871a-7ddc8425906d?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/869e2ae7-eac4-4c2d-bca9-e1bc241ff654?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -5191,10 +4649,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "bfc7fdaf-5055-4512-8b73-bfb9be1b153a", - "x-ms-correlation-request-id": "389a32e0-55f8-4979-a2a3-f5a2da0cfbe8", + "x-ms-arm-service-request-id": "4a34f11a-ffeb-4dee-b925-509266c2ec56", + "x-ms-correlation-request-id": "61cbb47e-074d-4fc7-9761-02b8d4e467ef", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220920T104028Z:389a32e0-55f8-4979-a2a3-f5a2da0cfbe8" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T092140Z:61cbb47e-074d-4fc7-9761-02b8d4e467ef" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_list_account_backups.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_list_account_backups.json index 7cecc408be7b..5da3d91e3d66 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_list_account_backups.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account_backup.pyTestNetAppAccountBackuptest_list_account_backups.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:47:48 GMT", + "Date": "Tue, 25 Oct 2022 09:54:26 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:47:48 GMT", + "Date": "Tue, 25 Oct 2022 09:54:26 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "c07d4217-5262-417d-8b97-9137a04b756c", + "client-request-id": "cba1abed-610c-4c4c-b9e2-028a89755855", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "c07d4217-5262-417d-8b97-9137a04b756c", + "client-request-id": "cba1abed-610c-4c4c-b9e2-028a89755855", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:47:48 GMT", + "Date": "Tue, 25 Oct 2022 09:54:26 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6cc333c1-bc9d-4807-b994-3c1bb2743ff7?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c988ca9-3431-4ce6-8c39-7afcac61ebac?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:47:54 GMT", + "Date": "Tue, 25 Oct 2022 09:54:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1819c145-819c-461f-aaef-3113d4c6c83c", - "x-ms-correlation-request-id": "af2a34f6-f3a7-4e55-bd8e-fe5cb908a120", + "x-ms-arm-service-request-id": "c916e082-774b-4427-9b3c-571928f5163e", + "x-ms-correlation-request-id": "492c8ba8-359d-4ff6-b5b8-e74cfff5cce6", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094754Z:af2a34f6-f3a7-4e55-bd8e-fe5cb908a120" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095438Z:492c8ba8-359d-4ff6-b5b8-e74cfff5cce6" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-51142cdf", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf", - "etag": "W/\u0022aba29351-d73e-44c1-b6f6-d140ccaf2f40\u0022", + "etag": "W/\u00228a9de575-c6a0-4de8-8e92-2eca1d8e5271\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:47:51.0701344Z" + "CreatedOnDate": "2022-10-25T09:54:30.1640096Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "83a2e4b7-d85d-45bc-8f5e-ff58c832e28d", + "resourceGuid": "b3375114-3573-43f5-8485-3c8af0fc86d8", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6cc333c1-bc9d-4807-b994-3c1bb2743ff7?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5c988ca9-3431-4ce6-8c39-7afcac61ebac?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:47:58 GMT", + "Date": "Tue, 25 Oct 2022 09:54:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "99a44d0b-e2b2-498b-9370-65fc23e2329e", - "x-ms-correlation-request-id": "af30d8bd-163f-49a5-bfd6-0919d48a8797", + "x-ms-arm-service-request-id": "0c9c7bbf-02f1-4ca7-b81d-cce784252d94", + "x-ms-correlation-request-id": "48e65de2-5acb-4263-8b85-1a8bc567fc2c", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094758Z:af30d8bd-163f-49a5-bfd6-0919d48a8797" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095438Z:48e65de2-5acb-4263-8b85-1a8bc567fc2c" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:47:59 GMT", - "ETag": "W/\u00222d68bf48-c03c-4188-ba0d-87457bfa1ae4\u0022", + "Date": "Tue, 25 Oct 2022 09:54:39 GMT", + "ETag": "W/\u0022a81e7d04-f641-4300-992a-a71bc1727e2e\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "cb0ff785-035b-4d2d-97ad-cbddc8c1e770", - "x-ms-correlation-request-id": "56531ced-53f0-4e45-aa60-a740b39a1db7", + "x-ms-arm-service-request-id": "47ae966c-733f-4209-81c9-d9a784360ecd", + "x-ms-correlation-request-id": "bb7cc023-3354-456f-a009-37ebfa66ae84", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094759Z:56531ced-53f0-4e45-aa60-a740b39a1db7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095439Z:bb7cc023-3354-456f-a009-37ebfa66ae84" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-51142cdf", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf", - "etag": "W/\u00222d68bf48-c03c-4188-ba0d-87457bfa1ae4\u0022", + "etag": "W/\u0022a81e7d04-f641-4300-992a-a71bc1727e2e\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:47:51.0701344Z" + "CreatedOnDate": "2022-10-25T09:54:30.1640096Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "83a2e4b7-d85d-45bc-8f5e-ff58c832e28d", + "resourceGuid": "b3375114-3573-43f5-8485-3c8af0fc86d8", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9f181e5d-e7ec-4bc6-a5fa-bf279d0b1834?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f2178cfa-2d94-444f-8f1c-67c3d8577df9?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:48:00 GMT", + "Date": "Tue, 25 Oct 2022 09:54:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0d712fde-d774-4677-9fce-88b145d94149", - "x-ms-correlation-request-id": "ea18297e-1895-459e-95fd-8d178b6d2903", + "x-ms-arm-service-request-id": "9008d267-fd95-4503-b3e5-81bb3e2c019e", + "x-ms-correlation-request-id": "f400c3d2-abfb-4202-893b-e35c35187f29", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094800Z:ea18297e-1895-459e-95fd-8d178b6d2903" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095440Z:f400c3d2-abfb-4202-893b-e35c35187f29" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", - "etag": "W/\u00220dc8499f-858f-47fe-893e-fea4007b6db5\u0022", + "etag": "W/\u0022b04ce790-ed7f-411e-a877-40f82147e5b5\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00220dc8499f-858f-47fe-893e-fea4007b6db5\u0022", + "etag": "W/\u0022b04ce790-ed7f-411e-a877-40f82147e5b5\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9f181e5d-e7ec-4bc6-a5fa-bf279d0b1834?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f2178cfa-2d94-444f-8f1c-67c3d8577df9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:48:03 GMT", + "Date": "Tue, 25 Oct 2022 09:54:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "37edd2ab-0358-42fa-ba4b-958c48651266", - "x-ms-correlation-request-id": "e11622f6-f67a-4185-bbd4-f22f45d2d0ea", + "x-ms-arm-service-request-id": "067702e7-0cf1-42bb-9c61-8164bcd7359d", + "x-ms-correlation-request-id": "a417af36-423a-4d47-9c65-607f509e7919", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094803Z:e11622f6-f67a-4185-bbd4-f22f45d2d0ea" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095440Z:a417af36-423a-4d47-9c65-607f509e7919" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:48:03 GMT", - "ETag": "W/\u0022dc4a5a93-a1bd-4171-af0b-5fc4e3ec7b98\u0022", + "Date": "Tue, 25 Oct 2022 09:54:40 GMT", + "ETag": "W/\u002216ed7f78-cea7-4fe7-9f8b-f0a3358b4e47\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f3143a86-a165-4c95-92a6-3899fb88104c", - "x-ms-correlation-request-id": "aa88988b-af3d-4d7b-b895-00e3eb4d3e20", + "x-ms-arm-service-request-id": "464e5fbc-1f0a-4092-b163-cea9d45f7c1b", + "x-ms-correlation-request-id": "2293c53b-489f-4f33-851a-a6097b0675c2", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094803Z:aa88988b-af3d-4d7b-b895-00e3eb4d3e20" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095440Z:2293c53b-489f-4f33-851a-a6097b0675c2" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", - "etag": "W/\u0022dc4a5a93-a1bd-4171-af0b-5fc4e3ec7b98\u0022", + "etag": "W/\u002216ed7f78-cea7-4fe7-9f8b-f0a3358b4e47\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022dc4a5a93-a1bd-4171-af0b-5fc4e3ec7b98\u0022", + "etag": "W/\u002216ed7f78-cea7-4fe7-9f8b-f0a3358b4e47\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:48:03 GMT", + "Date": "Tue, 25 Oct 2022 09:54:40 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:48:03 GMT", + "Date": "Tue, 25 Oct 2022 09:54:40 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "c692d186-e969-4516-ae35-592ade4bd757", + "client-request-id": "2f31da95-f922-40f1-b804-36d872400fd0", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "c692d186-e969-4516-ae35-592ade4bd757", + "client-request-id": "2f31da95-f922-40f1-b804-36d872400fd0", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:48:03 GMT", + "Date": "Tue, 25 Oct 2022 09:54:40 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f425141d-4fc6-480a-9057-2ab3bcf2ed16?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/abc28a22-a264-4471-9c34-6d58ea307541?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:48:08 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T09%3A48%3A06.9220873Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:54:45 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A54%3A44.7502545Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5aa3e3d5-b481-4cd0-aea9-c2818a926245", + "x-ms-correlation-request-id": "7fb31ccc-621e-41a7-bcc4-655cfa26b1ec", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094808Z:5aa3e3d5-b481-4cd0-aea9-c2818a926245", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095445Z:7fb31ccc-621e-41a7-bcc4-655cfa26b1ec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T09%3A48%3A06.9220873Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A54%3A44.7502545Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:48:05.0608315Z" + "CreatedOnDate": "2022-10-25T09:54:42.5424974Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:48:06.0034467Z", + "createdAt": "2022-10-25T09:54:43.6623257Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:48:06.0034467Z" + "lastModifiedAt": "2022-10-25T09:54:43.6623257Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f425141d-4fc6-480a-9057-2ab3bcf2ed16?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/abc28a22-a264-4471-9c34-6d58ea307541?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:48:38 GMT", + "Date": "Tue, 25 Oct 2022 09:54:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "590baf73-68e1-43e8-b975-98fe1e5e34f0", + "x-ms-correlation-request-id": "d30f0a33-6575-4053-9ac7-34041274f838", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094838Z:590baf73-68e1-43e8-b975-98fe1e5e34f0", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095446Z:d30f0a33-6575-4053-9ac7-34041274f838", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f425141d-4fc6-480a-9057-2ab3bcf2ed16", - "name": "f425141d-4fc6-480a-9057-2ab3bcf2ed16", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/abc28a22-a264-4471-9c34-6d58ea307541", + "name": "abc28a22-a264-4471-9c34-6d58ea307541", "status": "Succeeded", - "startTime": "2022-09-20T09:48:06.9153041Z", - "endTime": "2022-09-20T09:48:07.0091208Z", + "startTime": "2022-10-25T09:54:44.7537052Z", + "endTime": "2022-10-25T09:54:44.800645Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:48:38 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T09%3A48%3A07.0140398Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:54:46 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A54%3A44.8046699Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ad35938-d23d-4d9b-95b6-33cd84783dc4", + "x-ms-correlation-request-id": "09e77907-9a17-4be4-96b2-e8f76046b27c", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094838Z:0ad35938-d23d-4d9b-95b6-33cd84783dc4", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095446Z:09e77907-9a17-4be4-96b2-e8f76046b27c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T09%3A48%3A07.0140398Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A54%3A44.8046699Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:48:05.0608315Z" + "CreatedOnDate": "2022-10-25T09:54:42.5424974Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:48:06.0034467Z", + "createdAt": "2022-10-25T09:54:43.6623257Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:48:06.0034467Z" + "lastModifiedAt": "2022-10-25T09:54:43.6623257Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f1bc178-0a2a-48d0-825b-ed92e70a7b1c?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d3fb1bf0-7db9-425e-af9b-e85cd3e0ed7f?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "920", + "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:48:40 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T09%3A48%3A40.45494Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:54:48 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A54%3A48.5280996Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e36d4f3-d39b-4ff4-8e29-c295e4603aca", + "x-ms-correlation-request-id": "cb78fd0b-0bd3-4a40-aa88-0197de773412", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094841Z:8e36d4f3-d39b-4ff4-8e29-c295e4603aca", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095449Z:cb78fd0b-0bd3-4a40-aa88-0197de773412", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T09%3A48%3A40.45494Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A54%3A48.5280996Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:48:39.2684885Z" + "CreatedOnDate": "2022-10-25T09:54:46.9621819Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:48:40.2435127Z", + "createdAt": "2022-10-25T09:54:48.2594699Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:48:40.2435127Z" + "lastModifiedAt": "2022-10-25T09:54:48.2594699Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f1bc178-0a2a-48d0-825b-ed92e70a7b1c?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d3fb1bf0-7db9-425e-af9b-e85cd3e0ed7f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:49:10 GMT", + "Date": "Tue, 25 Oct 2022 09:54:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa5bd99e-c4ab-4e22-88f4-9cbd00a9072b", + "x-ms-correlation-request-id": "825d21fe-127e-4bff-b2b0-32dbb230d433", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094911Z:fa5bd99e-c4ab-4e22-88f4-9cbd00a9072b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095449Z:825d21fe-127e-4bff-b2b0-32dbb230d433", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f1bc178-0a2a-48d0-825b-ed92e70a7b1c", - "name": "2f1bc178-0a2a-48d0-825b-ed92e70a7b1c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d3fb1bf0-7db9-425e-af9b-e85cd3e0ed7f", + "name": "d3fb1bf0-7db9-425e-af9b-e85cd3e0ed7f", "status": "Succeeded", - "startTime": "2022-09-20T09:48:40.4565785Z", - "endTime": "2022-09-20T09:48:40.5972507Z", + "startTime": "2022-10-25T09:54:48.5295791Z", + "endTime": "2022-10-25T09:54:49.4449959Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:49:11 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T09%3A48%3A40.5979266Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:54:49 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A54%3A49.436038Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b35498f-f28c-4df1-a0c4-66d203a4e24a", + "x-ms-correlation-request-id": "2627aadf-c4d9-4f11-b7e7-1964b206d086", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094912Z:0b35498f-f28c-4df1-a0c4-66d203a4e24a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095450Z:2627aadf-c4d9-4f11-b7e7-1964b206d086", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T09%3A48%3A40.5979266Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A54%3A49.436038Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:48:39.2684885Z" + "CreatedOnDate": "2022-10-25T09:54:46.9621819Z" }, "properties": { - "poolId": "5fd3f1be-bd1e-477c-60c6-3e79ad915149", + "poolId": "bfd04af1-f2a6-4ffd-c3e9-44d8cc189d50", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:48:40.2435127Z", + "createdAt": "2022-10-25T09:54:48.2594699Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:48:40.2435127Z" + "lastModifiedAt": "2022-10-25T09:54:48.2594699Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "1585", + "Content-Length": "1584", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:49:24 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T09%3A49%3A24.5937342Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 09:55:01 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A55%3A01.937442Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51861e0f-0835-4a92-8086-105088a55d06", + "x-ms-correlation-request-id": "2829384e-3ae2-4d55-8847-b1e59c4c72d6", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094925Z:51861e0f-0835-4a92-8086-105088a55d06", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095502Z:2829384e-3ae2-4d55-8847-b1e59c4c72d6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T09%3A49%3A24.5937342Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A55%3A01.937442Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:49:22.3798867Z" + "CreatedOnDate": "2022-10-25T09:55:00.4622923Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:49:23.4724183Z", + "createdAt": "2022-10-25T09:55:01.5800424Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:49:23.4724183Z" + "lastModifiedAt": "2022-10-25T09:55:01.5800424Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:49:55 GMT", + "Date": "Tue, 25 Oct 2022 09:55:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9746c423-b2e1-4fff-8c25-d9c1c2ef52f1", + "x-ms-correlation-request-id": "8eb09480-1243-459d-8cdc-cc89ee4b04da", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220920T094955Z:9746c423-b2e1-4fff-8c25-d9c1c2ef52f1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095503Z:8eb09480-1243-459d-8cdc-cc89ee4b04da", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc", - "name": "91b62608-f106-4e64-bde9-f9c5e6e58dfc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", "status": "Creating", - "startTime": "2022-09-20T09:49:24.5870434Z", + "startTime": "2022-10-25T09:55:01.9435051Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:50:25 GMT", + "Date": "Tue, 25 Oct 2022 09:55:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8a45826-a507-4342-b174-71767f7e2054", + "x-ms-correlation-request-id": "311166eb-63c2-4546-a961-4ac1ef5fc8e5", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095026Z:a8a45826-a507-4342-b174-71767f7e2054", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095533Z:311166eb-63c2-4546-a961-4ac1ef5fc8e5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc", - "name": "91b62608-f106-4e64-bde9-f9c5e6e58dfc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", "status": "Creating", - "startTime": "2022-09-20T09:49:24.5870434Z", + "startTime": "2022-10-25T09:55:01.9435051Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:50:55 GMT", + "Date": "Tue, 25 Oct 2022 09:56:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f09e43d-5a80-41dc-8829-a1bef2a154c5", + "x-ms-correlation-request-id": "ca549dcf-db9c-4362-9242-1a19e35cd3fb", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095056Z:3f09e43d-5a80-41dc-8829-a1bef2a154c5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095603Z:ca549dcf-db9c-4362-9242-1a19e35cd3fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc", - "name": "91b62608-f106-4e64-bde9-f9c5e6e58dfc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", "status": "Creating", - "startTime": "2022-09-20T09:49:24.5870434Z", + "startTime": "2022-10-25T09:55:01.9435051Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:51:25 GMT", + "Date": "Tue, 25 Oct 2022 09:56:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ed12312-dbdd-4fd9-9645-6e526e6ce7da", + "x-ms-correlation-request-id": "8d44e27a-e369-4202-99f4-75b5c4660a1d", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095126Z:1ed12312-dbdd-4fd9-9645-6e526e6ce7da", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095633Z:8d44e27a-e369-4202-99f4-75b5c4660a1d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc", - "name": "91b62608-f106-4e64-bde9-f9c5e6e58dfc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", "status": "Creating", - "startTime": "2022-09-20T09:49:24.5870434Z", + "startTime": "2022-10-25T09:55:01.9435051Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:51:56 GMT", + "Date": "Tue, 25 Oct 2022 09:57:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af3f613f-81c8-4928-bf49-e6cd83db87fc", + "x-ms-correlation-request-id": "a12fea0f-b4d2-403a-984e-07bf087021e1", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095156Z:af3f613f-81c8-4928-bf49-e6cd83db87fc", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095704Z:a12fea0f-b4d2-403a-984e-07bf087021e1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc", - "name": "91b62608-f106-4e64-bde9-f9c5e6e58dfc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", "status": "Creating", - "startTime": "2022-09-20T09:49:24.5870434Z", + "startTime": "2022-10-25T09:55:01.9435051Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:52:26 GMT", + "Date": "Tue, 25 Oct 2022 09:57:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4130a5a5-95bd-4597-ab86-645a3db9e023", + "x-ms-correlation-request-id": "a0e8c248-39f1-4167-9c42-60aae33a8483", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095227Z:4130a5a5-95bd-4597-ab86-645a3db9e023", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095734Z:a0e8c248-39f1-4167-9c42-60aae33a8483", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc", - "name": "91b62608-f106-4e64-bde9-f9c5e6e58dfc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", "status": "Creating", - "startTime": "2022-09-20T09:49:24.5870434Z", + "startTime": "2022-10-25T09:55:01.9435051Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:52:56 GMT", + "Date": "Tue, 25 Oct 2022 09:58:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe290009-2656-4a98-9427-85e6e2d2f8bc", + "x-ms-correlation-request-id": "2932d2d7-22f1-4058-9876-03dc20f6cc0f", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095257Z:fe290009-2656-4a98-9427-85e6e2d2f8bc", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095804Z:2932d2d7-22f1-4058-9876-03dc20f6cc0f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc", - "name": "91b62608-f106-4e64-bde9-f9c5e6e58dfc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", "status": "Creating", - "startTime": "2022-09-20T09:49:24.5870434Z", + "startTime": "2022-10-25T09:55:01.9435051Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:53:27 GMT", + "Date": "Tue, 25 Oct 2022 09:58:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,16 +1486,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d95aa9c0-aa91-40fa-a4aa-a254b3b27acd", + "x-ms-correlation-request-id": "9a37e75c-81dc-4983-9671-579b8d366625", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095328Z:d95aa9c0-aa91-40fa-a4aa-a254b3b27acd", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095834Z:9a37e75c-81dc-4983-9671-579b8d366625", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc", - "name": "91b62608-f106-4e64-bde9-f9c5e6e58dfc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", "status": "Creating", - "startTime": "2022-09-20T09:49:24.5870434Z", + "startTime": "2022-10-25T09:55:01.9435051Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1503,13 +1504,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,7 +1518,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:53:58 GMT", + "Date": "Tue, 25 Oct 2022 09:59:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1525,17 +1526,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34551e3c-c5fe-49cc-ad71-b9170b669e72", + "x-ms-correlation-request-id": "2087792b-20ed-4a38-8362-049916d412ed", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095358Z:34551e3c-c5fe-49cc-ad71-b9170b669e72", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095905Z:2087792b-20ed-4a38-8362-049916d412ed", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "status": "Creating", + "startTime": "2022-10-25T09:55:01.9435051Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 09:59:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4583063d-052d-4edb-ad00-0424d7d8764c", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T095935Z:4583063d-052d-4edb-ad00-0424d7d8764c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "status": "Creating", + "startTime": "2022-10-25T09:55:01.9435051Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:00:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3420804f-1c50-49f0-9ee8-e00e0240f023", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100005Z:3420804f-1c50-49f0-9ee8-e00e0240f023", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/91b62608-f106-4e64-bde9-f9c5e6e58dfc", - "name": "91b62608-f106-4e64-bde9-f9c5e6e58dfc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d01bb4f2-e173-4e44-a8da-d3039238bdd9", + "name": "d01bb4f2-e173-4e44-a8da-d3039238bdd9", "status": "Succeeded", - "startTime": "2022-09-20T09:49:24.5870434Z", - "endTime": "2022-09-20T09:53:29.7586989Z", + "startTime": "2022-10-25T09:55:01.9435051Z", + "endTime": "2022-10-25T09:59:41.6426809Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" @@ -1549,7 +1630,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1557,8 +1638,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:53:58 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T09%3A53%3A29.7558344Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:00:05 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A59%3A41.6419522Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1566,22 +1647,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64e59b6b-5364-4a5e-8db2-af34dbb9a48e", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095358Z:64e59b6b-5364-4a5e-8db2-af34dbb9a48e", + "x-ms-correlation-request-id": "9fb1cf9b-6657-4e6e-9b5e-d59d4057f2bb", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100006Z:9fb1cf9b-6657-4e6e-9b5e-d59d4057f2bb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T09%3A53%3A29.7558344Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A59%3A41.6419522Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:49:22.3798867Z" + "CreatedOnDate": "2022-10-25T09:55:00.4622923Z" }, "properties": { - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-51142cdf", "usageThreshold": 107374182400, @@ -1609,7 +1690,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ea6be916", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_37f101c7", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1624,8 +1705,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "950793cb-6312-4a26-77ba-73f0a1138959", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "mountTargetId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "ipAddress": "10.0.0.4" } ], @@ -1645,10 +1726,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:49:23.4724183Z", + "createdAt": "2022-10-25T09:55:01.5800424Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:49:23.4724183Z" + "lastModifiedAt": "2022-10-25T09:55:01.5800424Z" } } }, @@ -1659,7 +1740,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1667,8 +1748,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:54:08 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T09%3A53%3A29.7558344Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:00:16 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T09%3A59%3A41.6419522Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1676,22 +1757,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6cdff809-f31a-4de4-8cd2-073cfc352310", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095409Z:6cdff809-f31a-4de4-8cd2-073cfc352310", + "x-ms-correlation-request-id": "430e95ba-62de-4ab2-8006-f6552c10f796", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100016Z:430e95ba-62de-4ab2-8006-f6552c10f796", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T09%3A53%3A29.7558344Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T09%3A59%3A41.6419522Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:49:22.3798867Z" + "CreatedOnDate": "2022-10-25T09:55:00.4622923Z" }, "properties": { - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-51142cdf", "usageThreshold": 107374182400, @@ -1719,7 +1800,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ea6be916", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_37f101c7", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1734,8 +1815,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "950793cb-6312-4a26-77ba-73f0a1138959", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "mountTargetId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "ipAddress": "10.0.0.4" } ], @@ -1755,10 +1836,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:49:23.4724183Z", + "createdAt": "2022-10-25T09:55:01.5800424Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:49:23.4724183Z" + "lastModifiedAt": "2022-10-25T09:55:01.5800424Z" } } }, @@ -1769,7 +1850,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1777,7 +1858,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:54:09 GMT", + "Date": "Tue, 25 Oct 2022 10:00:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1785,9 +1866,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21d65919-9bc8-48d0-9658-9b94677667fc", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095409Z:21d65919-9bc8-48d0-9658-9b94677667fc", + "x-ms-correlation-request-id": "be1b8844-26f5-43b6-98cc-6c84ac3a8a11", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100016Z:be1b8844-26f5-43b6-98cc-6c84ac3a8a11", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1810,7 +1891,7 @@ "Connection": "keep-alive", "Content-Length": "412", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1829,35 +1910,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9af0797-db35-4ff2-bede-77d69d7552ad?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8686273a-5fa3-4d80-a5f5-4d32d7635d25?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "2480", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:54:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T09%3A54%3A10.2626288Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:00:17 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A00%3A17.6124719Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9af0797-db35-4ff2-bede-77d69d7552ad?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8686273a-5fa3-4d80-a5f5-4d32d7635d25?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e49acf6c-d1fe-4e2d-8130-eb985fba69ad", + "x-ms-correlation-request-id": "dde1c1df-f35b-4905-b3cd-bca17d69d0bc", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095410Z:e49acf6c-d1fe-4e2d-8130-eb985fba69ad", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100017Z:dde1c1df-f35b-4905-b3cd-bca17d69d0bc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T09%3A54%3A10.2626288Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A00%3A17.6124719Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:49:22.3798867Z" + "CreatedOnDate": "2022-10-25T09:55:00.4622923Z" }, "properties": { "provisioningState": "Patching", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-51142cdf", "usageThreshold": 107374182400, @@ -1885,7 +1966,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ea6be916", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_37f101c7", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1900,8 +1981,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "950793cb-6312-4a26-77ba-73f0a1138959", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "mountTargetId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "ipAddress": "10.0.0.4" } ], @@ -1920,21 +2001,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:49:23.4724183Z", + "createdAt": "2022-10-25T09:55:01.5800424Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:49:23.4724183Z" + "lastModifiedAt": "2022-10-25T09:55:01.5800424Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9af0797-db35-4ff2-bede-77d69d7552ad?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8686273a-5fa3-4d80-a5f5-4d32d7635d25?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1942,7 +2023,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:54:40 GMT", + "Date": "Tue, 25 Oct 2022 10:00:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1950,17 +2031,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4fbca59-d2e0-45e5-8bad-b42df925b09d", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095440Z:c4fbca59-d2e0-45e5-8bad-b42df925b09d", + "x-ms-correlation-request-id": "baabb0e3-3ffb-403e-bb20-c8d0de540f37", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100018Z:baabb0e3-3ffb-403e-bb20-c8d0de540f37", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8686273a-5fa3-4d80-a5f5-4d32d7635d25", + "name": "8686273a-5fa3-4d80-a5f5-4d32d7635d25", + "status": "Patching", + "startTime": "2022-10-25T10:00:17.6162192Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8686273a-5fa3-4d80-a5f5-4d32d7635d25?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:00:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5cb517cf-24d0-4f99-b56a-eb664ff4c186", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100048Z:5cb517cf-24d0-4f99-b56a-eb664ff4c186", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9af0797-db35-4ff2-bede-77d69d7552ad", - "name": "c9af0797-db35-4ff2-bede-77d69d7552ad", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8686273a-5fa3-4d80-a5f5-4d32d7635d25", + "name": "8686273a-5fa3-4d80-a5f5-4d32d7635d25", "status": "Succeeded", - "startTime": "2022-09-20T09:54:10.2575103Z", - "endTime": "2022-09-20T09:54:13.6325366Z", + "startTime": "2022-10-25T10:00:17.6162192Z", + "endTime": "2022-10-25T10:00:20.8664603Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" @@ -1968,13 +2089,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9af0797-db35-4ff2-bede-77d69d7552ad?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8686273a-5fa3-4d80-a5f5-4d32d7635d25?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1982,7 +2103,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:54:40 GMT", + "Date": "Tue, 25 Oct 2022 10:00:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1990,19 +2111,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d51bc38a-af4f-4519-a756-e1bfa275a46a", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095440Z:d51bc38a-af4f-4519-a756-e1bfa275a46a", + "x-ms-correlation-request-id": "b4ed5618-2238-4c7f-a723-0637355738dd", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100049Z:b4ed5618-2238-4c7f-a723-0637355738dd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T09%3A54%3A13.6226221Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A00%3A20.8616211Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:54:09.9166706Z" + "CreatedOnDate": "2022-10-25T10:00:17.3018202Z" }, "properties": { "dataProtection": { @@ -2012,7 +2133,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault" } }, - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-51142cdf", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2043,19 +2164,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ea6be916", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_37f101c7", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", - "poolId": "5fd3f1be-bd1e-477c-60c6-3e79ad915149", + "poolId": "bfd04af1-f2a6-4ffd-c3e9-44d8cc189d50", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "950793cb-6312-4a26-77ba-73f0a1138959", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "mountTargetId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "startIp": "", "endIp": "", "gateway": "", @@ -2087,10 +2208,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:49:23.4724183Z", + "createdAt": "2022-10-25T09:55:01.5800424Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:54:10.1069224Z" + "lastModifiedAt": "2022-10-25T10:00:17.4753266Z" } } }, @@ -2103,7 +2224,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -2113,20 +2234,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5de6d3d-f237-41c6-99a6-2f9f2f45f83d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/447d0124-cbe1-4e37-a24b-d6706c447b42?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:54:40 GMT", + "Date": "Tue, 25 Oct 2022 10:00:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5de6d3d-f237-41c6-99a6-2f9f2f45f83d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/447d0124-cbe1-4e37-a24b-d6706c447b42?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "990067ca-b854-46d4-b308-971338ff6e64", + "x-ms-correlation-request-id": "e70e171d-b031-475e-851e-26a6c9af371f", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095441Z:990067ca-b854-46d4-b308-971338ff6e64", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100049Z:e70e171d-b031-475e-851e-26a6c9af371f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2141,13 +2262,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5de6d3d-f237-41c6-99a6-2f9f2f45f83d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/447d0124-cbe1-4e37-a24b-d6706c447b42?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2155,7 +2276,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:55:10 GMT", + "Date": "Tue, 25 Oct 2022 10:00:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2163,109 +2284,104 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb91f6a2-9b50-4795-9456-d27dd4386467", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095511Z:cb91f6a2-9b50-4795-9456-d27dd4386467", + "x-ms-correlation-request-id": "90561b00-6994-4abe-b763-6628512239e5", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100049Z:90561b00-6994-4abe-b763-6628512239e5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5de6d3d-f237-41c6-99a6-2f9f2f45f83d", - "name": "d5de6d3d-f237-41c6-99a6-2f9f2f45f83d", - "status": "Succeeded", - "startTime": "2022-09-20T09:54:41.2341871Z", - "endTime": "2022-09-20T09:54:42.7810148Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/447d0124-cbe1-4e37-a24b-d6706c447b42", + "name": "447d0124-cbe1-4e37-a24b-d6706c447b42", + "status": "Creating", + "startTime": "2022-10-25T10:00:49.5634314Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5de6d3d-f237-41c6-99a6-2f9f2f45f83d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/447d0124-cbe1-4e37-a24b-d6706c447b42?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "779", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:55:11 GMT", + "Date": "Tue, 25 Oct 2022 10:01:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efc7a07d-997f-49d0-b7b7-f567915fdafe", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095511Z:efc7a07d-997f-49d0-b7b7-f567915fdafe", + "x-ms-correlation-request-id": "4711e9e1-a2d0-4a3a-9983-63923127ce40", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100120Z:4711e9e1-a2d0-4a3a-9983-63923127ce40", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/20/2022 9:54:42 AM", - "location": "", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/447d0124-cbe1-4e37-a24b-d6706c447b42", + "name": "447d0124-cbe1-4e37-a24b-d6706c447b42", + "status": "Succeeded", + "startTime": "2022-10-25T10:00:49.5634314Z", + "endTime": "2022-10-25T10:00:50.6606494Z", + "percentComplete": 100.0, "properties": { - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", - "creationDate": "0001-01-01T00:00:00Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "failureReason": "None", - "useExistingSnapshot": false, - "provisioningState": "Creating" + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/447d0124-cbe1-4e37-a24b-d6706c447b42?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "781", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:55:21 GMT", + "Date": "Tue, 25 Oct 2022 10:01:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e817a8a-ba9e-4f35-a7df-9cfb43d76b59", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095522Z:0e817a8a-ba9e-4f35-a7df-9cfb43d76b59", + "x-ms-correlation-request-id": "6cd05438-8829-465f-979e-a0875f1e242a", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100120Z:6cd05438-8829-465f-979e-a0875f1e242a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "etag": "10/25/2022 10:00:50 AM", + "location": "", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "creationDate": "0001-01-01T00:00:00Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false + "failureReason": "None", + "useExistingSnapshot": false, + "provisioningState": "Creating" } } }, @@ -2276,7 +2392,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2284,7 +2400,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:55:31 GMT", + "Date": "Tue, 25 Oct 2022 10:01:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2292,9 +2408,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65ffdb2b-9163-4b3c-96a0-abdcab744810", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095532Z:65ffdb2b-9163-4b3c-96a0-abdcab744810", + "x-ms-correlation-request-id": "7113c429-cedf-414f-8785-99d4c13e9a1b", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100131Z:7113c429-cedf-414f-8785-99d4c13e9a1b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2303,12 +2419,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2321,7 +2437,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2329,7 +2445,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:55:43 GMT", + "Date": "Tue, 25 Oct 2022 10:01:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2337,9 +2453,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e399aa3-57ee-4f32-8377-b8907add60a4", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095543Z:7e399aa3-57ee-4f32-8377-b8907add60a4", + "x-ms-correlation-request-id": "02516fa8-a2fb-4870-9084-a73c646f5077", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100142Z:02516fa8-a2fb-4870-9084-a73c646f5077", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2348,12 +2464,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2366,7 +2482,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2374,7 +2490,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:55:54 GMT", + "Date": "Tue, 25 Oct 2022 10:01:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2382,9 +2498,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a96951d-2fac-41f6-a320-c34b9b68398b", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095554Z:8a96951d-2fac-41f6-a320-c34b9b68398b", + "x-ms-correlation-request-id": "8910da42-bf77-420e-9765-25a703b7ca26", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100153Z:8910da42-bf77-420e-9765-25a703b7ca26", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2393,12 +2509,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2411,7 +2527,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2419,7 +2535,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:56:05 GMT", + "Date": "Tue, 25 Oct 2022 10:02:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2427,9 +2543,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "255a3236-d434-46a6-b402-0898382dbfab", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095605Z:255a3236-d434-46a6-b402-0898382dbfab", + "x-ms-correlation-request-id": "6da987f6-7110-457e-a304-123c8caedc09", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100203Z:6da987f6-7110-457e-a304-123c8caedc09", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2438,12 +2554,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2456,7 +2572,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2464,7 +2580,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:56:16 GMT", + "Date": "Tue, 25 Oct 2022 10:02:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2472,9 +2588,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36b6527a-ba21-412f-b95e-4a24634de7f2", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095616Z:36b6527a-ba21-412f-b95e-4a24634de7f2", + "x-ms-correlation-request-id": "562558ae-c016-41a1-81eb-002a95330bb9", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100214Z:562558ae-c016-41a1-81eb-002a95330bb9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2483,12 +2599,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2501,7 +2617,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2509,7 +2625,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:56:27 GMT", + "Date": "Tue, 25 Oct 2022 10:02:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2517,9 +2633,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8f1aaf7-0f9f-437f-8ae0-38979966f746", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095627Z:c8f1aaf7-0f9f-437f-8ae0-38979966f746", + "x-ms-correlation-request-id": "e41a651d-26bc-4c5d-a76f-3d1f84943dd2", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100224Z:e41a651d-26bc-4c5d-a76f-3d1f84943dd2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2528,12 +2644,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2546,7 +2662,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2554,7 +2670,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:56:37 GMT", + "Date": "Tue, 25 Oct 2022 10:02:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2562,9 +2678,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b70fd58-98be-4999-81d2-0e2c9e78cf98", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095638Z:4b70fd58-98be-4999-81d2-0e2c9e78cf98", + "x-ms-correlation-request-id": "d98e0330-6500-4e62-a3e2-528fea9735e4", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100235Z:d98e0330-6500-4e62-a3e2-528fea9735e4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2573,12 +2689,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2591,7 +2707,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2599,7 +2715,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:56:48 GMT", + "Date": "Tue, 25 Oct 2022 10:02:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2607,9 +2723,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9494177f-b647-433c-aa1d-96b6e79f90a8", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095649Z:9494177f-b647-433c-aa1d-96b6e79f90a8", + "x-ms-correlation-request-id": "fa6f3bdc-4efc-4ccb-90b2-ddfac8fe9dc8", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100246Z:fa6f3bdc-4efc-4ccb-90b2-ddfac8fe9dc8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2618,12 +2734,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2636,7 +2752,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2644,7 +2760,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:56:59 GMT", + "Date": "Tue, 25 Oct 2022 10:02:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2652,9 +2768,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0dce6012-54ff-4c8a-b27c-7308377e0c3b", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095659Z:0dce6012-54ff-4c8a-b27c-7308377e0c3b", + "x-ms-correlation-request-id": "bbb33f3f-1cf0-4c3a-bd49-23adaf7b46fd", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100256Z:bbb33f3f-1cf0-4c3a-bd49-23adaf7b46fd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2663,12 +2779,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2681,7 +2797,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2689,7 +2805,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:57:10 GMT", + "Date": "Tue, 25 Oct 2022 10:03:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2697,9 +2813,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "255a11c5-3532-42a4-8f01-716ad93bd6f1", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095710Z:255a11c5-3532-42a4-8f01-716ad93bd6f1", + "x-ms-correlation-request-id": "883ab306-8781-4748-adc3-5925b1445b31", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100308Z:883ab306-8781-4748-adc3-5925b1445b31", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2708,12 +2824,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2726,7 +2842,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2734,7 +2850,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:57:21 GMT", + "Date": "Tue, 25 Oct 2022 10:03:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2742,9 +2858,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c1f4558-c883-44ec-ac87-8babc16ba795", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095721Z:8c1f4558-c883-44ec-ac87-8babc16ba795", + "x-ms-correlation-request-id": "7c107d12-e413-48a8-915f-3e447029e809", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100318Z:7c107d12-e413-48a8-915f-3e447029e809", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2753,12 +2869,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2771,7 +2887,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2779,7 +2895,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:57:31 GMT", + "Date": "Tue, 25 Oct 2022 10:03:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2787,9 +2903,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a8b88c6-f776-4f05-969f-8e53af77980e", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095732Z:1a8b88c6-f776-4f05-969f-8e53af77980e", + "x-ms-correlation-request-id": "312de75c-1462-4460-a534-7c2f4d63f60d", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100329Z:312de75c-1462-4460-a534-7c2f4d63f60d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2798,12 +2914,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", + "creationDate": "2022-10-25T10:00:49Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -2816,7 +2932,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2824,7 +2940,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:57:42 GMT", + "Date": "Tue, 25 Oct 2022 10:03:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2832,9 +2948,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c724cb7c-aae7-4852-b678-9ceddb086808", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095742Z:c724cb7c-aae7-4852-b678-9ceddb086808", + "x-ms-correlation-request-id": "d6b924b0-196c-4be5-a7e6-177a099cbbdb", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100340Z:d6b924b0-196c-4be5-a7e6-177a099cbbdb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2843,25 +2959,25 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, + "creationDate": "2022-10-25T10:01:04Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2869,7 +2985,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:57:53 GMT", + "Date": "Tue, 25 Oct 2022 10:03:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2877,44 +2993,55 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd240caa-af72-4599-82b3-eb51f632a6b4", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095753Z:cd240caa-af72-4599-82b3-eb51f632a6b4", + "x-ms-correlation-request-id": "db7e7015-004e-4d71-aa6f-b0630ba3bf84", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100340Z:db7e7015-004e-4d71-aa6f-b0630ba3bf84", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault", + "name": "sdk-py-tests-acc-1-51142cdf/cbsvault", + "type": "Microsoft.NetApp/netAppAccounts/vaults", + "properties": {} + } + ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf?api-version=2022-05-01", + "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "412", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": { + "properties": { + "serviceLevel": "Premium", + "usageThreshold": 107374182400, + "dataProtection": { + "backup": { + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault", + "backupEnabled": true + } + }, + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0 + } }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:58:03 GMT", + "Date": "Tue, 25 Oct 2022 10:03:42 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A03%3A40.9416947Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2922,1886 +3049,132 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15bd1a56-06f9-4066-97d1-56221d1c567d", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095803Z:15bd1a56-06f9-4066-97d1-56221d1c567d", + "x-ms-correlation-request-id": "9df8baba-99fc-497d-9381-df039b5f20cb", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100342Z:9df8baba-99fc-497d-9381-df039b5f20cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:58:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19b0236b-1b7a-43b7-bf21-3162877f521a", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095814Z:19b0236b-1b7a-43b7-bf21-3162877f521a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:58:25 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad0df0f2-6606-4f70-bade-ad9b5fcafea7", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095825Z:ad0df0f2-6606-4f70-bade-ad9b5fcafea7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:58:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02a63816-33ba-4dd3-ba24-b1ef9182d68a", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095836Z:02a63816-33ba-4dd3-ba24-b1ef9182d68a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:58:46 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e097cbf-a943-43fe-9db4-4c5be1eeaa90", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095846Z:3e097cbf-a943-43fe-9db4-4c5be1eeaa90", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:58:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "917336e2-2f8b-43c9-9c1d-b2378de6a7dc", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095857Z:917336e2-2f8b-43c9-9c1d-b2378de6a7dc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:59:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3971d42-3757-435f-9530-664b5aa5e7a5", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095908Z:c3971d42-3757-435f-9530-664b5aa5e7a5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:59:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a20a3f3-edc4-4c24-b438-b5eccbf48a67", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095919Z:9a20a3f3-edc4-4c24-b438-b5eccbf48a67", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:59:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0902c433-5a14-466f-abc9-7fe0bda1fbb1", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095930Z:0902c433-5a14-466f-abc9-7fe0bda1fbb1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:59:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31522aaf-2d46-4c7f-bb4b-cc94ad6740af", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095941Z:31522aaf-2d46-4c7f-bb4b-cc94ad6740af", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 09:59:51 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66787d28-1c94-4d4e-a623-85d6f93728e4", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-routing-request-id": "WESTEUROPE:20220920T095951Z:66787d28-1c94-4d4e-a623-85d6f93728e4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:00:02 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01455ac3-4950-4cb5-888b-64ba54c6967c", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100002Z:01455ac3-4950-4cb5-888b-64ba54c6967c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:00:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2838d21-bdee-479c-8f69-55db14d50b66", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100013Z:e2838d21-bdee-479c-8f69-55db14d50b66", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:00:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ec3a6e0-150e-409e-b4f4-ba0d1ba16c41", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100023Z:8ec3a6e0-150e-409e-b4f4-ba0d1ba16c41", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:00:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9613297-619a-4171-be67-02c492a0a608", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100034Z:e9613297-619a-4171-be67-02c492a0a608", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:00:45 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc8c3a4f-917d-4928-b35e-a3e445b11676", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100045Z:dc8c3a4f-917d-4928-b35e-a3e445b11676", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:00:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54f33771-76c3-482c-b48d-4a59802d9436", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100057Z:54f33771-76c3-482c-b48d-4a59802d9436", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:01:06 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5aa8edfc-15fb-442c-97b9-e782b3e36986", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100107Z:5aa8edfc-15fb-442c-97b9-e782b3e36986", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:01:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a43ee413-11ed-4794-b16c-d41d8bac6688", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100118Z:a43ee413-11ed-4794-b16c-d41d8bac6688", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:01:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2cfeb672-8272-45ff-8378-684bf2f0b294", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100128Z:2cfeb672-8272-45ff-8378-684bf2f0b294", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:01:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c877c5ca-64db-406f-b0c8-debc80857ddf", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100139Z:c877c5ca-64db-406f-b0c8-debc80857ddf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:01:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "556698e0-c654-436c-93ab-a8c2ba961bc4", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100149Z:556698e0-c654-436c-93ab-a8c2ba961bc4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:02:00 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46838046-feb8-4b8f-80dd-6f0b7f0e604c", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100200Z:46838046-feb8-4b8f-80dd-6f0b7f0e604c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:02:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "978ff2c7-be22-4a6f-b278-ed4c276f4d10", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100211Z:978ff2c7-be22-4a6f-b278-ed4c276f4d10", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:02:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90eb7cfe-2e8b-4965-bc80-8e383560546d", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100222Z:90eb7cfe-2e8b-4965-bc80-8e383560546d", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-1-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-1-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:02:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80fb1210-bafe-4c06-a88d-fe4e90d7bd30", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100222Z:80fb1210-bafe-4c06-a88d-fe4e90d7bd30", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault", - "name": "sdk-py-tests-acc-1-51142cdf/cbsvault", - "type": "Microsoft.NetApp/netAppAccounts/vaults", - "properties": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf?api-version=2022-05-01", - "RequestMethod": "PATCH", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "412", - "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": { - "properties": { - "serviceLevel": "Premium", - "usageThreshold": 107374182400, - "dataProtection": { - "backup": { - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault", - "backupEnabled": true - } - }, - "isDefaultQuotaEnabled": false, - "defaultUserQuotaInKiBs": 0, - "defaultGroupQuotaInKiBs": 0 - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:02:23 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A02%3A23.1961299Z\u0027\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d35b264d-4c14-4a45-8ecf-d296d23603ef", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100223Z:d35b264d-4c14-4a45-8ecf-d296d23603ef", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A02%3A23.1961299Z\u0027\u0022", - "location": "westus2", - "tags": { - "CreatedOnDate": "2022-09-20T09:54:09.9166706Z" - }, - "properties": { - "dataProtection": { - "backup": { - "backupEnabled": true, - "policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault" - } - }, - "provisioningState": "Succeeded", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", - "serviceLevel": "Premium", - "creationToken": "sdk-py-tests-vol-3-51142cdf", - "usageThreshold": 107374182400, - "exportPolicy": { - "rules": [ - { - "ruleIndex": 1, - "unixReadOnly": false, - "unixReadWrite": true, - "cifs": false, - "nfsv3": true, - "nfsv41": false, - "allowedClients": "0.0.0.0/0", - "kerberos5ReadOnly": false, - "kerberos5ReadWrite": false, - "kerberos5iReadOnly": false, - "kerberos5iReadWrite": false, - "kerberos5pReadOnly": false, - "kerberos5pReadWrite": false, - "hasRootAccess": true, - "chownMode": "Restricted" - } - ] - }, - "protocolTypes": [ - "NFSv3" - ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ea6be916", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", - "networkFeatures": "Basic", - "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", - "storageToNetworkProximity": "T2", - "snapshotDirectoryVisible": true, - "kerberosEnabled": false, - "securityStyle": "Unix", - "smbEncryption": false, - "smbContinuouslyAvailable": false, - "encryptionKeySource": "Microsoft.NetApp", - "ldapEnabled": false, - "unixPermissions": "0770", - "mountTargets": [ - { - "mountTargetId": "950793cb-6312-4a26-77ba-73f0a1138959", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", - "ipAddress": "10.0.0.4" - } - ], - "throughputMibps": 6.25, - "volumeSpecName": "generic", - "coolAccess": false, - "avsDataStore": "Disabled", - "isDefaultQuotaEnabled": false, - "defaultUserQuotaInKiBs": 0, - "defaultGroupQuotaInKiBs": 0, - "enableSubvolumes": "Disabled", - "maximumNumberOfFiles": 100000000, - "smbNonBrowsable": "Disabled", - "smbAccessBasedEnumeration": "Disabled" - }, - "systemData": { - "createdBy": "00000000-0000-0000-0000-000000000000", - "createdByType": "Application", - "createdAt": "2022-09-20T09:49:23.4724183Z", - "lastModifiedBy": "00000000-0000-0000-0000-000000000000", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:02:23.0541555Z" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "69", - "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "useExistingSnapshot": false - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac9f400e-6532-41dc-a7b9-9e071297e867?api-version=2022-05-01", - "Cache-Control": "no-cache", - "Content-Length": "560", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:02:23 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac9f400e-6532-41dc-a7b9-9e071297e867?api-version=2022-05-01\u0026operationResultResponseType=Location", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07aadded-5d37-4d44-bb9d-abdb0ad1363e", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100224Z:07aadded-5d37-4d44-bb9d-abdb0ad1363e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "provisioningState": "Creating", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac9f400e-6532-41dc-a7b9-9e071297e867?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:02:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46cc086e-d10e-4932-afbf-afcd9e537724", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100254Z:46cc086e-d10e-4932-afbf-afcd9e537724", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac9f400e-6532-41dc-a7b9-9e071297e867", - "name": "ac9f400e-6532-41dc-a7b9-9e071297e867", - "status": "Succeeded", - "startTime": "2022-09-20T10:02:23.9193008Z", - "endTime": "2022-09-20T10:02:24.1692525Z", - "percentComplete": 100.0, - "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac9f400e-6532-41dc-a7b9-9e071297e867?api-version=2022-05-01\u0026operationResultResponseType=Location", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "780", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:02:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a24bd8c-f883-421d-9d22-04705e278a52", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100255Z:0a24bd8c-f883-421d-9d22-04705e278a52", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/20/2022 10:02:24 AM", - "location": "", - "properties": { - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", - "creationDate": "0001-01-01T00:00:00Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "failureReason": "None", - "useExistingSnapshot": false, - "provisioningState": "Creating" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:03:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20e14960-45c3-4591-b62d-e971cf054f17", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100307Z:20e14960-45c3-4591-b62d-e971cf054f17", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:03:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a648d2e-095b-46f4-b052-23c424d74fdf", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100318Z:6a648d2e-095b-46f4-b052-23c424d74fdf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:03:28 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9dc83fa-1b54-41b6-bffe-cd1c3abdbde7", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100329Z:a9dc83fa-1b54-41b6-bffe-cd1c3abdbde7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:03:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd9cff53-2dcb-45cd-b183-6ab7f58b5b9f", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100339Z:cd9cff53-2dcb-45cd-b183-6ab7f58b5b9f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:03:49 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c035eb5-ea95-42ce-b08c-ffa0d0203d16", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100350Z:0c035eb5-ea95-42ce-b08c-ffa0d0203d16", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:03:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73419ba4-3cfe-487e-beab-aaeede378e6e", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100400Z:73419ba4-3cfe-487e-beab-aaeede378e6e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:04:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f770fac5-58a4-4eb4-b2bb-73e9059b068f", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100411Z:f770fac5-58a4-4eb4-b2bb-73e9059b068f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:04:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4630448-f2e9-4a5c-947a-f1a19cd4b822", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100422Z:a4630448-f2e9-4a5c-947a-f1a19cd4b822", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:04:32 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fab4567a-dab5-4493-a2d6-9a3088094a9e", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100432Z:fab4567a-dab5-4493-a2d6-9a3088094a9e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", + "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A03%3A40.9416947Z\u0027\u0022", "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T10:03:40.6259945Z" + }, "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false + "dataProtection": { + "backup": { + "backupEnabled": true, + "policyEnforced": false, + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault" + } + }, + "provisioningState": "Succeeded", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-51142cdf", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_37f101c7", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T09:55:01.5800424Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T10:03:40.7954375Z" } } }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:04:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b8a3280-b32b-41d4-8c47-897a2b5047f5", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100443Z:8b8a3280-b32b-41d4-8c47-897a2b5047f5", - "X-Powered-By": "ASP.NET" + "Content-Length": "69", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "RequestBody": { "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" }, - "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50482651-c993-4ba3-b07b-5608f766c02e?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:04:54 GMT", + "Date": "Tue, 25 Oct 2022 10:03:42 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50482651-c993-4ba3-b07b-5608f766c02e?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb7096d0-6fc3-49ff-8b89-2c881f4c8868", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100455Z:cb7096d0-6fc3-49ff-8b89-2c881f4c8868", + "x-ms-correlation-request-id": "9b21f75f-f418-4ea8-b2ed-f941e188b9e7", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100343Z:9b21f75f-f418-4ea8-b2ed-f941e188b9e7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4810,25 +3183,19 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", + "provisioningState": "Creating", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50482651-c993-4ba3-b07b-5608f766c02e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4836,7 +3203,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:05:05 GMT", + "Date": "Tue, 25 Oct 2022 10:03:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4844,70 +3211,64 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa5ad2e2-0eea-4d72-8424-d2cc45b9e7ff", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100505Z:aa5ad2e2-0eea-4d72-8424-d2cc45b9e7ff", + "x-ms-correlation-request-id": "37a31f21-4ab0-49fc-bb8a-f81b0528afc6", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100343Z:37a31f21-4ab0-49fc-bb8a-f81b0528afc6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", - "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50482651-c993-4ba3-b07b-5608f766c02e", + "name": "50482651-c993-4ba3-b07b-5608f766c02e", + "status": "Succeeded", + "startTime": "2022-10-25T10:03:43.1482968Z", + "endTime": "2022-10-25T10:03:43.3515522Z", + "percentComplete": 100.0, "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50482651-c993-4ba3-b07b-5608f766c02e?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "781", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:05:16 GMT", + "Date": "Tue, 25 Oct 2022 10:03:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "522bd4a4-bff6-4034-9c5d-422d3b3667ef", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100517Z:522bd4a4-bff6-4034-9c5d-422d3b3667ef", + "x-ms-correlation-request-id": "b356cce5-f991-4d02-960b-82a79d12382b", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100343Z:b356cce5-f991-4d02-960b-82a79d12382b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf/backups/sdk-py-tests-backup-2-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf/sdk-py-tests-backup-2-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "etag": "10/25/2022 10:03:43 AM", + "location": "", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "creationDate": "0001-01-01T00:00:00Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-51142cdf", - "useExistingSnapshot": false + "failureReason": "None", + "useExistingSnapshot": false, + "provisioningState": "Creating" } } }, @@ -4918,7 +3279,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4926,7 +3287,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:05:27 GMT", + "Date": "Tue, 25 Oct 2022 10:03:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4934,9 +3295,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a54a0eac-78af-45b4-924e-484fa6e9dc9f", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100527Z:a54a0eac-78af-45b4-924e-484fa6e9dc9f", + "x-ms-correlation-request-id": "ff7e7aa6-f194-434a-8a70-931d111b0dd8", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100354Z:ff7e7aa6-f194-434a-8a70-931d111b0dd8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4945,12 +3306,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -4963,7 +3324,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4971,7 +3332,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:05:37 GMT", + "Date": "Tue, 25 Oct 2022 10:04:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4979,9 +3340,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b806f535-7d5b-4422-a66c-0faa28b50379", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100537Z:b806f535-7d5b-4422-a66c-0faa28b50379", + "x-ms-correlation-request-id": "c1dbd619-54d9-41e9-a1f3-892cddc11c14", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100405Z:c1dbd619-54d9-41e9-a1f3-892cddc11c14", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4990,12 +3351,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5008,7 +3369,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5016,7 +3377,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:05:47 GMT", + "Date": "Tue, 25 Oct 2022 10:04:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5024,9 +3385,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e1042cc-b996-423c-9f3a-25530d63b3c3", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100548Z:6e1042cc-b996-423c-9f3a-25530d63b3c3", + "x-ms-correlation-request-id": "30aaf05f-8101-442b-90c9-fcf1ac9dc430", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100416Z:30aaf05f-8101-442b-90c9-fcf1ac9dc430", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5035,12 +3396,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5053,7 +3414,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5061,7 +3422,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:05:58 GMT", + "Date": "Tue, 25 Oct 2022 10:04:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5069,9 +3430,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42e6ef91-527f-427b-94e2-a9fe9708a1d0", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100559Z:42e6ef91-527f-427b-94e2-a9fe9708a1d0", + "x-ms-correlation-request-id": "9ad4218f-b913-467f-944e-35e7c77a1c90", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100426Z:9ad4218f-b913-467f-944e-35e7c77a1c90", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5080,12 +3441,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5098,7 +3459,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5106,7 +3467,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:06:09 GMT", + "Date": "Tue, 25 Oct 2022 10:04:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5114,9 +3475,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f5f8b54-45e1-4ea0-8109-ef45b96e3915", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100610Z:8f5f8b54-45e1-4ea0-8109-ef45b96e3915", + "x-ms-correlation-request-id": "4ca8b436-01e0-4452-9f2c-eab0824774e3", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100436Z:4ca8b436-01e0-4452-9f2c-eab0824774e3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5125,12 +3486,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5143,7 +3504,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5151,7 +3512,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:06:19 GMT", + "Date": "Tue, 25 Oct 2022 10:04:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5159,9 +3520,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b58219b-c54e-4eaf-a7ee-48a086443f3f", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100620Z:6b58219b-c54e-4eaf-a7ee-48a086443f3f", + "x-ms-correlation-request-id": "97ef1f8d-5588-45e0-85b0-61abe7c75557", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100447Z:97ef1f8d-5588-45e0-85b0-61abe7c75557", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5170,12 +3531,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5188,7 +3549,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5196,7 +3557,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:06:30 GMT", + "Date": "Tue, 25 Oct 2022 10:04:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5204,9 +3565,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c84a22f8-0d63-4777-adfa-717bee0be070", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100631Z:c84a22f8-0d63-4777-adfa-717bee0be070", + "x-ms-correlation-request-id": "02f96b6d-1b5d-4c03-b5ad-cc349d3e3b98", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100458Z:02f96b6d-1b5d-4c03-b5ad-cc349d3e3b98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5215,12 +3576,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5233,7 +3594,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5241,7 +3602,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:06:41 GMT", + "Date": "Tue, 25 Oct 2022 10:05:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5249,9 +3610,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "825a2ea1-8485-40a3-b3c1-8b0133c5a80a", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100642Z:825a2ea1-8485-40a3-b3c1-8b0133c5a80a", + "x-ms-correlation-request-id": "4d8496ec-d4fd-47fb-b3c2-263f062d3a77", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100509Z:4d8496ec-d4fd-47fb-b3c2-263f062d3a77", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5260,12 +3621,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5278,7 +3639,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5286,7 +3647,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:06:51 GMT", + "Date": "Tue, 25 Oct 2022 10:05:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5294,9 +3655,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fdf06d12-08a5-4a9f-9438-d553dc342f9d", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100652Z:fdf06d12-08a5-4a9f-9438-d553dc342f9d", + "x-ms-correlation-request-id": "6b05380b-792a-4650-8b07-8460a4ba76f4", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100520Z:6b05380b-792a-4650-8b07-8460a4ba76f4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5305,12 +3666,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5323,7 +3684,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5331,7 +3692,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:07:02 GMT", + "Date": "Tue, 25 Oct 2022 10:05:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5339,9 +3700,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ec5fa5f-ff06-434e-8742-b1ace2d9b57d", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100702Z:4ec5fa5f-ff06-434e-8742-b1ace2d9b57d", + "x-ms-correlation-request-id": "3f95332c-9c61-4392-8156-c103cea7c4b1", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100531Z:3f95332c-9c61-4392-8156-c103cea7c4b1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5350,12 +3711,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5368,7 +3729,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5376,7 +3737,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:07:13 GMT", + "Date": "Tue, 25 Oct 2022 10:05:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5384,9 +3745,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3f6ec55-c073-47c5-8f00-cc77633d55ea", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100714Z:a3f6ec55-c073-47c5-8f00-cc77633d55ea", + "x-ms-correlation-request-id": "9aadb46a-ff4a-4913-b6f5-b884d4a22cdb", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100542Z:9aadb46a-ff4a-4913-b6f5-b884d4a22cdb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5395,12 +3756,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5413,7 +3774,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5421,7 +3782,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:07:24 GMT", + "Date": "Tue, 25 Oct 2022 10:05:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5429,9 +3790,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bd989a4-a901-4f50-8106-5df2b5ef4064", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100724Z:9bd989a4-a901-4f50-8106-5df2b5ef4064", + "x-ms-correlation-request-id": "2c962571-930b-4fde-9b84-bdb9d4c3c63e", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100552Z:2c962571-930b-4fde-9b84-bdb9d4c3c63e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5440,12 +3801,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5458,7 +3819,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5466,7 +3827,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:07:35 GMT", + "Date": "Tue, 25 Oct 2022 10:06:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5474,9 +3835,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "efb45001-9df9-4008-b33e-34783edc90c4", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100735Z:efb45001-9df9-4008-b33e-34783edc90c4", + "x-ms-correlation-request-id": "184c4076-d447-458e-abee-4744190415a0", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100603Z:184c4076-d447-458e-abee-4744190415a0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5485,12 +3846,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5503,7 +3864,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5511,7 +3872,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:07:46 GMT", + "Date": "Tue, 25 Oct 2022 10:06:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5519,9 +3880,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31d61c19-0423-4af5-92a7-b78049967332", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100747Z:31d61c19-0423-4af5-92a7-b78049967332", + "x-ms-correlation-request-id": "68fd2369-2ae1-4d45-8a75-3219e429a945", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100614Z:68fd2369-2ae1-4d45-8a75-3219e429a945", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5530,12 +3891,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5548,7 +3909,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5556,7 +3917,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:07:56 GMT", + "Date": "Tue, 25 Oct 2022 10:06:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5564,9 +3925,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba9ec189-50ea-49da-bb17-655937597355", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100757Z:ba9ec189-50ea-49da-bb17-655937597355", + "x-ms-correlation-request-id": "803add5d-0228-435f-b2fe-24d0ee363af2", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100625Z:803add5d-0228-435f-b2fe-24d0ee363af2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5575,12 +3936,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5593,7 +3954,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5601,7 +3962,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:08:07 GMT", + "Date": "Tue, 25 Oct 2022 10:06:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5609,9 +3970,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f37872a1-034d-4f95-929c-c94c3eb0a62c", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100807Z:f37872a1-034d-4f95-929c-c94c3eb0a62c", + "x-ms-correlation-request-id": "4e9e8184-567e-4b46-86b4-6370fcdcbbfb", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100636Z:4e9e8184-567e-4b46-86b4-6370fcdcbbfb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5620,12 +3981,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5638,7 +3999,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5646,7 +4007,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:08:17 GMT", + "Date": "Tue, 25 Oct 2022 10:06:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5654,9 +4015,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef500be4-e1e3-4d89-b302-aa6c0c9b8634", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100818Z:ef500be4-e1e3-4d89-b302-aa6c0c9b8634", + "x-ms-correlation-request-id": "02fd0083-c7ae-48f9-ad9b-71abec67b547", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100647Z:02fd0083-c7ae-48f9-ad9b-71abec67b547", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5665,12 +4026,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5683,7 +4044,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5691,7 +4052,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:08:28 GMT", + "Date": "Tue, 25 Oct 2022 10:06:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5699,9 +4060,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a406a3a7-cd64-4f3a-8d46-f936eaa3b2ec", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100829Z:a406a3a7-cd64-4f3a-8d46-f936eaa3b2ec", + "x-ms-correlation-request-id": "392c1b78-8318-440f-8933-d97efa2135bf", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100657Z:392c1b78-8318-440f-8933-d97efa2135bf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5710,12 +4071,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5728,7 +4089,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5736,7 +4097,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:08:39 GMT", + "Date": "Tue, 25 Oct 2022 10:07:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5744,9 +4105,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7da698f7-1069-4a02-98d7-ddce6123eb4c", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100840Z:7da698f7-1069-4a02-98d7-ddce6123eb4c", + "x-ms-correlation-request-id": "0879ee28-93ca-4537-a419-078c809b0ae8", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100708Z:0879ee28-93ca-4537-a419-078c809b0ae8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5755,12 +4116,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5773,7 +4134,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5781,7 +4142,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:08:49 GMT", + "Date": "Tue, 25 Oct 2022 10:07:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5789,9 +4150,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2fa14b63-b4e3-47f0-a90a-b4da21ceb2c4", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100850Z:2fa14b63-b4e3-47f0-a90a-b4da21ceb2c4", + "x-ms-correlation-request-id": "361ef7db-64b8-4646-b79a-9c55e3aedf42", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100719Z:361ef7db-64b8-4646-b79a-9c55e3aedf42", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5800,12 +4161,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5818,7 +4179,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5826,7 +4187,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:09:01 GMT", + "Date": "Tue, 25 Oct 2022 10:07:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5834,9 +4195,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19c9d358-5af3-400b-bd8e-b0885ae4b5e1", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100901Z:19c9d358-5af3-400b-bd8e-b0885ae4b5e1", + "x-ms-correlation-request-id": "7d6ebfe3-b032-4e62-a988-f53475c37435", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100729Z:7d6ebfe3-b032-4e62-a988-f53475c37435", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5845,12 +4206,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5863,7 +4224,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5871,7 +4232,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:09:14 GMT", + "Date": "Tue, 25 Oct 2022 10:07:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5879,9 +4240,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7c8a9cc-7513-419c-8b80-710fc0bb338f", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100914Z:b7c8a9cc-7513-419c-8b80-710fc0bb338f", + "x-ms-correlation-request-id": "06010298-2409-4946-b6e7-96d6262a962f", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100740Z:06010298-2409-4946-b6e7-96d6262a962f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5890,12 +4251,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5908,7 +4269,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5916,7 +4277,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:09:24 GMT", + "Date": "Tue, 25 Oct 2022 10:07:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5924,9 +4285,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cefd5823-a043-4ee1-b902-52580e4de8f2", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100924Z:cefd5823-a043-4ee1-b902-52580e4de8f2", + "x-ms-correlation-request-id": "addcfa76-a92c-46b8-9c1d-ee8e3ad70933", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100751Z:addcfa76-a92c-46b8-9c1d-ee8e3ad70933", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5935,12 +4296,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5953,7 +4314,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5961,7 +4322,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:09:35 GMT", + "Date": "Tue, 25 Oct 2022 10:08:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5969,9 +4330,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abe13460-0365-4ffe-a99b-426c8eb3c814", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100936Z:abe13460-0365-4ffe-a99b-426c8eb3c814", + "x-ms-correlation-request-id": "e9a62806-1dd5-4152-945c-4b6435f29922", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100801Z:e9a62806-1dd5-4152-945c-4b6435f29922", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5980,12 +4341,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -5998,7 +4359,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6006,7 +4367,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:09:46 GMT", + "Date": "Tue, 25 Oct 2022 10:08:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6014,9 +4375,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06248827-21c7-4581-a552-4ec7e344ee40", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100947Z:06248827-21c7-4581-a552-4ec7e344ee40", + "x-ms-correlation-request-id": "073dda48-9c66-4de2-bcbb-e494171af968", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100812Z:073dda48-9c66-4de2-bcbb-e494171af968", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6025,12 +4386,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -6043,7 +4404,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6051,7 +4412,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:09:57 GMT", + "Date": "Tue, 25 Oct 2022 10:08:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6059,9 +4420,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31fa5d18-6cd1-46c5-95f7-3900203eb5f3", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-routing-request-id": "WESTEUROPE:20220920T100957Z:31fa5d18-6cd1-46c5-95f7-3900203eb5f3", + "x-ms-correlation-request-id": "aa74f50b-8619-4c68-9d82-87cab621f62f", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100823Z:aa74f50b-8619-4c68-9d82-87cab621f62f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6070,12 +4431,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", + "creationDate": "2022-10-25T10:03:43Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -6088,7 +4449,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6096,7 +4457,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:07 GMT", + "Date": "Tue, 25 Oct 2022 10:08:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6104,9 +4465,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c28dd59-b60c-46e7-8d3c-51c620ba014e", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101008Z:6c28dd59-b60c-46e7-8d3c-51c620ba014e", + "x-ms-correlation-request-id": "ef21dbee-5f93-4d32-80e9-9d9fb9153002", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100834Z:ef21dbee-5f93-4d32-80e9-9d9fb9153002", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6115,12 +4476,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, + "creationDate": "2022-10-25T10:03:49Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", + "size": 348160, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -6133,7 +4494,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6141,7 +4502,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:08 GMT", + "Date": "Tue, 25 Oct 2022 10:08:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6149,9 +4510,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e73bf86d-9c84-4f58-856b-3a4be98dd488", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101008Z:e73bf86d-9c84-4f58-856b-3a4be98dd488", + "x-ms-correlation-request-id": "e334950c-86e6-4ee4-bbf8-7941c0aa325e", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100834Z:e334950c-86e6-4ee4-bbf8-7941c0aa325e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6655,12 +5016,12 @@ "type": "Microsoft.NetApp/netAppAccounts/accountBackups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T09:54:42Z", - "backupId": "019c0a50-c9dc-cc7c-f9fa-c673d8c0c08e", - "size": 0, + "creationDate": "2022-10-25T10:01:04Z", + "backupId": "75dfbf60-02ea-00ac-2ea7-eeb75b9cc633", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -6671,12 +5032,12 @@ "type": "Microsoft.NetApp/netAppAccounts/accountBackups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T10:02:24Z", - "backupId": "af905c8a-ba08-e1e3-7d5d-ee9f131906ea", - "size": 0, + "creationDate": "2022-10-25T10:03:49Z", + "backupId": "caa9adfa-46bf-233c-e944-32ec3a0432a8", + "size": 348160, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-51142cdf", "useExistingSnapshot": false } @@ -6691,7 +5052,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6699,7 +5060,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:08 GMT", + "Date": "Tue, 25 Oct 2022 10:08:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6707,9 +5068,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7ef767c-511d-474f-aee6-6a7411095d61", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101009Z:f7ef767c-511d-474f-aee6-6a7411095d61", + "x-ms-correlation-request-id": "78f10b17-c31e-4be8-b66b-9f7e56583633", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100835Z:78f10b17-c31e-4be8-b66b-9f7e56583633", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6732,7 +5093,7 @@ "Connection": "keep-alive", "Content-Length": "413", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -6751,31 +5112,31 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/708e72bd-9365-4966-bf6c-be1d78050ca3?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/326abf46-818d-422b-8028-fca6f633e84b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "2743", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A10%3A09.5890049Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:08:35 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A08%3A36.3511236Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/708e72bd-9365-4966-bf6c-be1d78050ca3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/326abf46-818d-422b-8028-fca6f633e84b?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "032c81df-772a-4182-895a-fb6efd9a6f3a", + "x-ms-correlation-request-id": "ae2358e8-e193-4677-ab4f-2bb6cf6e926f", "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101009Z:032c81df-772a-4182-895a-fb6efd9a6f3a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100836Z:ae2358e8-e193-4677-ab4f-2bb6cf6e926f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A10%3A09.5890049Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A08%3A36.3511236Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:54:09.9166706Z" + "CreatedOnDate": "2022-10-25T10:03:40.6259945Z" }, "properties": { "dataProtection": { @@ -6786,7 +5147,7 @@ } }, "provisioningState": "Patching", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-51142cdf", "usageThreshold": 107374182400, @@ -6814,7 +5175,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ea6be916", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_37f101c7", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -6829,8 +5190,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "950793cb-6312-4a26-77ba-73f0a1138959", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "mountTargetId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "ipAddress": "10.0.0.4" } ], @@ -6849,21 +5210,61 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:49:23.4724183Z", + "createdAt": "2022-10-25T09:55:01.5800424Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:02:23.0541555Z" + "lastModifiedAt": "2022-10-25T10:03:40.7954375Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/326abf46-818d-422b-8028-fca6f633e84b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:08:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bc0f3bde-617c-4db9-a2cb-5da9d7805562", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100836Z:bc0f3bde-617c-4db9-a2cb-5da9d7805562", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/326abf46-818d-422b-8028-fca6f633e84b", + "name": "326abf46-818d-422b-8028-fca6f633e84b", + "status": "Patching", + "startTime": "2022-10-25T10:08:36.3550646Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/708e72bd-9365-4966-bf6c-be1d78050ca3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/326abf46-818d-422b-8028-fca6f633e84b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6871,7 +5272,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:39 GMT", + "Date": "Tue, 25 Oct 2022 10:09:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6879,17 +5280,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a39fb976-5a9a-4914-b5dd-7720b5fe33b1", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101039Z:a39fb976-5a9a-4914-b5dd-7720b5fe33b1", + "x-ms-correlation-request-id": "761014bb-7d9f-4c81-9ab2-c860ff347201", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100906Z:761014bb-7d9f-4c81-9ab2-c860ff347201", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/708e72bd-9365-4966-bf6c-be1d78050ca3", - "name": "708e72bd-9365-4966-bf6c-be1d78050ca3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/326abf46-818d-422b-8028-fca6f633e84b", + "name": "326abf46-818d-422b-8028-fca6f633e84b", "status": "Succeeded", - "startTime": "2022-09-20T10:10:09.5834874Z", - "endTime": "2022-09-20T10:10:12.5407776Z", + "startTime": "2022-10-25T10:08:36.3550646Z", + "endTime": "2022-10-25T10:08:41.9357961Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" @@ -6897,13 +5298,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/708e72bd-9365-4966-bf6c-be1d78050ca3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/326abf46-818d-422b-8028-fca6f633e84b?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6911,7 +5312,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:39 GMT", + "Date": "Tue, 25 Oct 2022 10:09:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6919,19 +5320,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3894852f-0e11-4276-a0b6-79194fc3044b", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101040Z:3894852f-0e11-4276-a0b6-79194fc3044b", + "x-ms-correlation-request-id": "4a6a135b-6b1d-4043-aefe-7956d10a12f6", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100907Z:4a6a135b-6b1d-4043-aefe-7956d10a12f6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A10%3A12.5402395Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A08%3A41.9379329Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:54:09.9166706Z" + "CreatedOnDate": "2022-10-25T10:03:40.6259945Z" }, "properties": { "dataProtection": { @@ -6941,7 +5342,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault" } }, - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-51142cdf", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -6972,19 +5373,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ea6be916", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_37f101c7", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", - "poolId": "5fd3f1be-bd1e-477c-60c6-3e79ad915149", + "poolId": "bfd04af1-f2a6-4ffd-c3e9-44d8cc189d50", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "950793cb-6312-4a26-77ba-73f0a1138959", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "mountTargetId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "startIp": "", "endIp": "", "gateway": "", @@ -7016,10 +5417,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:49:23.4724183Z", + "createdAt": "2022-10-25T09:55:01.5800424Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:10:09.4654225Z" + "lastModifiedAt": "2022-10-25T10:08:36.2065317Z" } } }, @@ -7030,7 +5431,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -7038,15 +5439,15 @@ "Cache-Control": "no-cache", "Content-Length": "77", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:42 GMT", + "Date": "Tue, 25 Oct 2022 10:09:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6d62492-0385-4f41-bc81-666c670f46ce", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101043Z:f6d62492-0385-4f41-bc81-666c670f46ce", + "x-ms-correlation-request-id": "62b36754-8b9e-469a-b918-bf0a86ecae16", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100910Z:62b36754-8b9e-469a-b918-bf0a86ecae16", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7063,7 +5464,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7071,7 +5472,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:42 GMT", + "Date": "Tue, 25 Oct 2022 10:09:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7079,9 +5480,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "712a9c24-0cb1-4f1b-9368-4de0f98be400", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101043Z:712a9c24-0cb1-4f1b-9368-4de0f98be400", + "x-ms-correlation-request-id": "5e7bba89-d8b9-4ae0-9451-91839ac9db84", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100911Z:5e7bba89-d8b9-4ae0-9451-91839ac9db84", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7104,7 +5505,7 @@ "Connection": "keep-alive", "Content-Length": "413", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -7126,8 +5527,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:43 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T10%3A10%3A44.0763806Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:09:11 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A09%3A11.6969395Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7135,19 +5536,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "989ea090-62c3-474f-92cf-0cbacf90be93", + "x-ms-correlation-request-id": "7abf8003-77bc-401e-851d-64674144a389", "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101044Z:989ea090-62c3-474f-92cf-0cbacf90be93", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100911Z:7abf8003-77bc-401e-851d-64674144a389", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A10%3A44.0763806Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A09%3A11.6969395Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:54:09.9166706Z" + "CreatedOnDate": "2022-10-25T10:03:40.6259945Z" }, "properties": { "dataProtection": { @@ -7158,7 +5559,7 @@ } }, "provisioningState": "Succeeded", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-51142cdf", "usageThreshold": 107374182400, @@ -7186,7 +5587,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ea6be916", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_37f101c7", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -7201,8 +5602,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "950793cb-6312-4a26-77ba-73f0a1138959", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "mountTargetId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "ipAddress": "10.0.0.4" } ], @@ -7221,10 +5622,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:49:23.4724183Z", + "createdAt": "2022-10-25T09:55:01.5800424Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:10:43.9422953Z" + "lastModifiedAt": "2022-10-25T10:09:11.5560314Z" } } }, @@ -7235,7 +5636,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -7243,15 +5644,15 @@ "Cache-Control": "no-cache", "Content-Length": "77", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:45 GMT", + "Date": "Tue, 25 Oct 2022 10:09:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47d528b1-91dc-4053-9883-312022c4e06d", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101046Z:47d528b1-91dc-4053-9883-312022c4e06d", + "x-ms-correlation-request-id": "1e4fcdd0-5068-4ea4-9c53-1f7620ad6f90", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100914Z:1e4fcdd0-5068-4ea4-9c53-1f7620ad6f90", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7268,7 +5669,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7276,7 +5677,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:10:46 GMT", + "Date": "Tue, 25 Oct 2022 10:09:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7284,9 +5685,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29df9bf8-83b7-4230-8a87-04d210201ffd", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101047Z:29df9bf8-83b7-4230-8a87-04d210201ffd", + "x-ms-correlation-request-id": "1f8345ed-15bb-44ef-b9d6-474d5ff5ed0d", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100914Z:1f8345ed-15bb-44ef-b9d6-474d5ff5ed0d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7795,36 +6196,196 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2444c77-e2f4-4fc4-b6a6-0058c444efa8?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 10:10:47 GMT", + "Date": "Tue, 25 Oct 2022 10:09:15 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2444c77-e2f4-4fc4-b6a6-0058c444efa8?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fe3e8e1-2465-438c-85ad-1736279f5818", + "x-ms-correlation-request-id": "83666e28-c6e6-4cfb-86de-6f633b3f9e2d", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101047Z:0fe3e8e1-2465-438c-85ad-1736279f5818", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100915Z:83666e28-c6e6-4cfb-86de-6f633b3f9e2d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2444c77-e2f4-4fc4-b6a6-0058c444efa8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:09:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "50e03059-fd6e-4ba4-8868-cf6298f7546d", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100915Z:50e03059-fd6e-4ba4-8868-cf6298f7546d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674", + "name": "144b2257-9105-4b7f-a6ae-222f1d598674", + "status": "Deleting", + "startTime": "2022-10-25T10:09:15.3412522Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:09:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7af9f17b-a3e4-4b77-9527-16263c2cd843", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T100946Z:7af9f17b-a3e4-4b77-9527-16263c2cd843", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674", + "name": "144b2257-9105-4b7f-a6ae-222f1d598674", + "status": "Deleting", + "startTime": "2022-10-25T10:09:15.3412522Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:10:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7c5e55aa-177b-483c-95d5-51332ebe2315", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101016Z:7c5e55aa-177b-483c-95d5-51332ebe2315", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674", + "name": "144b2257-9105-4b7f-a6ae-222f1d598674", + "status": "Deleting", + "startTime": "2022-10-25T10:09:15.3412522Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:10:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "79760ec0-a377-4e3b-bace-6f25179296d8", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101046Z:79760ec0-a377-4e3b-bace-6f25179296d8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674", + "name": "144b2257-9105-4b7f-a6ae-222f1d598674", + "status": "Deleting", + "startTime": "2022-10-25T10:09:15.3412522Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7832,7 +6393,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:11:18 GMT", + "Date": "Tue, 25 Oct 2022 10:11:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7840,16 +6401,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0aa71dd4-2a9f-43e3-a14e-2d5516c30b26", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101118Z:0aa71dd4-2a9f-43e3-a14e-2d5516c30b26", + "x-ms-correlation-request-id": "775a2842-5ec9-4f47-b55b-69133aefd1a3", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101116Z:775a2842-5ec9-4f47-b55b-69133aefd1a3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2444c77-e2f4-4fc4-b6a6-0058c444efa8", - "name": "c2444c77-e2f4-4fc4-b6a6-0058c444efa8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674", + "name": "144b2257-9105-4b7f-a6ae-222f1d598674", "status": "Deleting", - "startTime": "2022-09-20T10:10:47.694306Z", + "startTime": "2022-10-25T10:09:15.3412522Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -7858,13 +6419,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2444c77-e2f4-4fc4-b6a6-0058c444efa8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7872,7 +6433,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:11:48 GMT", + "Date": "Tue, 25 Oct 2022 10:11:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7880,16 +6441,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9c1d80f-7184-43bb-8155-784c5f60bb53", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101148Z:d9c1d80f-7184-43bb-8155-784c5f60bb53", + "x-ms-correlation-request-id": "ba4607d2-2794-4cde-a6aa-2ba0c4dbf492", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101147Z:ba4607d2-2794-4cde-a6aa-2ba0c4dbf492", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2444c77-e2f4-4fc4-b6a6-0058c444efa8", - "name": "c2444c77-e2f4-4fc4-b6a6-0058c444efa8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674", + "name": "144b2257-9105-4b7f-a6ae-222f1d598674", "status": "Deleting", - "startTime": "2022-09-20T10:10:47.694306Z", + "startTime": "2022-10-25T10:09:15.3412522Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -7898,13 +6459,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2444c77-e2f4-4fc4-b6a6-0058c444efa8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7912,7 +6473,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:12:18 GMT", + "Date": "Tue, 25 Oct 2022 10:12:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7920,17 +6481,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94cb94c7-2121-4fff-8aa3-6483b9cbb2a6", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101218Z:94cb94c7-2121-4fff-8aa3-6483b9cbb2a6", + "x-ms-correlation-request-id": "504cf5a9-df4f-4cf6-ac51-b6555a748491", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101217Z:504cf5a9-df4f-4cf6-ac51-b6555a748491", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2444c77-e2f4-4fc4-b6a6-0058c444efa8", - "name": "c2444c77-e2f4-4fc4-b6a6-0058c444efa8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674", + "name": "144b2257-9105-4b7f-a6ae-222f1d598674", "status": "Succeeded", - "startTime": "2022-09-20T10:10:47.694306Z", - "endTime": "2022-09-20T10:12:00.2788Z", + "startTime": "2022-10-25T10:09:15.3412522Z", + "endTime": "2022-10-25T10:12:07.1814166Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf" @@ -7938,13 +6499,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2444c77-e2f4-4fc4-b6a6-0058c444efa8?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/144b2257-9105-4b7f-a6ae-222f1d598674?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7952,7 +6513,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:12:18 GMT", + "Date": "Tue, 25 Oct 2022 10:12:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7960,19 +6521,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3130b1b-3d2c-4e3a-a127-d5b3b5018707", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101219Z:c3130b1b-3d2c-4e3a-a127-d5b3b5018707", + "x-ms-correlation-request-id": "6e5490d8-952d-4fa3-a54c-617526f50666", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101217Z:6e5490d8-952d-4fa3-a54c-617526f50666", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1/sdk-py-tests-vol-3-51142cdf", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A11%3A43.2270242Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A11%3A49.7739712Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:54:09.9166706Z" + "CreatedOnDate": "2022-10-25T10:03:40.6259945Z" }, "properties": { "dataProtection": { @@ -7982,7 +6543,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/vaults/cbsvault" } }, - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-51142cdf", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -8013,19 +6574,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ea6be916", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_37f101c7", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-51142cdf", - "poolId": "5fd3f1be-bd1e-477c-60c6-3e79ad915149", + "poolId": "bfd04af1-f2a6-4ffd-c3e9-44d8cc189d50", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "950793cb-6312-4a26-77ba-73f0a1138959", - "fileSystemId": "950793cb-6312-4a26-77ba-73f0a1138959", + "mountTargetId": "45560a1e-245e-7887-3be1-99b25ba4f74a", + "fileSystemId": "45560a1e-245e-7887-3be1-99b25ba4f74a", "startIp": "", "endIp": "", "gateway": "", @@ -8057,10 +6618,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:49:23.4724183Z", + "createdAt": "2022-10-25T09:55:01.5800424Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T10:10:43.9422953Z" + "lastModifiedAt": "2022-10-25T10:09:11.5560314Z" } } }, @@ -8071,7 +6632,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -8079,14 +6640,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:15:41 GMT", + "Date": "Tue, 25 Oct 2022 10:15:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94ecd993-0428-4074-81b9-a8779dfa41aa", + "x-ms-correlation-request-id": "d3ee5c07-bbcf-4867-bd9a-f9daf7b576ee", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101541Z:94ecd993-0428-4074-81b9-a8779dfa41aa" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101541Z:d3ee5c07-bbcf-4867-bd9a-f9daf7b576ee" }, "ResponseBody": { "error": { @@ -8103,36 +6664,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/783a638f-f0b0-43aa-b451-9d268729ced3?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9338299-c494-4fc9-82b3-5731893f8729?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 10:15:53 GMT", + "Date": "Tue, 25 Oct 2022 10:15:54 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/783a638f-f0b0-43aa-b451-9d268729ced3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9338299-c494-4fc9-82b3-5731893f8729?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5054dbad-9c78-4aef-8f9b-76089f77fd00", + "x-ms-correlation-request-id": "bbf0eca7-126c-4dd6-b57b-20774672adf6", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101554Z:5054dbad-9c78-4aef-8f9b-76089f77fd00", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101554Z:bbf0eca7-126c-4dd6-b57b-20774672adf6", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/783a638f-f0b0-43aa-b451-9d268729ced3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9338299-c494-4fc9-82b3-5731893f8729?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8140,7 +6701,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:16:24 GMT", + "Date": "Tue, 25 Oct 2022 10:15:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8148,17 +6709,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77d64a4f-3dd0-47ba-a399-c7ca95fd56a9", + "x-ms-correlation-request-id": "863be0eb-da3b-41fc-a511-a58857ffbdc6", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101624Z:77d64a4f-3dd0-47ba-a399-c7ca95fd56a9", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101554Z:863be0eb-da3b-41fc-a511-a58857ffbdc6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9338299-c494-4fc9-82b3-5731893f8729", + "name": "b9338299-c494-4fc9-82b3-5731893f8729", + "status": "Deleting", + "startTime": "2022-10-25T10:15:54.212598Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9338299-c494-4fc9-82b3-5731893f8729?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:16:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1d2221dc-ab4e-414b-a2e5-b9b05ea025ce", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101624Z:1d2221dc-ab4e-414b-a2e5-b9b05ea025ce", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/783a638f-f0b0-43aa-b451-9d268729ced3", - "name": "783a638f-f0b0-43aa-b451-9d268729ced3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9338299-c494-4fc9-82b3-5731893f8729", + "name": "b9338299-c494-4fc9-82b3-5731893f8729", "status": "Succeeded", - "startTime": "2022-09-20T10:15:53.9661948Z", - "endTime": "2022-09-20T10:15:54.2630779Z", + "startTime": "2022-10-25T10:15:54.212598Z", + "endTime": "2022-10-25T10:15:55.8143935Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1" @@ -8166,13 +6767,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/783a638f-f0b0-43aa-b451-9d268729ced3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9338299-c494-4fc9-82b3-5731893f8729?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8180,7 +6781,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:16:24 GMT", + "Date": "Tue, 25 Oct 2022 10:16:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8188,22 +6789,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f47e40cb-5084-4f20-837b-f8ac42bd9741", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101624Z:f47e40cb-5084-4f20-837b-f8ac42bd9741", + "x-ms-correlation-request-id": "041b82f1-a63b-4876-b2a5-a9656342cb0d", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101625Z:041b82f1-a63b-4876-b2a5-a9656342cb0d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-51142cdf/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A15%3A53.9531156Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A15%3A54.2080978Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:48:39.2684885Z" + "CreatedOnDate": "2022-10-25T09:54:46.9621819Z" }, "properties": { - "poolId": "5fd3f1be-bd1e-477c-60c6-3e79ad915149", + "poolId": "bfd04af1-f2a6-4ffd-c3e9-44d8cc189d50", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf/capacityPools/sdk-py-tests-pool-1", @@ -8217,10 +6818,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:48:40.2435127Z", + "createdAt": "2022-10-25T09:54:48.2594699Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:48:40.2435127Z" + "lastModifiedAt": "2022-10-25T09:54:48.2594699Z" } } }, @@ -8232,20 +6833,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 10:16:34 GMT", + "Date": "Tue, 25 Oct 2022 10:16:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b5e8d73-a977-42b3-b020-3285193f53b3", + "x-ms-correlation-request-id": "f542779c-ebdb-4186-b750-af0fa43fb770", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101634Z:4b5e8d73-a977-42b3-b020-3285193f53b3" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101635Z:f542779c-ebdb-4186-b750-af0fa43fb770" }, "ResponseBody": null }, @@ -8257,20 +6858,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 10:16:44 GMT", + "Date": "Tue, 25 Oct 2022 10:16:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "687334de-bea5-42b5-a511-89f216461912", + "x-ms-correlation-request-id": "0a111c28-199a-4640-9092-3975730998c3", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101645Z:687334de-bea5-42b5-a511-89f216461912" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101645Z:0a111c28-199a-4640-9092-3975730998c3" }, "ResponseBody": null }, @@ -8282,20 +6883,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 10:16:55 GMT", + "Date": "Tue, 25 Oct 2022 10:16:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94c35907-aa2c-45f6-bf3c-324b0bef89af", + "x-ms-correlation-request-id": "fbb20a03-b16d-48ee-aec1-1625f9645576", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101655Z:94c35907-aa2c-45f6-bf3c-324b0bef89af" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101655Z:fbb20a03-b16d-48ee-aec1-1625f9645576" }, "ResponseBody": null }, @@ -8307,20 +6908,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Tue, 20 Sep 2022 10:17:05 GMT", + "Date": "Tue, 25 Oct 2022 10:17:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c11ae61-2557-4ae3-bf97-7f71e868213c", + "x-ms-correlation-request-id": "3ed45f90-2124-4467-a4b9-e8d512b95238", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101705Z:0c11ae61-2557-4ae3-bf97-7f71e868213c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101706Z:3ed45f90-2124-4467-a4b9-e8d512b95238" }, "ResponseBody": null }, @@ -8331,7 +6932,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -8339,14 +6940,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:17:15 GMT", + "Date": "Tue, 25 Oct 2022 10:17:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44fc6866-9861-4644-b754-87020a747832", + "x-ms-correlation-request-id": "00ec42d6-4f92-410f-8cf3-e1210f8ec90e", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101716Z:44fc6866-9861-4644-b754-87020a747832" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101716Z:00ec42d6-4f92-410f-8cf3-e1210f8ec90e" }, "ResponseBody": { "error": { @@ -8363,36 +6964,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5a96d9-943b-4fa1-8b0c-aeda9b975a21?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30f95b1c-fc7e-4d90-b1ce-7f02584b7f10?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 10:17:17 GMT", + "Date": "Tue, 25 Oct 2022 10:17:17 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5a96d9-943b-4fa1-8b0c-aeda9b975a21?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30f95b1c-fc7e-4d90-b1ce-7f02584b7f10?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "112edfe0-6dfb-4a35-b45e-42b28ff073b6", + "x-ms-correlation-request-id": "5dd4cae3-ea61-49c3-b043-ac35d0541708", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101717Z:112edfe0-6dfb-4a35-b45e-42b28ff073b6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101717Z:5dd4cae3-ea61-49c3-b043-ac35d0541708", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5a96d9-943b-4fa1-8b0c-aeda9b975a21?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30f95b1c-fc7e-4d90-b1ce-7f02584b7f10?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8400,7 +7001,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:17:47 GMT", + "Date": "Tue, 25 Oct 2022 10:17:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8408,17 +7009,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2cf13d98-4bec-4cbf-9b90-8b117efb9ef9", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101747Z:2cf13d98-4bec-4cbf-9b90-8b117efb9ef9", + "x-ms-correlation-request-id": "f038629d-087b-4bf9-a540-b7f9bfa47b6e", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101718Z:f038629d-087b-4bf9-a540-b7f9bfa47b6e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5a96d9-943b-4fa1-8b0c-aeda9b975a21", - "name": "3a5a96d9-943b-4fa1-8b0c-aeda9b975a21", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30f95b1c-fc7e-4d90-b1ce-7f02584b7f10", + "name": "30f95b1c-fc7e-4d90-b1ce-7f02584b7f10", "status": "Succeeded", - "startTime": "2022-09-20T10:17:17.56015Z", - "endTime": "2022-09-20T10:17:17.59138Z", + "startTime": "2022-10-25T10:17:17.7726461Z", + "endTime": "2022-10-25T10:17:17.8195221Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf" @@ -8426,13 +7027,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5a96d9-943b-4fa1-8b0c-aeda9b975a21?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30f95b1c-fc7e-4d90-b1ce-7f02584b7f10?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8440,7 +7041,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:17:47 GMT", + "Date": "Tue, 25 Oct 2022 10:17:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8448,19 +7049,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca040062-44ba-4a52-98fb-f1be95ff32ab", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101748Z:ca040062-44ba-4a52-98fb-f1be95ff32ab", + "x-ms-correlation-request-id": "8a99c684-4190-4419-b49f-52f455d01c53", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101718Z:8a99c684-4190-4419-b49f-52f455d01c53", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf", "name": "sdk-py-tests-acc-1-51142cdf", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T10%3A17%3A17.5601482Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A17%3A17.7656024Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T09:48:05.0608315Z" + "CreatedOnDate": "2022-10-25T09:54:42.5424974Z" }, "properties": { "encryption": { @@ -8471,10 +7072,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T09:48:06.0034467Z", + "createdAt": "2022-10-25T09:54:43.6623257Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T09:48:06.0034467Z" + "lastModifiedAt": "2022-10-25T09:54:43.6623257Z" } } }, @@ -8485,50 +7086,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 10:17:47 GMT", + "Date": "Tue, 25 Oct 2022 10:17:18 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a61550c4-7895-4860-8599-e639e84873db", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101748Z:a61550c4-7895-4860-8599-e639e84873db" + "x-ms-correlation-request-id": "729732d5-0cce-4276-9593-4d50611ef3c9", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101718Z:729732d5-0cce-4276-9593-4d50611ef3c9", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-51142cdf\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-51142cdf?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a3ea5630-d4d6-4789-a684-51c884f79a6e?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/80afe803-1df9-4dad-9e25-655f7489a52c?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Tue, 20 Sep 2022 10:17:48 GMT", + "Date": "Tue, 25 Oct 2022 10:17:19 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/a3ea5630-d4d6-4789-a684-51c884f79a6e?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/80afe803-1df9-4dad-9e25-655f7489a52c?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -8537,12 +7140,50 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a82a6aee-544c-4be2-8a25-6f72ac2c9ccf", - "x-ms-correlation-request-id": "80bd0724-b601-4a0c-953c-6a59f738ff37", + "x-ms-arm-service-request-id": "a7842ca9-ff7e-44f9-8c8f-30520ee11c48", + "x-ms-correlation-request-id": "e6362147-4081-43d2-943a-030b28481cbf", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220920T101749Z:80bd0724-b601-4a0c-953c-6a59f738ff37" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101719Z:e6362147-4081-43d2-943a-030b28481cbf" }, "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/69a75bda-882e-44d5-8431-63421204132a/providers/Microsoft.Network/locations/westus2/operations/80afe803-1df9-4dad-9e25-655f7489a52c?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Authorization": "Sanitized", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)", + "x-ms-client-request-id": "34c763dc-544e-11ed-aca0-ac675dc66a69" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:17:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "66f8bf8c-c941-4b37-b7e6-a4bb47360d96", + "x-ms-correlation-request-id": "c03acbf2-0e22-49fa-a9ec-05ef25570734", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-request-id": "266b6c64-d599-4a25-9bda-f9f08600d34c", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T101720Z:c03acbf2-0e22-49fa-a9ec-05ef25570734" + }, + "ResponseBody": { + "status": "Succeeded" + } } ], "Variables": {} diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_create_delete_backup.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_create_delete_backup.json index ad3868e30e6b..c2992f56751e 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_create_delete_backup.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_create_delete_backup.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:46:48 GMT", + "Date": "Tue, 25 Oct 2022 10:33:15 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:46:48 GMT", + "Date": "Tue, 25 Oct 2022 10:33:15 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "392191c3-cc9d-4c22-bd74-584fad61e416", + "client-request-id": "095a90c6-e003-4889-9cb0-089c2edb6a11", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "392191c3-cc9d-4c22-bd74-584fad61e416", + "client-request-id": "095a90c6-e003-4889-9cb0-089c2edb6a11", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:46:49 GMT", + "Date": "Tue, 25 Oct 2022 10:33:15 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/811224fa-afb6-41c2-a238-5971c3f2b335?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/586c637f-8406-4777-8faf-57d91ef3d032?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:46:56 GMT", + "Date": "Tue, 25 Oct 2022 10:33:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "aa806e7d-b591-4041-aa3c-88a8faeb311f", - "x-ms-correlation-request-id": "32894d16-71ac-4090-81d3-f5113eb66d55", + "x-ms-arm-service-request-id": "36a2e7a2-3504-46cd-b505-074a2c3c9410", + "x-ms-correlation-request-id": "c1a73b89-b9ba-43ea-af84-3bbc61f6e0db", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134657Z:32894d16-71ac-4090-81d3-f5113eb66d55" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103326Z:c1a73b89-b9ba-43ea-af84-3bbc61f6e0db" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-c2b62691", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691", - "etag": "W/\u0022f33bb340-7b94-4309-abfa-d639d6d1cca1\u0022", + "etag": "W/\u0022525c2e7b-2b07-45bd-b519-79863a85f117\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:46:53.2845086Z" + "CreatedOnDate": "2022-10-25T10:33:18.9060134Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "038ccfa0-aba9-42b1-be16-fef4087a8881", + "resourceGuid": "71a51d62-e408-4013-872f-054bd16d9b77", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/811224fa-afb6-41c2-a238-5971c3f2b335?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/586c637f-8406-4777-8faf-57d91ef3d032?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:00 GMT", + "Date": "Tue, 25 Oct 2022 10:33:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "35597c0f-2417-412b-bc39-54b9d6ea08d6", - "x-ms-correlation-request-id": "d39d4f50-eded-491e-b09b-edcc712419a0", + "x-ms-arm-service-request-id": "8eeacffb-e4fa-4754-a198-7b3bf828eb98", + "x-ms-correlation-request-id": "bb69c582-04d5-4790-9910-7e2ebf1114ac", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134700Z:d39d4f50-eded-491e-b09b-edcc712419a0" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103326Z:bb69c582-04d5-4790-9910-7e2ebf1114ac" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:00 GMT", - "ETag": "W/\u00222d7b749e-754b-4130-a635-1a171bf3fa43\u0022", + "Date": "Tue, 25 Oct 2022 10:33:27 GMT", + "ETag": "W/\u0022fde15678-9904-4e4f-b664-c6cc58d38d17\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2004d62b-f479-4693-946d-f97110545e59", - "x-ms-correlation-request-id": "432de783-46ae-47bf-9d0f-274c04c6d773", + "x-ms-arm-service-request-id": "4e67ba7f-8d28-4743-b12f-8660d961f65d", + "x-ms-correlation-request-id": "f1f118ef-497a-4afc-85d3-95981633e275", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134701Z:432de783-46ae-47bf-9d0f-274c04c6d773" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103327Z:f1f118ef-497a-4afc-85d3-95981633e275" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-c2b62691", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691", - "etag": "W/\u00222d7b749e-754b-4130-a635-1a171bf3fa43\u0022", + "etag": "W/\u0022fde15678-9904-4e4f-b664-c6cc58d38d17\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:46:53.2845086Z" + "CreatedOnDate": "2022-10-25T10:33:18.9060134Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "038ccfa0-aba9-42b1-be16-fef4087a8881", + "resourceGuid": "71a51d62-e408-4013-872f-054bd16d9b77", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d542cb92-98a0-422e-8d67-bc28cdb0cfc2?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a1524858-1879-4748-99d1-70360530956b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:01 GMT", + "Date": "Tue, 25 Oct 2022 10:33:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b17b650f-b92a-40dd-81f5-2c4002fb674e", - "x-ms-correlation-request-id": "f0513639-c5ba-4e4d-80f3-580bcc261675", + "x-ms-arm-service-request-id": "a353800f-8621-4038-bc46-0a10e5719437", + "x-ms-correlation-request-id": "e871dc5d-9058-43fa-8b5c-367e82a074b2", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134702Z:f0513639-c5ba-4e4d-80f3-580bcc261675" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103327Z:e871dc5d-9058-43fa-8b5c-367e82a074b2" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default", - "etag": "W/\u0022ce2903b1-38b8-4f56-b3ca-5c6b50e28082\u0022", + "etag": "W/\u00228c990181-790f-4d8f-98fc-d0fe430b17f7\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022ce2903b1-38b8-4f56-b3ca-5c6b50e28082\u0022", + "etag": "W/\u00228c990181-790f-4d8f-98fc-d0fe430b17f7\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d542cb92-98a0-422e-8d67-bc28cdb0cfc2?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a1524858-1879-4748-99d1-70360530956b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:04 GMT", + "Date": "Tue, 25 Oct 2022 10:33:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ffda3242-d2b7-49f2-9465-ba226540bc6e", - "x-ms-correlation-request-id": "6109e645-5db1-415d-a656-d0814014f832", + "x-ms-arm-service-request-id": "7513f0e6-0940-4a52-b0c8-24cbece26c35", + "x-ms-correlation-request-id": "82a7b8e0-5f6d-48a0-8eb5-6a3fcd283273", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134705Z:6109e645-5db1-415d-a656-d0814014f832" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103328Z:82a7b8e0-5f6d-48a0-8eb5-6a3fcd283273" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:05 GMT", - "ETag": "W/\u0022ac631474-8e75-4cd8-b986-90400656915b\u0022", + "Date": "Tue, 25 Oct 2022 10:33:28 GMT", + "ETag": "W/\u0022ea2e5cd7-7e07-4417-8cd2-445fbd090f4a\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ab1eb5ad-3e09-4ad7-aa99-eeb682e9094e", - "x-ms-correlation-request-id": "0159b20b-a844-4450-8fbd-721199d7d275", + "x-ms-arm-service-request-id": "5813e99e-089d-4abd-a68c-6fd4c1108574", + "x-ms-correlation-request-id": "f37db73d-f530-4952-8d95-871608285b69", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134705Z:0159b20b-a844-4450-8fbd-721199d7d275" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103328Z:f37db73d-f530-4952-8d95-871608285b69" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default", - "etag": "W/\u0022ac631474-8e75-4cd8-b986-90400656915b\u0022", + "etag": "W/\u0022ea2e5cd7-7e07-4417-8cd2-445fbd090f4a\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022ac631474-8e75-4cd8-b986-90400656915b\u0022", + "etag": "W/\u0022ea2e5cd7-7e07-4417-8cd2-445fbd090f4a\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:05 GMT", + "Date": "Tue, 25 Oct 2022 10:33:27 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:05 GMT", + "Date": "Tue, 25 Oct 2022 10:33:27 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "dd0febd9-ceb0-40e4-93fb-2bc3d286e1b4", + "client-request-id": "592d9898-95a0-4b19-86d1-060fec9ae882", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "dd0febd9-ceb0-40e4-93fb-2bc3d286e1b4", + "client-request-id": "592d9898-95a0-4b19-86d1-060fec9ae882", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:05 GMT", + "Date": "Tue, 25 Oct 2022 10:33:28 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dfc20d52-d250-42fb-88a4-9b943b6c184c?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1318f2c9-e756-405b-b7f8-e10129410f8d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A47%3A09.0639487Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:33:33 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A33%3A32.2467706Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6ee6ee3-3cb1-427a-9473-684878a56487", + "x-ms-correlation-request-id": "adf5b167-975b-4a36-ba0b-7300cc45f1d5", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134710Z:f6ee6ee3-3cb1-427a-9473-684878a56487", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103333Z:adf5b167-975b-4a36-ba0b-7300cc45f1d5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A47%3A09.0639487Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A33%3A32.2467706Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:47:06.9689702Z" + "CreatedOnDate": "2022-10-25T10:33:30.0641160Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:47:08.1675047Z", + "createdAt": "2022-10-25T10:33:31.2370835Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:47:08.1675047Z" + "lastModifiedAt": "2022-10-25T10:33:31.2370835Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dfc20d52-d250-42fb-88a4-9b943b6c184c?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1318f2c9-e756-405b-b7f8-e10129410f8d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:39 GMT", + "Date": "Tue, 25 Oct 2022 10:33:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2fcc89ff-8af6-4ee1-bff1-e4fc6a01fb23", + "x-ms-correlation-request-id": "ac709a50-546d-4929-a507-77bea811c87d", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134740Z:2fcc89ff-8af6-4ee1-bff1-e4fc6a01fb23", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103333Z:ac709a50-546d-4929-a507-77bea811c87d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dfc20d52-d250-42fb-88a4-9b943b6c184c", - "name": "dfc20d52-d250-42fb-88a4-9b943b6c184c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1318f2c9-e756-405b-b7f8-e10129410f8d", + "name": "1318f2c9-e756-405b-b7f8-e10129410f8d", "status": "Succeeded", - "startTime": "2022-09-19T13:47:09.0651795Z", - "endTime": "2022-09-19T13:47:09.1120678Z", + "startTime": "2022-10-25T10:33:32.2552807Z", + "endTime": "2022-10-25T10:33:32.3178249Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:40 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A47%3A09.1183116Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:33:33 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A33%3A32.3198596Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0bdaa93-926e-4633-8810-9644c181db25", + "x-ms-correlation-request-id": "4f34e779-2a2d-48fc-baf8-1c52f0a9b63a", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134741Z:a0bdaa93-926e-4633-8810-9644c181db25", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103333Z:4f34e779-2a2d-48fc-baf8-1c52f0a9b63a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A47%3A09.1183116Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A33%3A32.3198596Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:47:06.9689702Z" + "CreatedOnDate": "2022-10-25T10:33:30.0641160Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:47:08.1675047Z", + "createdAt": "2022-10-25T10:33:31.2370835Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:47:08.1675047Z" + "lastModifiedAt": "2022-10-25T10:33:31.2370835Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1743b6f4-f189-4f12-a086-c539f171fef4?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbde752b-c94d-4478-9f5e-13a5e62a3787?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:47:43 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A47%3A42.8943926Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:33:36 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A33%3A35.4509216Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d68da14-9596-4439-9405-7cc4ef69c015", + "x-ms-correlation-request-id": "c8a07d8a-24b2-40f2-8910-1e69a4e72a18", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134744Z:0d68da14-9596-4439-9405-7cc4ef69c015", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103336Z:c8a07d8a-24b2-40f2-8910-1e69a4e72a18", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A47%3A42.8943926Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A33%3A35.4509216Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:47:41.4622114Z" + "CreatedOnDate": "2022-10-25T10:33:34.2386962Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:47:42.6958843Z", + "createdAt": "2022-10-25T10:33:35.2087677Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:47:42.6958843Z" + "lastModifiedAt": "2022-10-25T10:33:35.2087677Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1743b6f4-f189-4f12-a086-c539f171fef4?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbde752b-c94d-4478-9f5e-13a5e62a3787?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:48:14 GMT", + "Date": "Tue, 25 Oct 2022 10:33:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e2ed6ff-ea0e-467c-b39d-840aad16cb87", + "x-ms-correlation-request-id": "10b4e415-a6c5-40f0-bc14-d24ce0bb7221", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134814Z:1e2ed6ff-ea0e-467c-b39d-840aad16cb87", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103337Z:10b4e415-a6c5-40f0-bc14-d24ce0bb7221", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1743b6f4-f189-4f12-a086-c539f171fef4", - "name": "1743b6f4-f189-4f12-a086-c539f171fef4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbde752b-c94d-4478-9f5e-13a5e62a3787", + "name": "cbde752b-c94d-4478-9f5e-13a5e62a3787", "status": "Succeeded", - "startTime": "2022-09-19T13:47:42.8993355Z", - "endTime": "2022-09-19T13:47:43.9462078Z", + "startTime": "2022-10-25T10:33:35.4777447Z", + "endTime": "2022-10-25T10:33:36.5715013Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:48:14 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A47%3A43.950583Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:33:37 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A33%3A36.5604453Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e23621e-8e3d-444c-a90d-e02ebc4fbac3", + "x-ms-correlation-request-id": "b07fea03-2049-44ec-9c1e-1f2f5bb18187", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134814Z:9e23621e-8e3d-444c-a90d-e02ebc4fbac3", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103337Z:b07fea03-2049-44ec-9c1e-1f2f5bb18187", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A47%3A43.950583Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A33%3A36.5604453Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:47:41.4622114Z" + "CreatedOnDate": "2022-10-25T10:33:34.2386962Z" }, "properties": { - "poolId": "13ce5cfe-030e-cd25-c60d-5a255ff740d6", + "poolId": "f4e44f0a-1583-0ee3-d302-3ee8e04ea626", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:47:42.6958843Z", + "createdAt": "2022-10-25T10:33:35.2087677Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:47:42.6958843Z" + "lastModifiedAt": "2022-10-25T10:33:35.2087677Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:48:28 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A48%3A27.1867944Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:33:49 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A33%3A48.9541286Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b875dc5a-be79-4e1b-beb4-b46ecdfb91a4", + "x-ms-correlation-request-id": "8944ee92-24e0-48ae-9091-f53eb506cefa", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134828Z:b875dc5a-be79-4e1b-beb4-b46ecdfb91a4", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103349Z:8944ee92-24e0-48ae-9091-f53eb506cefa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A48%3A27.1867944Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A33%3A48.9541286Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:48:25.0272940Z" + "CreatedOnDate": "2022-10-25T10:33:47.7250244Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:48:26.1412458Z", + "createdAt": "2022-10-25T10:33:48.7013347Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:48:26.1412458Z" + "lastModifiedAt": "2022-10-25T10:33:48.7013347Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:48:58 GMT", + "Date": "Tue, 25 Oct 2022 10:33:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f024d9b3-c3fb-4a9a-b5c1-52a7d23ddf46", + "x-ms-correlation-request-id": "fec3729e-d760-407a-99eb-ae9c33b2f243", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134858Z:f024d9b3-c3fb-4a9a-b5c1-52a7d23ddf46", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103350Z:fec3729e-d760-407a-99eb-ae9c33b2f243", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", - "name": "a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "name": "6c642df5-1ecf-40bf-96b6-17f846ce14d8", "status": "Creating", - "startTime": "2022-09-19T13:48:27.1840106Z", + "startTime": "2022-10-25T10:33:48.9521649Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:49:28 GMT", + "Date": "Tue, 25 Oct 2022 10:34:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "694a01fc-8610-4545-b31c-ee17631cecf7", + "x-ms-correlation-request-id": "2fe0b037-ff20-4cee-9dd4-eceaa57f2a4f", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134928Z:694a01fc-8610-4545-b31c-ee17631cecf7", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103420Z:2fe0b037-ff20-4cee-9dd4-eceaa57f2a4f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", - "name": "a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "name": "6c642df5-1ecf-40bf-96b6-17f846ce14d8", "status": "Creating", - "startTime": "2022-09-19T13:48:27.1840106Z", + "startTime": "2022-10-25T10:33:48.9521649Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:49:58 GMT", + "Date": "Tue, 25 Oct 2022 10:34:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79b207e0-f121-4fc9-8b60-ecd5e83d2593", + "x-ms-correlation-request-id": "3b93503a-6709-4661-8625-28a0f1692079", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134959Z:79b207e0-f121-4fc9-8b60-ecd5e83d2593", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103450Z:3b93503a-6709-4661-8625-28a0f1692079", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", - "name": "a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "name": "6c642df5-1ecf-40bf-96b6-17f846ce14d8", "status": "Creating", - "startTime": "2022-09-19T13:48:27.1840106Z", + "startTime": "2022-10-25T10:33:48.9521649Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:50:29 GMT", + "Date": "Tue, 25 Oct 2022 10:35:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e46fc388-ef38-4370-a89e-ddacc172af12", + "x-ms-correlation-request-id": "4ef3090b-4aa4-467b-9cb3-0394facaa997", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135029Z:e46fc388-ef38-4370-a89e-ddacc172af12", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103520Z:4ef3090b-4aa4-467b-9cb3-0394facaa997", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", - "name": "a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "name": "6c642df5-1ecf-40bf-96b6-17f846ce14d8", "status": "Creating", - "startTime": "2022-09-19T13:48:27.1840106Z", + "startTime": "2022-10-25T10:33:48.9521649Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:50:59 GMT", + "Date": "Tue, 25 Oct 2022 10:35:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b879c88c-5374-4cf2-ba61-d828526e92a1", + "x-ms-correlation-request-id": "f8c8f8d3-a05c-41a8-82a8-4f3c0c47da3c", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135059Z:b879c88c-5374-4cf2-ba61-d828526e92a1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103551Z:f8c8f8d3-a05c-41a8-82a8-4f3c0c47da3c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", - "name": "a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "name": "6c642df5-1ecf-40bf-96b6-17f846ce14d8", "status": "Creating", - "startTime": "2022-09-19T13:48:27.1840106Z", + "startTime": "2022-10-25T10:33:48.9521649Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:51:29 GMT", + "Date": "Tue, 25 Oct 2022 10:36:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63ffbab9-aa63-4d71-9dce-b654f351b1ca", + "x-ms-correlation-request-id": "4db6585b-835a-4008-a421-cab4ec34a893", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135129Z:63ffbab9-aa63-4d71-9dce-b654f351b1ca", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103621Z:4db6585b-835a-4008-a421-cab4ec34a893", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", - "name": "a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "name": "6c642df5-1ecf-40bf-96b6-17f846ce14d8", "status": "Creating", - "startTime": "2022-09-19T13:48:27.1840106Z", + "startTime": "2022-10-25T10:33:48.9521649Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:51:59 GMT", + "Date": "Tue, 25 Oct 2022 10:36:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cc74c69-a60c-49f7-a33c-cac4b722f748", + "x-ms-correlation-request-id": "1b229ea0-5dbe-446c-a73c-9fb4e7783464", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135200Z:7cc74c69-a60c-49f7-a33c-cac4b722f748", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103651Z:1b229ea0-5dbe-446c-a73c-9fb4e7783464", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", - "name": "a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "name": "6c642df5-1ecf-40bf-96b6-17f846ce14d8", "status": "Creating", - "startTime": "2022-09-19T13:48:27.1840106Z", + "startTime": "2022-10-25T10:33:48.9521649Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:52:30 GMT", + "Date": "Tue, 25 Oct 2022 10:37:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1486,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a9a0ab0-cf42-4af3-8301-4746dd87612c", + "x-ms-correlation-request-id": "e1168373-5370-45bc-b6c5-7ed5998daa7c", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135230Z:2a9a0ab0-cf42-4af3-8301-4746dd87612c", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103721Z:e1168373-5370-45bc-b6c5-7ed5998daa7c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "name": "6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "status": "Creating", + "startTime": "2022-10-25T10:33:48.9521649Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:37:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f408ff7d-2da7-40cb-a5d0-556191c7ab12", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103752Z:f408ff7d-2da7-40cb-a5d0-556191c7ab12", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "name": "6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "status": "Creating", + "startTime": "2022-10-25T10:33:48.9521649Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:38:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d0ffaf15-627d-40be-9409-37779143c388", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103823Z:d0ffaf15-627d-40be-9409-37779143c388", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", - "name": "a89eaa01-35f4-4da4-a3d3-c8a89740e3c1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6c642df5-1ecf-40bf-96b6-17f846ce14d8", + "name": "6c642df5-1ecf-40bf-96b6-17f846ce14d8", "status": "Succeeded", - "startTime": "2022-09-19T13:48:27.1840106Z", - "endTime": "2022-09-19T13:52:29.8331639Z", + "startTime": "2022-10-25T10:33:48.9521649Z", + "endTime": "2022-10-25T10:38:22.4567204Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691" @@ -1509,7 +1590,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1598,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:52:31 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A52%3A29.8404598Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:38:22 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A38%3A22.4456415Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1607,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5c5306a-53dd-442c-b7f2-b7fb50ac6dbf", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135231Z:f5c5306a-53dd-442c-b7f2-b7fb50ac6dbf", + "x-ms-correlation-request-id": "894edd70-4e01-42ff-a0c1-10584b704787", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103823Z:894edd70-4e01-42ff-a0c1-10584b704787", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A52%3A29.8404598Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A38%3A22.4456415Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:48:25.0272940Z" + "CreatedOnDate": "2022-10-25T10:33:47.7250244Z" }, "properties": { - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c2b62691", "usageThreshold": 107374182400, @@ -1569,7 +1650,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d3d68978", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_734a8e9c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1665,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "c306ca81-33aa-35be-454c-5e0d1ed40761", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "mountTargetId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1686,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:48:26.1412458Z", + "createdAt": "2022-10-25T10:33:48.7013347Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:48:26.1412458Z" + "lastModifiedAt": "2022-10-25T10:33:48.7013347Z" } } }, @@ -1619,7 +1700,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1627,8 +1708,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:52:41 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A52%3A29.8404598Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:38:33 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A38%3A22.4456415Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1636,22 +1717,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b555478a-432b-41a2-bc49-52276a693903", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135242Z:b555478a-432b-41a2-bc49-52276a693903", + "x-ms-correlation-request-id": "a7f9232d-822f-4421-aedb-50fce3e7307a", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103833Z:a7f9232d-822f-4421-aedb-50fce3e7307a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A52%3A29.8404598Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A38%3A22.4456415Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:48:25.0272940Z" + "CreatedOnDate": "2022-10-25T10:33:47.7250244Z" }, "properties": { - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c2b62691", "usageThreshold": 107374182400, @@ -1679,7 +1760,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d3d68978", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_734a8e9c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1694,8 +1775,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "c306ca81-33aa-35be-454c-5e0d1ed40761", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "mountTargetId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "ipAddress": "10.0.0.4" } ], @@ -1715,10 +1796,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:48:26.1412458Z", + "createdAt": "2022-10-25T10:33:48.7013347Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:48:26.1412458Z" + "lastModifiedAt": "2022-10-25T10:33:48.7013347Z" } } }, @@ -1729,7 +1810,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1737,7 +1818,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:52:42 GMT", + "Date": "Tue, 25 Oct 2022 10:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1745,9 +1826,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f13b3f8-6786-49ce-8f59-3bd5a21d55ad", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135242Z:7f13b3f8-6786-49ce-8f59-3bd5a21d55ad", + "x-ms-correlation-request-id": "2d96d69a-062d-486c-8853-7fdd2082e11a", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103834Z:2d96d69a-062d-486c-8853-7fdd2082e11a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1770,7 +1851,7 @@ "Connection": "keep-alive", "Content-Length": "412", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1789,35 +1870,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6b7f3c2-e832-43c6-bb43-0eb6620d623a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/162ae9d3-95ae-4b42-9e94-5817f18d69c5?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "2480", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:52:43 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A52%3A43.1375486Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:38:34 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A38%3A34.9405163Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6b7f3c2-e832-43c6-bb43-0eb6620d623a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/162ae9d3-95ae-4b42-9e94-5817f18d69c5?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b07c7274-4c0f-416f-90fe-2b219e33157a", + "x-ms-correlation-request-id": "1be443ab-a8ce-4405-8761-591962f57eb5", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135243Z:b07c7274-4c0f-416f-90fe-2b219e33157a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103835Z:1be443ab-a8ce-4405-8761-591962f57eb5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A52%3A43.1375486Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A38%3A34.9405163Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:48:25.0272940Z" + "CreatedOnDate": "2022-10-25T10:33:47.7250244Z" }, "properties": { "provisioningState": "Patching", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c2b62691", "usageThreshold": 107374182400, @@ -1845,7 +1926,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d3d68978", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_734a8e9c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1860,8 +1941,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "c306ca81-33aa-35be-454c-5e0d1ed40761", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "mountTargetId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "ipAddress": "10.0.0.4" } ], @@ -1880,21 +1961,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:48:26.1412458Z", + "createdAt": "2022-10-25T10:33:48.7013347Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:48:26.1412458Z" + "lastModifiedAt": "2022-10-25T10:33:48.7013347Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6b7f3c2-e832-43c6-bb43-0eb6620d623a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/162ae9d3-95ae-4b42-9e94-5817f18d69c5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1902,7 +1983,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:53:13 GMT", + "Date": "Tue, 25 Oct 2022 10:38:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1910,17 +1991,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04850faf-3c1f-4b21-8d7d-824059634736", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135313Z:04850faf-3c1f-4b21-8d7d-824059634736", + "x-ms-correlation-request-id": "f607fdd6-64df-4a11-8c44-ad157d76a32f", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103835Z:f607fdd6-64df-4a11-8c44-ad157d76a32f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/162ae9d3-95ae-4b42-9e94-5817f18d69c5", + "name": "162ae9d3-95ae-4b42-9e94-5817f18d69c5", + "status": "Patching", + "startTime": "2022-10-25T10:38:34.9527328Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/162ae9d3-95ae-4b42-9e94-5817f18d69c5?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:39:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "23e4c93e-459f-44ad-87a8-52883c096d3b", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103905Z:23e4c93e-459f-44ad-87a8-52883c096d3b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6b7f3c2-e832-43c6-bb43-0eb6620d623a", - "name": "e6b7f3c2-e832-43c6-bb43-0eb6620d623a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/162ae9d3-95ae-4b42-9e94-5817f18d69c5", + "name": "162ae9d3-95ae-4b42-9e94-5817f18d69c5", "status": "Succeeded", - "startTime": "2022-09-19T13:52:43.1318886Z", - "endTime": "2022-09-19T13:52:45.8673558Z", + "startTime": "2022-10-25T10:38:34.9527328Z", + "endTime": "2022-10-25T10:38:38.1870913Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691" @@ -1928,13 +2049,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6b7f3c2-e832-43c6-bb43-0eb6620d623a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/162ae9d3-95ae-4b42-9e94-5817f18d69c5?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1942,7 +2063,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:53:13 GMT", + "Date": "Tue, 25 Oct 2022 10:39:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1950,19 +2071,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70701983-3642-4b5e-ab9f-e82881fce124", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135313Z:70701983-3642-4b5e-ab9f-e82881fce124", + "x-ms-correlation-request-id": "00c7aa85-41a1-45f7-9576-1dc76c7fecee", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103905Z:00c7aa85-41a1-45f7-9576-1dc76c7fecee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A52%3A45.8729214Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A38%3A38.1756713Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:52:42.7964993Z" + "CreatedOnDate": "2022-10-25T10:38:34.6438244Z" }, "properties": { "dataProtection": { @@ -1972,12 +2093,12 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault" } }, - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c2b62691", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", "usageThreshold": 107374182400, - "usedBytes": 0, + "usedBytes": 356352, "exportPolicy": { "rules": [ { @@ -2003,19 +2124,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d3d68978", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_734a8e9c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", - "poolId": "13ce5cfe-030e-cd25-c60d-5a255ff740d6", + "poolId": "f4e44f0a-1583-0ee3-d302-3ee8e04ea626", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "c306ca81-33aa-35be-454c-5e0d1ed40761", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "mountTargetId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "startIp": "", "endIp": "", "gateway": "", @@ -2047,10 +2168,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:48:26.1412458Z", + "createdAt": "2022-10-25T10:33:48.7013347Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:52:42.9969236Z" + "lastModifiedAt": "2022-10-25T10:38:34.8192551Z" } } }, @@ -2063,7 +2184,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -2073,20 +2194,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8680bcb-a24d-4ce0-95fd-eac5c3aa134a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3253d27a-1075-44e3-be3b-dd289f80ca39?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "542", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:53:13 GMT", + "Date": "Tue, 25 Oct 2022 10:39:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8680bcb-a24d-4ce0-95fd-eac5c3aa134a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3253d27a-1075-44e3-be3b-dd289f80ca39?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f92366f0-1509-49aa-bb0f-ed0ef9184220", + "x-ms-correlation-request-id": "71fcfc31-3952-4e6d-b88e-3ae99b901c57", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135314Z:f92366f0-1509-49aa-bb0f-ed0ef9184220", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103906Z:71fcfc31-3952-4e6d-b88e-3ae99b901c57", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2101,13 +2222,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8680bcb-a24d-4ce0-95fd-eac5c3aa134a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3253d27a-1075-44e3-be3b-dd289f80ca39?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2115,7 +2236,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:53:43 GMT", + "Date": "Tue, 25 Oct 2022 10:39:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2123,109 +2244,104 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bb2cc96-290e-49cc-9df2-61e2aaf1b7ff", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135344Z:8bb2cc96-290e-49cc-9df2-61e2aaf1b7ff", + "x-ms-correlation-request-id": "6239b577-d483-4829-b185-728c0bce3963", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103906Z:6239b577-d483-4829-b185-728c0bce3963", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8680bcb-a24d-4ce0-95fd-eac5c3aa134a", - "name": "a8680bcb-a24d-4ce0-95fd-eac5c3aa134a", - "status": "Succeeded", - "startTime": "2022-09-19T13:53:14.1947644Z", - "endTime": "2022-09-19T13:53:17.1962814Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3253d27a-1075-44e3-be3b-dd289f80ca39", + "name": "3253d27a-1075-44e3-be3b-dd289f80ca39", + "status": "Creating", + "startTime": "2022-10-25T10:39:06.4258716Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8680bcb-a24d-4ce0-95fd-eac5c3aa134a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3253d27a-1075-44e3-be3b-dd289f80ca39?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "761", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:53:44 GMT", + "Date": "Tue, 25 Oct 2022 10:39:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00f25875-93ac-4cc2-b25b-431eaa131d86", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135344Z:00f25875-93ac-4cc2-b25b-431eaa131d86", + "x-ms-correlation-request-id": "f4cb2773-e2ca-4259-84f1-2b24c98395d3", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103937Z:f4cb2773-e2ca-4259-84f1-2b24c98395d3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/19/2022 1:53:17 PM", - "location": "", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3253d27a-1075-44e3-be3b-dd289f80ca39", + "name": "3253d27a-1075-44e3-be3b-dd289f80ca39", + "status": "Succeeded", + "startTime": "2022-10-25T10:39:06.4258716Z", + "endTime": "2022-10-25T10:39:07.2227214Z", + "percentComplete": 100.0, "properties": { - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", - "creationDate": "0001-01-01T00:00:00Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "failureReason": "None", - "useExistingSnapshot": false, - "provisioningState": "Creating" + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3253d27a-1075-44e3-be3b-dd289f80ca39?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "763", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:53:55 GMT", + "Date": "Tue, 25 Oct 2022 10:39:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75687c3d-ceea-46eb-a47b-463927ee2666", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135356Z:75687c3d-ceea-46eb-a47b-463927ee2666", + "x-ms-correlation-request-id": "8bc4395f-09ed-4bbd-96b0-a88f1b2b27ee", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103937Z:8bc4395f-09ed-4bbd-96b0-a88f1b2b27ee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "etag": "10/25/2022 10:39:07 AM", + "location": "", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", + "creationDate": "0001-01-01T00:00:00Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false + "failureReason": "None", + "useExistingSnapshot": false, + "provisioningState": "Creating" } } }, @@ -2236,7 +2352,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2244,7 +2360,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:54:05 GMT", + "Date": "Tue, 25 Oct 2022 10:39:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2252,9 +2368,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd20f743-a474-40ef-9e00-eda67936c0e6", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135406Z:dd20f743-a474-40ef-9e00-eda67936c0e6", + "x-ms-correlation-request-id": "abc67171-d12d-4aa5-a5b3-94d5338bd442", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103947Z:abc67171-d12d-4aa5-a5b3-94d5338bd442", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2263,12 +2379,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2281,7 +2397,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2289,7 +2405,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:54:18 GMT", + "Date": "Tue, 25 Oct 2022 10:39:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2297,9 +2413,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d40424c-0500-409b-8078-5bbfb5290a77", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135418Z:4d40424c-0500-409b-8078-5bbfb5290a77", + "x-ms-correlation-request-id": "1feb6843-6acc-441c-9f88-ad5c81a6d85e", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103958Z:1feb6843-6acc-441c-9f88-ad5c81a6d85e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2308,12 +2424,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2326,7 +2442,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2334,7 +2450,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:54:29 GMT", + "Date": "Tue, 25 Oct 2022 10:40:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2342,9 +2458,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88ac57c0-e386-458c-aa2f-94c73a619a2d", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135429Z:88ac57c0-e386-458c-aa2f-94c73a619a2d", + "x-ms-correlation-request-id": "7f24a1e3-7f13-4ff2-bc99-863cf545cf34", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104009Z:7f24a1e3-7f13-4ff2-bc99-863cf545cf34", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2353,12 +2469,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2371,7 +2487,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2379,7 +2495,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:54:39 GMT", + "Date": "Tue, 25 Oct 2022 10:40:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2387,9 +2503,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "259ba06f-759a-4d54-b646-0b107452f995", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135439Z:259ba06f-759a-4d54-b646-0b107452f995", + "x-ms-correlation-request-id": "1cbaa6b5-9135-4532-b59f-ead6e93e172b", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104019Z:1cbaa6b5-9135-4532-b59f-ead6e93e172b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2398,12 +2514,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2416,7 +2532,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2424,7 +2540,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:54:49 GMT", + "Date": "Tue, 25 Oct 2022 10:40:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2432,9 +2548,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83b5e70f-d158-4bbc-8a38-16530337a3f7", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135450Z:83b5e70f-d158-4bbc-8a38-16530337a3f7", + "x-ms-correlation-request-id": "772dca03-c40d-4467-8627-34162d121e11", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104030Z:772dca03-c40d-4467-8627-34162d121e11", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2443,12 +2559,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2461,7 +2577,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2469,7 +2585,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:55:00 GMT", + "Date": "Tue, 25 Oct 2022 10:40:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2477,9 +2593,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5611b2b6-6e93-46e4-8340-4d7613b8d1e6", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135500Z:5611b2b6-6e93-46e4-8340-4d7613b8d1e6", + "x-ms-correlation-request-id": "b57d2b70-a622-4d1b-b965-9165c45eb86c", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104041Z:b57d2b70-a622-4d1b-b965-9165c45eb86c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2488,12 +2604,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2506,7 +2622,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2514,7 +2630,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:55:10 GMT", + "Date": "Tue, 25 Oct 2022 10:40:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2522,9 +2638,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "091caf7a-a51c-491c-a084-b907963a6c63", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135511Z:091caf7a-a51c-491c-a084-b907963a6c63", + "x-ms-correlation-request-id": "ff98cd87-1acf-4655-b1c8-7d8b9fbc5699", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104051Z:ff98cd87-1acf-4655-b1c8-7d8b9fbc5699", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2533,12 +2649,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2551,7 +2667,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2559,7 +2675,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:55:21 GMT", + "Date": "Tue, 25 Oct 2022 10:41:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2567,9 +2683,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2048ef87-b54d-49d6-a623-16f80f887e60", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135521Z:2048ef87-b54d-49d6-a623-16f80f887e60", + "x-ms-correlation-request-id": "d5e7369c-93f4-4b01-870f-4bfdc95d9cec", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104103Z:d5e7369c-93f4-4b01-870f-4bfdc95d9cec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2578,12 +2694,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2596,7 +2712,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2604,7 +2720,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:55:32 GMT", + "Date": "Tue, 25 Oct 2022 10:41:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2612,9 +2728,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dde8a7b8-8a7a-4ff9-9dc9-6b3654bac6f5", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135533Z:dde8a7b8-8a7a-4ff9-9dc9-6b3654bac6f5", + "x-ms-correlation-request-id": "acfeaf5a-83a4-486b-850d-c9de81cad1bd", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104113Z:acfeaf5a-83a4-486b-850d-c9de81cad1bd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2623,12 +2739,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2641,7 +2757,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2649,7 +2765,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:55:43 GMT", + "Date": "Tue, 25 Oct 2022 10:41:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2657,9 +2773,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a67a46c8-6947-4d61-860f-67dfa9b4032b", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135544Z:a67a46c8-6947-4d61-860f-67dfa9b4032b", + "x-ms-correlation-request-id": "cd3abbec-663e-4a16-8ec1-d936416cde46", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104124Z:cd3abbec-663e-4a16-8ec1-d936416cde46", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2668,12 +2784,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2686,7 +2802,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2694,7 +2810,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:55:53 GMT", + "Date": "Tue, 25 Oct 2022 10:41:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2702,9 +2818,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdca7f9d-268d-482d-8eca-1d8153a93c9a", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135554Z:bdca7f9d-268d-482d-8eca-1d8153a93c9a", + "x-ms-correlation-request-id": "a4ef1007-200d-4742-9e1c-de1afdc9a849", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104135Z:a4ef1007-200d-4742-9e1c-de1afdc9a849", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2713,12 +2829,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2731,7 +2847,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2739,7 +2855,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:56:04 GMT", + "Date": "Tue, 25 Oct 2022 10:41:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2747,9 +2863,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73824e18-86c5-4c24-b7cd-fffecaabd636", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135605Z:73824e18-86c5-4c24-b7cd-fffecaabd636", + "x-ms-correlation-request-id": "19003aad-f9b0-42fb-b9de-3d6a05a22ee7", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104145Z:19003aad-f9b0-42fb-b9de-3d6a05a22ee7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2758,12 +2874,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2776,7 +2892,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2784,7 +2900,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:56:14 GMT", + "Date": "Tue, 25 Oct 2022 10:41:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2792,9 +2908,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b879bd3-b358-44d8-af5e-cbf95396bd85", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135615Z:2b879bd3-b358-44d8-af5e-cbf95396bd85", + "x-ms-correlation-request-id": "7c13c9c8-4199-4505-81be-a7f38d715731", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104156Z:7c13c9c8-4199-4505-81be-a7f38d715731", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2803,12 +2919,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2821,7 +2937,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2829,7 +2945,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:56:25 GMT", + "Date": "Tue, 25 Oct 2022 10:42:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2837,9 +2953,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a84384bf-7e29-4b9d-99c5-3a7ecdf7a627", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135626Z:a84384bf-7e29-4b9d-99c5-3a7ecdf7a627", + "x-ms-correlation-request-id": "011ec37c-c206-49ef-afcb-58be6967ec5b", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104206Z:011ec37c-c206-49ef-afcb-58be6967ec5b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2848,12 +2964,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2866,7 +2982,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2874,7 +2990,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:56:35 GMT", + "Date": "Tue, 25 Oct 2022 10:42:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2882,9 +2998,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0237c86c-13d2-4cc1-9371-95d18c17b6d4", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135636Z:0237c86c-13d2-4cc1-9371-95d18c17b6d4", + "x-ms-correlation-request-id": "f128b08c-ee49-4b67-856b-bc84f3ec344f", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104217Z:f128b08c-ee49-4b67-856b-bc84f3ec344f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2893,12 +3009,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2911,7 +3027,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2919,7 +3035,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:56:47 GMT", + "Date": "Tue, 25 Oct 2022 10:42:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2927,9 +3043,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7edceef-cacd-4508-b0ca-9460a7ade2ea", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135648Z:e7edceef-cacd-4508-b0ca-9460a7ade2ea", + "x-ms-correlation-request-id": "cd9a5235-d43a-4baa-90d1-6dd56815fd9c", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104228Z:cd9a5235-d43a-4baa-90d1-6dd56815fd9c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2938,12 +3054,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -2956,7 +3072,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2964,7 +3080,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:56:59 GMT", + "Date": "Tue, 25 Oct 2022 10:42:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2972,9 +3088,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8711bf0-b4e8-4a57-b757-2531b38ddb16", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135659Z:f8711bf0-b4e8-4a57-b757-2531b38ddb16", + "x-ms-correlation-request-id": "b1377406-bdfe-4fd9-a875-367d1f9272a1", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104239Z:b1377406-bdfe-4fd9-a875-367d1f9272a1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2983,12 +3099,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -3001,7 +3117,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3009,7 +3125,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:57:10 GMT", + "Date": "Tue, 25 Oct 2022 10:42:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3017,9 +3133,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4177541f-483f-4a59-800c-de64a8e9fa3d", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135710Z:4177541f-483f-4a59-800c-de64a8e9fa3d", + "x-ms-correlation-request-id": "6807bb7a-d791-4704-bfbc-fd8c9bbfad48", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104252Z:6807bb7a-d791-4704-bfbc-fd8c9bbfad48", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3028,12 +3144,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -3046,7 +3162,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3054,7 +3170,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:57:20 GMT", + "Date": "Tue, 25 Oct 2022 10:43:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3062,9 +3178,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f34c13e-cf67-4684-bf0e-7e0f5638e14a", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135721Z:3f34c13e-cf67-4684-bf0e-7e0f5638e14a", + "x-ms-correlation-request-id": "d29dc078-e0eb-4f1c-8d10-0c9c05d3e238", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104302Z:d29dc078-e0eb-4f1c-8d10-0c9c05d3e238", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3073,12 +3189,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -3091,7 +3207,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3099,7 +3215,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:57:31 GMT", + "Date": "Tue, 25 Oct 2022 10:43:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3107,9 +3223,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15bc3dae-b757-4f02-aab0-b90fe0d4766a", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135731Z:15bc3dae-b757-4f02-aab0-b90fe0d4766a", + "x-ms-correlation-request-id": "11276872-04b8-4ce0-a772-04b07d64e956", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104312Z:11276872-04b8-4ce0-a772-04b07d64e956", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3118,12 +3234,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -3136,7 +3252,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3144,7 +3260,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:57:41 GMT", + "Date": "Tue, 25 Oct 2022 10:43:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3152,9 +3268,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92c4317f-0185-40f0-ba1e-4875762629fb", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135741Z:92c4317f-0185-40f0-ba1e-4875762629fb", + "x-ms-correlation-request-id": "7c3f567d-1173-4a17-9668-b8f19eeafb29", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104323Z:7c3f567d-1173-4a17-9668-b8f19eeafb29", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3163,12 +3279,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -3181,7 +3297,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3189,7 +3305,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:57:52 GMT", + "Date": "Tue, 25 Oct 2022 10:43:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3197,9 +3313,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c47370d6-20b8-4ad7-bcf2-a5feb92071b0", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135753Z:c47370d6-20b8-4ad7-bcf2-a5feb92071b0", + "x-ms-correlation-request-id": "2fe6f167-2883-40cd-99f1-a2f14e3a7da3", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104334Z:2fe6f167-2883-40cd-99f1-a2f14e3a7da3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3208,12 +3324,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -3226,7 +3342,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3234,7 +3350,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:58:03 GMT", + "Date": "Tue, 25 Oct 2022 10:43:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3242,9 +3358,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec0e8b5d-c3df-4647-a2f7-f5e98e0d4f85", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135804Z:ec0e8b5d-c3df-4647-a2f7-f5e98e0d4f85", + "x-ms-correlation-request-id": "9e90ba84-616d-40aa-ab37-83c151f07d84", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104345Z:9e90ba84-616d-40aa-ab37-83c151f07d84", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3253,12 +3369,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -3271,7 +3387,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3279,7 +3395,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:58:14 GMT", + "Date": "Tue, 25 Oct 2022 10:43:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3287,9 +3403,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12e7ca50-7a9b-4456-a59c-1d8b98cb6d2f", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135815Z:12e7ca50-7a9b-4456-a59c-1d8b98cb6d2f", + "x-ms-correlation-request-id": "4aaf666a-0d92-42a0-930a-fbecb108af83", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104355Z:4aaf666a-0d92-42a0-930a-fbecb108af83", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3298,12 +3414,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", + "creationDate": "2022-10-25T10:39:07Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -3316,7 +3432,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3324,7 +3440,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:58:25 GMT", + "Date": "Tue, 25 Oct 2022 10:44:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3332,9 +3448,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5536aec-a528-444e-aebe-86c3f0cba945", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135825Z:b5536aec-a528-444e-aebe-86c3f0cba945", + "x-ms-correlation-request-id": "8bde9447-42ab-4069-b9f8-088eda49088f", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104406Z:8bde9447-42ab-4069-b9f8-088eda49088f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3343,25 +3459,25 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, + "creationDate": "2022-10-25T10:39:28Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3369,7 +3485,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:58:35 GMT", + "Date": "Tue, 25 Oct 2022 10:44:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3377,639 +3493,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6691ca18-3be7-44af-a706-8281875663a4", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135836Z:6691ca18-3be7-44af-a706-8281875663a4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:58:46 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c5823603-802e-409c-87d9-96103974bd08", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135847Z:c5823603-802e-409c-87d9-96103974bd08", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:58:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76bfb560-7079-4895-992d-97c23ff3491b", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135858Z:76bfb560-7079-4895-992d-97c23ff3491b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:59:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c90976e-2857-4837-83d2-b2b87d8a3ccd", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135908Z:7c90976e-2857-4837-83d2-b2b87d8a3ccd", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:59:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ec3b8c8-a0b1-403f-a599-08b08c316d91", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135919Z:6ec3b8c8-a0b1-403f-a599-08b08c316d91", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:59:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e62a63a5-ea5d-4ca3-bc91-88a2520861e6", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135930Z:e62a63a5-ea5d-4ca3-bc91-88a2520861e6", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:59:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97af9923-4981-4a1e-a013-f6bbfd876be8", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135940Z:97af9923-4981-4a1e-a013-f6bbfd876be8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:59:51 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c511e5ec-6ea3-4110-a313-656810d70955", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-routing-request-id": "WESTEUROPE:20220919T135951Z:c511e5ec-6ea3-4110-a313-656810d70955", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:00:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15a847e7-7c74-4ece-8962-61ce614d38ba", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140005Z:15a847e7-7c74-4ece-8962-61ce614d38ba", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:00:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4148749-88d8-4ad9-8c5a-d7ea702e6336", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140016Z:a4148749-88d8-4ad9-8c5a-d7ea702e6336", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:00:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3b07b94-94a8-4060-bef5-5cbdef0434a7", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140027Z:d3b07b94-94a8-4060-bef5-5cbdef0434a7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:00:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04dd9a96-9892-4de3-bde9-40e2ab7c49bc", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140037Z:04dd9a96-9892-4de3-bde9-40e2ab7c49bc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:00:47 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "729661e2-cbef-4438-889a-749778e3eabc", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140048Z:729661e2-cbef-4438-889a-749778e3eabc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:00:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f16b9ce-7070-4ba6-8d55-a869e2a3d42a", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140058Z:0f16b9ce-7070-4ba6-8d55-a869e2a3d42a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:00:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd5dfb45-91f3-4a9a-91b4-1116addd109f", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140059Z:bd5dfb45-91f3-4a9a-91b4-1116addd109f", + "x-ms-correlation-request-id": "8a8ba258-df1c-409e-bb12-0527c5f0a69d", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104406Z:8a8ba258-df1c-409e-bb12-0527c5f0a69d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4032,7 +3518,7 @@ "Connection": "keep-alive", "Content-Length": "412", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -4054,8 +3540,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:00:59 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A00%3A59.9043733Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:44:08 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A44%3A07.1399563Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4063,19 +3549,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7874986-cf6c-407f-8dbd-36e9f48d137a", + "x-ms-correlation-request-id": "87594e21-acad-4107-a84f-f1c26e3f45e4", "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140059Z:e7874986-cf6c-407f-8dbd-36e9f48d137a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104409Z:87594e21-acad-4107-a84f-f1c26e3f45e4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A00%3A59.9043733Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A44%3A07.1399563Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:52:42.7964993Z" + "CreatedOnDate": "2022-10-25T10:44:06.8317635Z" }, "properties": { "dataProtection": { @@ -4086,7 +3572,7 @@ } }, "provisioningState": "Succeeded", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c2b62691", "usageThreshold": 107374182400, @@ -4114,7 +3600,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d3d68978", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_734a8e9c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -4129,279 +3615,66 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "c306ca81-33aa-35be-454c-5e0d1ed40761", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "mountTargetId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "ipAddress": "10.0.0.4" } - ], - "throughputMibps": 6.25, - "volumeSpecName": "generic", - "coolAccess": false, - "avsDataStore": "Disabled", - "isDefaultQuotaEnabled": false, - "defaultUserQuotaInKiBs": 0, - "defaultGroupQuotaInKiBs": 0, - "enableSubvolumes": "Disabled", - "maximumNumberOfFiles": 100000000, - "smbNonBrowsable": "Disabled", - "smbAccessBasedEnumeration": "Disabled" - }, - "systemData": { - "createdBy": "00000000-0000-0000-0000-000000000000", - "createdByType": "Application", - "createdAt": "2022-09-19T13:48:26.1412458Z", - "lastModifiedBy": "00000000-0000-0000-0000-000000000000", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:00:59.7580591Z" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "69", - "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "useExistingSnapshot": false - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d0ab73a-569b-4886-9048-26f3ece306fd?api-version=2022-05-01", - "Cache-Control": "no-cache", - "Content-Length": "542", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:00:59 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d0ab73a-569b-4886-9048-26f3ece306fd?api-version=2022-05-01\u0026operationResultResponseType=Location", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fd57197-56ee-4961-9b35-b3104184d7f2", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140100Z:8fd57197-56ee-4961-9b35-b3104184d7f2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "provisioningState": "Creating", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d0ab73a-569b-4886-9048-26f3ece306fd?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:01:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de0bda4d-98a3-45d3-bced-bb103f6f4897", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140130Z:de0bda4d-98a3-45d3-bced-bb103f6f4897", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d0ab73a-569b-4886-9048-26f3ece306fd", - "name": "0d0ab73a-569b-4886-9048-26f3ece306fd", - "status": "Succeeded", - "startTime": "2022-09-19T14:01:00.430807Z", - "endTime": "2022-09-19T14:01:00.8214213Z", - "percentComplete": 100.0, - "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d0ab73a-569b-4886-9048-26f3ece306fd?api-version=2022-05-01\u0026operationResultResponseType=Location", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "761", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:01:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cfd1355-b3f9-4d11-b462-8b77557492fa", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140131Z:4cfd1355-b3f9-4d11-b462-8b77557492fa", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/19/2022 2:01:00 PM", - "location": "", - "properties": { - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", - "creationDate": "0001-01-01T00:00:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "failureReason": "None", - "useExistingSnapshot": false, - "provisioningState": "Creating" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:01:42 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26d81b66-b595-4ef1-8be0-271749e3ed5b", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140142Z:26d81b66-b595-4ef1-8be0-271749e3ed5b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:01:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3432d1fc-0278-4f6a-baf3-a679bdafeebb", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140152Z:3432d1fc-0278-4f6a-baf3-a679bdafeebb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T10:33:48.7013347Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T10:44:07.0092326Z" } } }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "69", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "location": "westus2", + "properties": { + "useExistingSnapshot": false + } + }, + "StatusCode": 201, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a92ddb29-5922-4d84-96be-135907bae1cf?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "542", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:02:03 GMT", + "Date": "Tue, 25 Oct 2022 10:44:08 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a92ddb29-5922-4d84-96be-135907bae1cf?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ddbfb0e9-2076-471f-81f5-dbefed5977ad", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140203Z:ddbfb0e9-2076-471f-81f5-dbefed5977ad", + "x-ms-correlation-request-id": "9965173b-477d-4a88-8115-9171af1477a0", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104409Z:9965173b-477d-4a88-8115-9171af1477a0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4410,25 +3683,19 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", + "provisioningState": "Creating", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a92ddb29-5922-4d84-96be-135907bae1cf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4436,7 +3703,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:02:14 GMT", + "Date": "Tue, 25 Oct 2022 10:44:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4444,70 +3711,64 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74b283e1-5f02-4dd0-babb-824566ebefeb", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140214Z:74b283e1-5f02-4dd0-babb-824566ebefeb", + "x-ms-correlation-request-id": "343daf66-aa56-4572-9324-2072a46b8ed8", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104409Z:343daf66-aa56-4572-9324-2072a46b8ed8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a92ddb29-5922-4d84-96be-135907bae1cf", + "name": "a92ddb29-5922-4d84-96be-135907bae1cf", + "status": "Succeeded", + "startTime": "2022-10-25T10:44:09.4942927Z", + "endTime": "2022-10-25T10:44:09.7286108Z", + "percentComplete": 100.0, "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a92ddb29-5922-4d84-96be-135907bae1cf?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "763", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:02:24 GMT", + "Date": "Tue, 25 Oct 2022 10:44:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af5d53fd-8f1d-4625-89dd-58626516cd8a", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140224Z:af5d53fd-8f1d-4625-89dd-58626516cd8a", + "x-ms-correlation-request-id": "adc485e7-ea62-41b8-b18f-ac1fac916f5a", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104410Z:adc485e7-ea62-41b8-b18f-ac1fac916f5a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "etag": "10/25/2022 10:44:09 AM", + "location": "", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", + "creationDate": "0001-01-01T00:00:00Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false + "failureReason": "None", + "useExistingSnapshot": false, + "provisioningState": "Creating" } } }, @@ -4518,7 +3779,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4526,7 +3787,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:02:34 GMT", + "Date": "Tue, 25 Oct 2022 10:44:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4534,9 +3795,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb449e36-20d7-4b7b-84de-ae7e5e4a619a", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140235Z:bb449e36-20d7-4b7b-84de-ae7e5e4a619a", + "x-ms-correlation-request-id": "6e358112-66a5-4786-9575-091b249d144d", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104420Z:6e358112-66a5-4786-9575-091b249d144d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4545,12 +3806,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -4563,7 +3824,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4571,7 +3832,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:02:45 GMT", + "Date": "Tue, 25 Oct 2022 10:44:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4579,9 +3840,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab766db3-4485-4bd8-ac15-7df48ad7e858", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140246Z:ab766db3-4485-4bd8-ac15-7df48ad7e858", + "x-ms-correlation-request-id": "b23ca930-e982-4a45-8433-420a11cfc0af", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104431Z:b23ca930-e982-4a45-8433-420a11cfc0af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4590,12 +3851,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -4608,7 +3869,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4616,7 +3877,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:02:56 GMT", + "Date": "Tue, 25 Oct 2022 10:44:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4624,9 +3885,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20e9bc43-6e02-4913-acdb-719a7b13b70b", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140256Z:20e9bc43-6e02-4913-acdb-719a7b13b70b", + "x-ms-correlation-request-id": "28dab2b9-bb1c-4165-9f5d-3f1de9f271ad", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104441Z:28dab2b9-bb1c-4165-9f5d-3f1de9f271ad", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4635,12 +3896,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -4653,7 +3914,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4661,7 +3922,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:03:07 GMT", + "Date": "Tue, 25 Oct 2022 10:44:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4669,9 +3930,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20de8dc5-dfeb-4867-baaa-39f5ed8fce81", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140307Z:20de8dc5-dfeb-4867-baaa-39f5ed8fce81", + "x-ms-correlation-request-id": "0d6d64e0-7d45-4e93-9561-45d86896cbab", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104452Z:0d6d64e0-7d45-4e93-9561-45d86896cbab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4680,12 +3941,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -4698,7 +3959,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4706,7 +3967,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:03:17 GMT", + "Date": "Tue, 25 Oct 2022 10:45:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4714,9 +3975,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac16a1c8-6f6d-4ca9-a3a0-7ac17b31c552", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140318Z:ac16a1c8-6f6d-4ca9-a3a0-7ac17b31c552", + "x-ms-correlation-request-id": "79535880-64c2-48d9-9fd5-768f4d36a13e", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104503Z:79535880-64c2-48d9-9fd5-768f4d36a13e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4725,12 +3986,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -4743,7 +4004,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4751,7 +4012,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:03:28 GMT", + "Date": "Tue, 25 Oct 2022 10:45:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4759,9 +4020,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba6620ba-c8aa-4643-b96f-643f6427d4af", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140328Z:ba6620ba-c8aa-4643-b96f-643f6427d4af", + "x-ms-correlation-request-id": "2cd59973-b7c0-4239-894a-afea4e6146eb", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104513Z:2cd59973-b7c0-4239-894a-afea4e6146eb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4770,12 +4031,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -4788,7 +4049,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4796,7 +4057,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:03:39 GMT", + "Date": "Tue, 25 Oct 2022 10:45:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4804,9 +4065,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84f4509e-4067-4b67-b269-3d949f34c977", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140340Z:84f4509e-4067-4b67-b269-3d949f34c977", + "x-ms-correlation-request-id": "09dc6e51-474c-43a8-84f8-0bde1517532b", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104524Z:09dc6e51-474c-43a8-84f8-0bde1517532b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4815,12 +4076,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -4833,7 +4094,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4841,7 +4102,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:03:50 GMT", + "Date": "Tue, 25 Oct 2022 10:45:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4849,9 +4110,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc29c79b-cb78-4137-92fd-b8b75ddbf2f5", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140351Z:cc29c79b-cb78-4137-92fd-b8b75ddbf2f5", + "x-ms-correlation-request-id": "c2369262-7006-4545-915f-6fc8fa5b410f", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104535Z:c2369262-7006-4545-915f-6fc8fa5b410f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4860,12 +4121,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -4878,7 +4139,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4886,7 +4147,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:04:00 GMT", + "Date": "Tue, 25 Oct 2022 10:45:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4894,9 +4155,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a05ed47-f50e-487b-b4fc-aff6dec04d43", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140401Z:6a05ed47-f50e-487b-b4fc-aff6dec04d43", + "x-ms-correlation-request-id": "39fe9224-9b3b-4bfd-93ab-01ee34b081ce", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104545Z:39fe9224-9b3b-4bfd-93ab-01ee34b081ce", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4905,12 +4166,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -4923,7 +4184,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4931,7 +4192,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:04:11 GMT", + "Date": "Tue, 25 Oct 2022 10:45:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4939,9 +4200,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40434391-b2b9-4663-a574-aaf5658ee9e7", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140412Z:40434391-b2b9-4663-a574-aaf5658ee9e7", + "x-ms-correlation-request-id": "a104e91b-45d5-4809-b194-e7b35c18ad52", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104556Z:a104e91b-45d5-4809-b194-e7b35c18ad52", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4950,12 +4211,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -4968,7 +4229,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4976,7 +4237,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:04:23 GMT", + "Date": "Tue, 25 Oct 2022 10:46:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4984,9 +4245,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7799503d-c525-4488-93da-f661b55cdb91", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140423Z:7799503d-c525-4488-93da-f661b55cdb91", + "x-ms-correlation-request-id": "ceb497db-d2a8-4fc1-9dab-fed957d5a21e", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104606Z:ceb497db-d2a8-4fc1-9dab-fed957d5a21e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4995,12 +4256,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5013,7 +4274,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5021,7 +4282,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:04:33 GMT", + "Date": "Tue, 25 Oct 2022 10:46:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5029,9 +4290,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1fa713e8-17a5-4150-a3da-f074c9ff167c", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140433Z:1fa713e8-17a5-4150-a3da-f074c9ff167c", + "x-ms-correlation-request-id": "13b8a9e2-2f42-49c9-ae58-b2c006edf81b", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104617Z:13b8a9e2-2f42-49c9-ae58-b2c006edf81b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5040,12 +4301,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5058,7 +4319,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5066,7 +4327,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:04:44 GMT", + "Date": "Tue, 25 Oct 2022 10:46:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5074,9 +4335,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63db3ef6-0f5d-4c54-b470-eb27cf113711", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140444Z:63db3ef6-0f5d-4c54-b470-eb27cf113711", + "x-ms-correlation-request-id": "d1720cc7-6285-45db-aee1-b35168c46480", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104628Z:d1720cc7-6285-45db-aee1-b35168c46480", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5085,12 +4346,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5103,7 +4364,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5111,7 +4372,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:04:54 GMT", + "Date": "Tue, 25 Oct 2022 10:46:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5119,9 +4380,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9efe07f8-b509-4370-b34c-72539aac0712", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140455Z:9efe07f8-b509-4370-b34c-72539aac0712", + "x-ms-correlation-request-id": "d4227254-5cc4-4ed9-adf7-cc7f8d7be995", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104638Z:d4227254-5cc4-4ed9-adf7-cc7f8d7be995", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5130,12 +4391,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5148,7 +4409,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5156,7 +4417,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:05:06 GMT", + "Date": "Tue, 25 Oct 2022 10:46:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5164,9 +4425,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "077ac26b-63d8-4cd7-99a7-ddc092e57159", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140506Z:077ac26b-63d8-4cd7-99a7-ddc092e57159", + "x-ms-correlation-request-id": "50ccc036-8b5c-4f51-a61c-5e9984893aca", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104649Z:50ccc036-8b5c-4f51-a61c-5e9984893aca", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5175,12 +4436,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5193,7 +4454,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5201,7 +4462,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:05:16 GMT", + "Date": "Tue, 25 Oct 2022 10:46:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5209,9 +4470,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bcb595f1-7c79-4c5c-ac3d-67a5b15ad093", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140516Z:bcb595f1-7c79-4c5c-ac3d-67a5b15ad093", + "x-ms-correlation-request-id": "964ec339-d32a-437e-884e-0d5b257911c8", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104659Z:964ec339-d32a-437e-884e-0d5b257911c8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5220,12 +4481,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5238,7 +4499,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5246,7 +4507,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:05:27 GMT", + "Date": "Tue, 25 Oct 2022 10:47:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5254,9 +4515,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b113fcea-5feb-45d0-a94e-33559e8accb0", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140527Z:b113fcea-5feb-45d0-a94e-33559e8accb0", + "x-ms-correlation-request-id": "aa105e42-3672-4bee-872d-a46321a59983", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104710Z:aa105e42-3672-4bee-872d-a46321a59983", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5265,12 +4526,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5283,7 +4544,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5291,7 +4552,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:05:38 GMT", + "Date": "Tue, 25 Oct 2022 10:47:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5299,9 +4560,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b79eab12-a1fe-483e-b795-5530d074911c", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140539Z:b79eab12-a1fe-483e-b795-5530d074911c", + "x-ms-correlation-request-id": "0c206a79-d738-4419-97d8-fd1700c0d058", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104721Z:0c206a79-d738-4419-97d8-fd1700c0d058", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5310,12 +4571,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5328,7 +4589,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5336,7 +4597,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:05:49 GMT", + "Date": "Tue, 25 Oct 2022 10:47:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5344,9 +4605,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da680fa0-8b15-4521-97d1-92142fc2a4b3", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140549Z:da680fa0-8b15-4521-97d1-92142fc2a4b3", + "x-ms-correlation-request-id": "e6e1e04c-8363-4dc8-b35b-bd94e1661751", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104732Z:e6e1e04c-8363-4dc8-b35b-bd94e1661751", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5355,12 +4616,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5373,7 +4634,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5381,7 +4642,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:05:59 GMT", + "Date": "Tue, 25 Oct 2022 10:47:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5389,9 +4650,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0ea727e-2a0b-46f0-b585-7ba667ad33c2", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140600Z:f0ea727e-2a0b-46f0-b585-7ba667ad33c2", + "x-ms-correlation-request-id": "66deade0-109f-445a-88d2-86c51a1c7731", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104743Z:66deade0-109f-445a-88d2-86c51a1c7731", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5400,12 +4661,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5418,7 +4679,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5426,7 +4687,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:06:10 GMT", + "Date": "Tue, 25 Oct 2022 10:47:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5434,9 +4695,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dec61304-c435-429c-ad6c-c798d7602090", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140610Z:dec61304-c435-429c-ad6c-c798d7602090", + "x-ms-correlation-request-id": "6a95903f-904e-4e16-8001-05e47341d558", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104753Z:6a95903f-904e-4e16-8001-05e47341d558", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5445,12 +4706,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5463,7 +4724,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5471,7 +4732,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:06:20 GMT", + "Date": "Tue, 25 Oct 2022 10:48:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5479,9 +4740,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4df21009-2cd1-472c-91c3-9974a141ceed", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140620Z:4df21009-2cd1-472c-91c3-9974a141ceed", + "x-ms-correlation-request-id": "25f4db71-bc81-4e9b-83e3-fd6a4a9a57c0", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104804Z:25f4db71-bc81-4e9b-83e3-fd6a4a9a57c0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5490,12 +4751,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5508,7 +4769,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5516,7 +4777,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:06:31 GMT", + "Date": "Tue, 25 Oct 2022 10:48:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5524,9 +4785,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dea2ce7d-e063-4e37-bddf-47f52ebb97fe", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140632Z:dea2ce7d-e063-4e37-bddf-47f52ebb97fe", + "x-ms-correlation-request-id": "9359d703-e6b6-45ef-ab09-c217d57b2a03", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104815Z:9359d703-e6b6-45ef-ab09-c217d57b2a03", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5535,12 +4796,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5553,7 +4814,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5561,7 +4822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:06:41 GMT", + "Date": "Tue, 25 Oct 2022 10:48:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5569,9 +4830,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "066e3251-b6d9-4085-8787-cf79ac191eb6", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140642Z:066e3251-b6d9-4085-8787-cf79ac191eb6", + "x-ms-correlation-request-id": "cd993953-19e2-44d7-a17d-bfe606416291", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104825Z:cd993953-19e2-44d7-a17d-bfe606416291", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5580,12 +4841,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5598,7 +4859,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5606,7 +4867,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:06:52 GMT", + "Date": "Tue, 25 Oct 2022 10:48:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5614,9 +4875,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8dc50b8-f247-4afa-bf8a-c401095b471e", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140652Z:d8dc50b8-f247-4afa-bf8a-c401095b471e", + "x-ms-correlation-request-id": "0fabe91a-d3f1-4717-a02b-2a36231e6882", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104837Z:0fabe91a-d3f1-4717-a02b-2a36231e6882", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5625,12 +4886,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5643,7 +4904,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5651,7 +4912,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:07:02 GMT", + "Date": "Tue, 25 Oct 2022 10:48:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5659,9 +4920,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "364f3f32-8058-4188-9afb-de40520ff39e", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140703Z:364f3f32-8058-4188-9afb-de40520ff39e", + "x-ms-correlation-request-id": "e6b097c6-84f0-48ca-9b4e-769c56b8038d", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104847Z:e6b097c6-84f0-48ca-9b4e-769c56b8038d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5670,12 +4931,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", + "creationDate": "2022-10-25T10:44:09Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -5688,7 +4949,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5696,7 +4957,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:07:13 GMT", + "Date": "Tue, 25 Oct 2022 10:48:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5704,9 +4965,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8557cc8-a69d-47ce-ad83-dbe8bbb21627", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140713Z:b8557cc8-a69d-47ce-ad83-dbe8bbb21627", + "x-ms-correlation-request-id": "7c4e61ae-ac04-48d2-9fb0-450b5fb9ab9d", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104857Z:7c4e61ae-ac04-48d2-9fb0-450b5fb9ab9d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5715,25 +4976,25 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, + "creationDate": "2022-10-25T10:44:19Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5741,7 +5002,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:07:23 GMT", + "Date": "Tue, 25 Oct 2022 10:48:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5749,81 +5010,86 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee792934-6eac-4a04-9712-d293149bfba4", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140724Z:ee792934-6eac-4a04-9712-d293149bfba4", + "x-ms-correlation-request-id": "dc25a136-75a9-452e-8b66-6c46d856cdba", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104858Z:dc25a136-75a9-452e-8b66-6c46d856cdba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", + "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "location": "westus2", + "properties": { + "creationDate": "2022-10-25T10:39:28Z", + "backupId": "1cac8b61-d111-49a7-9611-2a4988049ef9", + "size": 339968, + "backupType": "Manual", + "provisioningState": "Succeeded", + "failureReason": "None", + "volumeName": "sdk-py-tests-vol-3-c2b62691", + "useExistingSnapshot": false + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", + "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "location": "westus2", + "properties": { + "creationDate": "2022-10-25T10:44:19Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", + "size": 339968, + "backupType": "Manual", + "provisioningState": "Succeeded", + "failureReason": "None", + "volumeName": "sdk-py-tests-vol-3-c2b62691", + "useExistingSnapshot": false + } + } + ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:07:34 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ccf67b59-0139-4eac-ab1c-8d4c6cf69c2c", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140735Z:ccf67b59-0139-4eac-ab1c-8d4c6cf69c2c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 10:48:58 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0b803804-ec4b-4a11-918c-18a33a719bfa", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104858Z:0b803804-ec4b-4a11-918c-18a33a719bfa", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5831,7 +5097,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:07:46 GMT", + "Date": "Tue, 25 Oct 2022 10:48:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5839,36 +5105,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3031c692-c166-4f49-b64a-4731e2651ec9", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140746Z:3031c692-c166-4f49-b64a-4731e2651ec9", + "x-ms-correlation-request-id": "e5ef9db4-022d-4988-ac1c-cdcc63cea668", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104859Z:e5ef9db4-022d-4988-ac1c-cdcc63cea668", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a", + "name": "775583b6-9841-4f5c-9a18-86875627c48a", + "status": "Deleting", + "startTime": "2022-10-25T10:48:58.7932675Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5876,7 +5137,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:07:59 GMT", + "Date": "Tue, 25 Oct 2022 10:49:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5884,36 +5145,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f96be845-77b2-4f9a-94ad-7d0b13f5cde0", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140759Z:f96be845-77b2-4f9a-94ad-7d0b13f5cde0", + "x-ms-correlation-request-id": "5482f177-e56e-4863-a483-f7bba9b8b1a8", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104929Z:5482f177-e56e-4863-a483-f7bba9b8b1a8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a", + "name": "775583b6-9841-4f5c-9a18-86875627c48a", + "status": "Deleting", + "startTime": "2022-10-25T10:48:58.7932675Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5921,7 +5177,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:08:10 GMT", + "Date": "Tue, 25 Oct 2022 10:49:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5929,36 +5185,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f064d312-28d8-40c1-a35d-d8b781950665", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140810Z:f064d312-28d8-40c1-a35d-d8b781950665", + "x-ms-correlation-request-id": "d7be76ba-03a9-4973-a296-1a9518a2e0b5", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T104959Z:d7be76ba-03a9-4973-a296-1a9518a2e0b5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a", + "name": "775583b6-9841-4f5c-9a18-86875627c48a", + "status": "Deleting", + "startTime": "2022-10-25T10:48:58.7932675Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5966,7 +5217,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:08:20 GMT", + "Date": "Tue, 25 Oct 2022 10:50:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5974,36 +5225,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31001a2d-a5ed-49d4-bb5c-08d4df749e55", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140820Z:31001a2d-a5ed-49d4-bb5c-08d4df749e55", + "x-ms-correlation-request-id": "3953f0ed-1eec-4d4d-a5dc-d5be5c4440d5", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105030Z:3953f0ed-1eec-4d4d-a5dc-d5be5c4440d5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a", + "name": "775583b6-9841-4f5c-9a18-86875627c48a", + "status": "Deleting", + "startTime": "2022-10-25T10:48:58.7932675Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6011,7 +5257,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:08:31 GMT", + "Date": "Tue, 25 Oct 2022 10:50:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6019,36 +5265,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b9f2245-dec5-4920-8865-b582073915f1", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140832Z:7b9f2245-dec5-4920-8865-b582073915f1", + "x-ms-correlation-request-id": "8ae773b7-89ad-472e-93ba-b20ffc045e5f", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105100Z:8ae773b7-89ad-472e-93ba-b20ffc045e5f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a", + "name": "775583b6-9841-4f5c-9a18-86875627c48a", + "status": "Deleting", + "startTime": "2022-10-25T10:48:58.7932675Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6056,7 +5297,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:08:42 GMT", + "Date": "Tue, 25 Oct 2022 10:51:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6064,36 +5305,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f303ebd-2778-444d-ac1e-b96fbbedba59", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140842Z:4f303ebd-2778-444d-ac1e-b96fbbedba59", + "x-ms-correlation-request-id": "48cac74a-1502-48b6-bad9-b1d806d5c10e", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105130Z:48cac74a-1502-48b6-bad9-b1d806d5c10e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a", + "name": "775583b6-9841-4f5c-9a18-86875627c48a", + "status": "Deleting", + "startTime": "2022-10-25T10:48:58.7932675Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6101,7 +5337,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:08:43 GMT", + "Date": "Tue, 25 Oct 2022 10:52:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6109,86 +5345,71 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b32e9226-a6ad-4235-9c7a-a9a1f93ef10c", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140843Z:b32e9226-a6ad-4235-9c7a-a9a1f93ef10c", + "x-ms-correlation-request-id": "1642171e-acb9-4d55-ade5-b0765e49697c", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105200Z:1642171e-acb9-4d55-ade5-b0765e49697c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T13:53:17Z", - "backupId": "789f0c74-122d-9171-1f85-4d894b498f91", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - }, - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-c2b62691", - "useExistingSnapshot": false - } - } - ] + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a", + "name": "775583b6-9841-4f5c-9a18-86875627c48a", + "status": "Deleting", + "startTime": "2022-10-25T10:48:58.7932675Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" + } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01", + "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4e7ab9a-49b8-4c36-a289-4f2026f97872?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 14:08:43 GMT", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:52:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4e7ab9a-49b8-4c36-a289-4f2026f97872?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cac2eea-b7f5-43ae-9310-fc628f8a4318", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140844Z:4cac2eea-b7f5-43ae-9310-fc628f8a4318", + "x-ms-correlation-request-id": "0749f3a6-b826-4182-bd64-3891963447b7", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105231Z:0749f3a6-b826-4182-bd64-3891963447b7", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a", + "name": "775583b6-9841-4f5c-9a18-86875627c48a", + "status": "Deleting", + "startTime": "2022-10-25T10:48:58.7932675Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" + } + } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4e7ab9a-49b8-4c36-a289-4f2026f97872?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6196,7 +5417,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:09:13 GMT", + "Date": "Tue, 25 Oct 2022 10:53:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6204,17 +5425,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d26995d-47f4-473d-889d-1f72fdd8aece", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140914Z:4d26995d-47f4-473d-889d-1f72fdd8aece", + "x-ms-correlation-request-id": "8f3672f2-13a7-46ed-8603-c7d64c61d596", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105302Z:8f3672f2-13a7-46ed-8603-c7d64c61d596", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4e7ab9a-49b8-4c36-a289-4f2026f97872", - "name": "d4e7ab9a-49b8-4c36-a289-4f2026f97872", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a", + "name": "775583b6-9841-4f5c-9a18-86875627c48a", "status": "Succeeded", - "startTime": "2022-09-19T14:08:43.9123426Z", - "endTime": "2022-09-19T14:08:45.709232Z", + "startTime": "2022-10-25T10:48:58.7932675Z", + "endTime": "2022-10-25T10:52:54.4027957Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691/backups/sdk-py-tests-backup-1" @@ -6222,13 +5443,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4e7ab9a-49b8-4c36-a289-4f2026f97872?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775583b6-9841-4f5c-9a18-86875627c48a?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6236,7 +5457,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:09:14 GMT", + "Date": "Tue, 25 Oct 2022 10:53:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6244,9 +5465,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "343e2856-a4aa-4aff-ba8c-7ed3edbe4eb2", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140915Z:343e2856-a4aa-4aff-ba8c-7ed3edbe4eb2", + "x-ms-correlation-request-id": "368dd5ae-5dec-4534-b103-4f80048aab19", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105302Z:368dd5ae-5dec-4534-b103-4f80048aab19", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6263,7 +5484,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -6271,15 +5492,15 @@ "Cache-Control": "no-cache", "Content-Length": "77", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:09:17 GMT", + "Date": "Tue, 25 Oct 2022 10:53:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b30c546-6b75-422a-bec0-e2388aabaf6e", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140918Z:7b30c546-6b75-422a-bec0-e2388aabaf6e", + "x-ms-correlation-request-id": "8da79ac6-c3c3-40bf-95c5-a421899bd997", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105305Z:8da79ac6-c3c3-40bf-95c5-a421899bd997", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6296,7 +5517,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6304,7 +5525,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:09:18 GMT", + "Date": "Tue, 25 Oct 2022 10:53:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6312,9 +5533,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c580f65c-40b1-4a5d-8a63-19164d316eda", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140918Z:c580f65c-40b1-4a5d-8a63-19164d316eda", + "x-ms-correlation-request-id": "31adae5d-9632-4789-a6e1-8d52f967ae8f", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105306Z:31adae5d-9632-4789-a6e1-8d52f967ae8f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6325,12 +5546,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:01:00Z", - "backupId": "0590c9c6-29ab-2fe8-6460-38e420f9a229", - "size": 0, + "creationDate": "2022-10-25T10:44:19Z", + "backupId": "6812cdb3-074d-a77a-0312-318d001104c7", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-c2b62691", "useExistingSnapshot": false } @@ -6345,7 +5566,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6353,7 +5574,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:09:18 GMT", + "Date": "Tue, 25 Oct 2022 10:53:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6361,9 +5582,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d927855-fad4-4346-bdcf-49d1d3c73495", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140919Z:6d927855-fad4-4346-bdcf-49d1d3c73495", + "x-ms-correlation-request-id": "81728658-a5f7-419c-b10a-153ccd8f2c7d", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105306Z:81728658-a5f7-419c-b10a-153ccd8f2c7d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6386,7 +5607,7 @@ "Connection": "keep-alive", "Content-Length": "413", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -6405,31 +5626,31 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/424e1b51-551b-42bc-bf70-c0a03dfd1bac?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/230c559e-45e9-4099-9d5e-d03654a8edef?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "2743", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:09:19 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A09%3A19.7882191Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:53:06 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A53%3A07.1958103Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/424e1b51-551b-42bc-bf70-c0a03dfd1bac?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/230c559e-45e9-4099-9d5e-d03654a8edef?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57147808-d5f8-40ac-811d-d09336486c5c", + "x-ms-correlation-request-id": "5ccf2142-df8b-4e3c-8bdf-1d298721905d", "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140919Z:57147808-d5f8-40ac-811d-d09336486c5c", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105307Z:5ccf2142-df8b-4e3c-8bdf-1d298721905d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A09%3A19.7882191Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A53%3A07.1958103Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:52:42.7964993Z" + "CreatedOnDate": "2022-10-25T10:44:06.8317635Z" }, "properties": { "dataProtection": { @@ -6440,7 +5661,7 @@ } }, "provisioningState": "Patching", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c2b62691", "usageThreshold": 107374182400, @@ -6468,7 +5689,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d3d68978", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_734a8e9c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -6483,8 +5704,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "c306ca81-33aa-35be-454c-5e0d1ed40761", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "mountTargetId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "ipAddress": "10.0.0.4" } ], @@ -6503,21 +5724,61 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:48:26.1412458Z", + "createdAt": "2022-10-25T10:33:48.7013347Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:00:59.7580591Z" + "lastModifiedAt": "2022-10-25T10:44:07.0092326Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/230c559e-45e9-4099-9d5e-d03654a8edef?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:53:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "014f7ce3-6bb9-4f40-b25a-d9c3b6019562", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105307Z:014f7ce3-6bb9-4f40-b25a-d9c3b6019562", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/230c559e-45e9-4099-9d5e-d03654a8edef", + "name": "230c559e-45e9-4099-9d5e-d03654a8edef", + "status": "Patching", + "startTime": "2022-10-25T10:53:07.2013986Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/424e1b51-551b-42bc-bf70-c0a03dfd1bac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/230c559e-45e9-4099-9d5e-d03654a8edef?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6525,7 +5786,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:09:49 GMT", + "Date": "Tue, 25 Oct 2022 10:53:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6533,17 +5794,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7df33575-a470-4e75-90cf-dc7cd0745dd1", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140950Z:7df33575-a470-4e75-90cf-dc7cd0745dd1", + "x-ms-correlation-request-id": "da6785a5-a897-4f65-a8bc-adb3f57a3459", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105337Z:da6785a5-a897-4f65-a8bc-adb3f57a3459", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/424e1b51-551b-42bc-bf70-c0a03dfd1bac", - "name": "424e1b51-551b-42bc-bf70-c0a03dfd1bac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/230c559e-45e9-4099-9d5e-d03654a8edef", + "name": "230c559e-45e9-4099-9d5e-d03654a8edef", "status": "Succeeded", - "startTime": "2022-09-19T14:09:19.7869631Z", - "endTime": "2022-09-19T14:09:22.6465323Z", + "startTime": "2022-10-25T10:53:07.2013986Z", + "endTime": "2022-10-25T10:53:12.8279486Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691" @@ -6551,13 +5812,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/424e1b51-551b-42bc-bf70-c0a03dfd1bac?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/230c559e-45e9-4099-9d5e-d03654a8edef?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6565,7 +5826,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:09:49 GMT", + "Date": "Tue, 25 Oct 2022 10:53:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6573,19 +5834,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e70b13a1-8519-4bf8-81cb-622250e6981a", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140950Z:e70b13a1-8519-4bf8-81cb-622250e6981a", + "x-ms-correlation-request-id": "7aea9ec8-8ab7-4fea-b70f-e6906a4e8081", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105338Z:7aea9ec8-8ab7-4fea-b70f-e6906a4e8081", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A09%3A22.6475137Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A53%3A12.8215966Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:52:42.7964993Z" + "CreatedOnDate": "2022-10-25T10:44:06.8317635Z" }, "properties": { "dataProtection": { @@ -6595,12 +5856,12 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault" } }, - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c2b62691", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", "usageThreshold": 107374182400, - "usedBytes": 0, + "usedBytes": 356352, "exportPolicy": { "rules": [ { @@ -6626,19 +5887,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d3d68978", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_734a8e9c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", - "poolId": "13ce5cfe-030e-cd25-c60d-5a255ff740d6", + "poolId": "f4e44f0a-1583-0ee3-d302-3ee8e04ea626", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "c306ca81-33aa-35be-454c-5e0d1ed40761", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "mountTargetId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "startIp": "", "endIp": "", "gateway": "", @@ -6670,10 +5931,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:48:26.1412458Z", + "createdAt": "2022-10-25T10:33:48.7013347Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:09:19.6500715Z" + "lastModifiedAt": "2022-10-25T10:53:07.1204274Z" } } }, @@ -6684,7 +5945,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -6692,15 +5953,15 @@ "Cache-Control": "no-cache", "Content-Length": "77", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:09:52 GMT", + "Date": "Tue, 25 Oct 2022 10:53:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b9ebbe0-cd66-4658-88e3-68f122c17a5b", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140953Z:5b9ebbe0-cd66-4658-88e3-68f122c17a5b", + "x-ms-correlation-request-id": "2415bb1a-666c-4bf3-ba5e-1e7794442d75", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105340Z:2415bb1a-666c-4bf3-ba5e-1e7794442d75", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6717,7 +5978,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6725,7 +5986,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:09:53 GMT", + "Date": "Tue, 25 Oct 2022 10:53:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6733,9 +5994,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13f936d5-3f5b-4938-98e5-2481c789a894", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140953Z:13f936d5-3f5b-4938-98e5-2481c789a894", + "x-ms-correlation-request-id": "2c7e9680-c402-458f-bcce-cb7c7f9938e2", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105341Z:2c7e9680-c402-458f-bcce-cb7c7f9938e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6750,36 +6011,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 14:09:53 GMT", + "Date": "Tue, 25 Oct 2022 10:53:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7057a3ee-dc26-4915-b5eb-4e5be41865b0", + "x-ms-correlation-request-id": "380b4c14-6c1a-4509-a3e5-ae9a3e318b6a", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T140954Z:7057a3ee-dc26-4915-b5eb-4e5be41865b0", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105341Z:380b4c14-6c1a-4509-a3e5-ae9a3e318b6a", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6787,7 +6048,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:10:24 GMT", + "Date": "Tue, 25 Oct 2022 10:53:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6795,16 +6056,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a449299-74f4-4a48-8bfc-48affdac6c95", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141024Z:4a449299-74f4-4a48-8bfc-48affdac6c95", + "x-ms-correlation-request-id": "4c500df3-45b2-49d1-882c-dfac90d64c6b", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105341Z:4c500df3-45b2-49d1-882c-dfac90d64c6b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537", - "name": "d2672e8d-0a5d-4e27-8f2d-477865956537", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a", + "name": "13b56cf0-9f6f-41c2-b406-84108ef1126a", "status": "Deleting", - "startTime": "2022-09-19T14:09:54.4824323Z", + "startTime": "2022-10-25T10:53:41.5366693Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -6813,13 +6074,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6827,7 +6088,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:10:54 GMT", + "Date": "Tue, 25 Oct 2022 10:54:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6835,16 +6096,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd206dac-7e54-48f3-bb3d-be1fe0f1f9bc", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141055Z:fd206dac-7e54-48f3-bb3d-be1fe0f1f9bc", + "x-ms-correlation-request-id": "27e8b86b-091e-4c76-87d4-b1ef2062dbb4", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105412Z:27e8b86b-091e-4c76-87d4-b1ef2062dbb4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537", - "name": "d2672e8d-0a5d-4e27-8f2d-477865956537", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a", + "name": "13b56cf0-9f6f-41c2-b406-84108ef1126a", "status": "Deleting", - "startTime": "2022-09-19T14:09:54.4824323Z", + "startTime": "2022-10-25T10:53:41.5366693Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -6853,13 +6114,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6867,7 +6128,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:11:24 GMT", + "Date": "Tue, 25 Oct 2022 10:54:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6875,16 +6136,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5aad4dff-1c69-4d7e-90df-667d539be9f7", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141125Z:5aad4dff-1c69-4d7e-90df-667d539be9f7", + "x-ms-correlation-request-id": "324275dd-64ac-4d7e-9a2a-944efcece15c", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105442Z:324275dd-64ac-4d7e-9a2a-944efcece15c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537", - "name": "d2672e8d-0a5d-4e27-8f2d-477865956537", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a", + "name": "13b56cf0-9f6f-41c2-b406-84108ef1126a", "status": "Deleting", - "startTime": "2022-09-19T14:09:54.4824323Z", + "startTime": "2022-10-25T10:53:41.5366693Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -6893,13 +6154,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6907,7 +6168,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:11:54 GMT", + "Date": "Tue, 25 Oct 2022 10:55:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6915,16 +6176,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9caede11-fefc-4d0d-a858-01b67c5742df", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141155Z:9caede11-fefc-4d0d-a858-01b67c5742df", + "x-ms-correlation-request-id": "f9751e51-63e3-4632-8f2c-50f98c003c7a", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105512Z:f9751e51-63e3-4632-8f2c-50f98c003c7a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537", - "name": "d2672e8d-0a5d-4e27-8f2d-477865956537", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a", + "name": "13b56cf0-9f6f-41c2-b406-84108ef1126a", "status": "Deleting", - "startTime": "2022-09-19T14:09:54.4824323Z", + "startTime": "2022-10-25T10:53:41.5366693Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -6933,13 +6194,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6947,7 +6208,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:12:24 GMT", + "Date": "Tue, 25 Oct 2022 10:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6955,17 +6216,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95b5fe9e-dc56-4597-9050-6737a33c6109", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141225Z:95b5fe9e-dc56-4597-9050-6737a33c6109", + "x-ms-correlation-request-id": "e5f2ec93-a26e-4b67-9df3-72774c652bb4", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105542Z:e5f2ec93-a26e-4b67-9df3-72774c652bb4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537", - "name": "d2672e8d-0a5d-4e27-8f2d-477865956537", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a", + "name": "13b56cf0-9f6f-41c2-b406-84108ef1126a", "status": "Succeeded", - "startTime": "2022-09-19T14:09:54.4824323Z", - "endTime": "2022-09-19T14:12:11.9046918Z", + "startTime": "2022-10-25T10:53:41.5366693Z", + "endTime": "2022-10-25T10:55:38.9105578Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691" @@ -6973,13 +6234,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2672e8d-0a5d-4e27-8f2d-477865956537?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b56cf0-9f6f-41c2-b406-84108ef1126a?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6987,7 +6248,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:12:25 GMT", + "Date": "Tue, 25 Oct 2022 10:55:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6995,19 +6256,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0702e24b-091d-41b7-9b48-4b5d0131929d", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141226Z:0702e24b-091d-41b7-9b48-4b5d0131929d", + "x-ms-correlation-request-id": "db10233d-630c-4f0c-aac9-1232de9919cd", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105543Z:db10233d-630c-4f0c-aac9-1232de9919cd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c2b62691", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A12%3A02.4518018Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A55%3A29.586465Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:52:42.7964993Z" + "CreatedOnDate": "2022-10-25T10:44:06.8317635Z" }, "properties": { "dataProtection": { @@ -7017,12 +6278,12 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/vaults/cbsvault" } }, - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c2b62691", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", "usageThreshold": 107374182400, - "usedBytes": 0, + "usedBytes": 356352, "exportPolicy": { "rules": [ { @@ -7048,19 +6309,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d3d68978", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_734a8e9c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c2b62691", - "poolId": "13ce5cfe-030e-cd25-c60d-5a255ff740d6", + "poolId": "f4e44f0a-1583-0ee3-d302-3ee8e04ea626", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "c306ca81-33aa-35be-454c-5e0d1ed40761", - "fileSystemId": "c306ca81-33aa-35be-454c-5e0d1ed40761", + "mountTargetId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", + "fileSystemId": "fd06aefb-ac8a-0f19-581c-6503ecb4059e", "startIp": "", "endIp": "", "gateway": "", @@ -7092,10 +6353,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:48:26.1412458Z", + "createdAt": "2022-10-25T10:33:48.7013347Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:09:19.6500715Z" + "lastModifiedAt": "2022-10-25T10:53:07.1204274Z" } } }, @@ -7106,7 +6367,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -7114,14 +6375,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:15:49 GMT", + "Date": "Tue, 25 Oct 2022 10:59:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee0317c7-9a90-418e-a018-a75a55320b7a", + "x-ms-correlation-request-id": "7ef7d090-2488-498a-85bc-d1c2f958fbc4", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141549Z:ee0317c7-9a90-418e-a018-a75a55320b7a" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105907Z:7ef7d090-2488-498a-85bc-d1c2f958fbc4" }, "ResponseBody": { "error": { @@ -7138,36 +6399,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/681c214e-4ffe-4890-9a76-a92ce88e7a01?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0279f1c-dc0a-465d-b5c9-1537e0e7d3e0?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 14:16:01 GMT", + "Date": "Tue, 25 Oct 2022 10:59:19 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/681c214e-4ffe-4890-9a76-a92ce88e7a01?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0279f1c-dc0a-465d-b5c9-1537e0e7d3e0?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1376c18a-a84c-410d-aa0c-79346d73320f", + "x-ms-correlation-request-id": "24e4502f-d166-470d-b28d-2f750329477d", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141602Z:1376c18a-a84c-410d-aa0c-79346d73320f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105919Z:24e4502f-d166-470d-b28d-2f750329477d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/681c214e-4ffe-4890-9a76-a92ce88e7a01?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0279f1c-dc0a-465d-b5c9-1537e0e7d3e0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7175,7 +6436,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:16:31 GMT", + "Date": "Tue, 25 Oct 2022 10:59:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7183,17 +6444,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ce992de-4281-4f4d-a1ec-ccaa6a89392a", + "x-ms-correlation-request-id": "3e3b4cdf-a2b8-438c-8fb2-a773a8487b46", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141632Z:3ce992de-4281-4f4d-a1ec-ccaa6a89392a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105919Z:3e3b4cdf-a2b8-438c-8fb2-a773a8487b46", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0279f1c-dc0a-465d-b5c9-1537e0e7d3e0", + "name": "a0279f1c-dc0a-465d-b5c9-1537e0e7d3e0", + "status": "Deleting", + "startTime": "2022-10-25T10:59:19.5723343Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0279f1c-dc0a-465d-b5c9-1537e0e7d3e0?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 10:59:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a4c46b64-4f13-40e2-85eb-737ab7278e82", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105950Z:a4c46b64-4f13-40e2-85eb-737ab7278e82", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/681c214e-4ffe-4890-9a76-a92ce88e7a01", - "name": "681c214e-4ffe-4890-9a76-a92ce88e7a01", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0279f1c-dc0a-465d-b5c9-1537e0e7d3e0", + "name": "a0279f1c-dc0a-465d-b5c9-1537e0e7d3e0", "status": "Succeeded", - "startTime": "2022-09-19T14:16:01.848312Z", - "endTime": "2022-09-19T14:16:02.9733514Z", + "startTime": "2022-10-25T10:59:19.5723343Z", + "endTime": "2022-10-25T10:59:20.4317157Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1" @@ -7201,13 +6502,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/681c214e-4ffe-4890-9a76-a92ce88e7a01?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0279f1c-dc0a-465d-b5c9-1537e0e7d3e0?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7215,7 +6516,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:16:31 GMT", + "Date": "Tue, 25 Oct 2022 10:59:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7223,22 +6524,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75e72ba9-77bb-4537-a3b4-8e7e4d32ea85", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141632Z:75e72ba9-77bb-4537-a3b4-8e7e4d32ea85", + "x-ms-correlation-request-id": "04f14220-95dd-4d97-961a-c691753dae6e", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T105950Z:04f14220-95dd-4d97-961a-c691753dae6e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-c2b62691/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A16%3A01.8414026Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A59%3A19.5680922Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:47:41.4622114Z" + "CreatedOnDate": "2022-10-25T10:33:34.2386962Z" }, "properties": { - "poolId": "13ce5cfe-030e-cd25-c60d-5a255ff740d6", + "poolId": "f4e44f0a-1583-0ee3-d302-3ee8e04ea626", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691/capacityPools/sdk-py-tests-pool-1", @@ -7252,10 +6553,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:47:42.6958843Z", + "createdAt": "2022-10-25T10:33:35.2087677Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:47:42.6958843Z" + "lastModifiedAt": "2022-10-25T10:33:35.2087677Z" } } }, @@ -7267,20 +6568,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 14:16:41 GMT", + "Date": "Tue, 25 Oct 2022 10:59:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e25f168d-737f-40d6-b7d1-f38025962d35", + "x-ms-correlation-request-id": "59d7a992-da72-4b85-9ff6-82f72a9aa9a7", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141642Z:e25f168d-737f-40d6-b7d1-f38025962d35" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110000Z:59d7a992-da72-4b85-9ff6-82f72a9aa9a7" }, "ResponseBody": null }, @@ -7292,20 +6593,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 14:16:52 GMT", + "Date": "Tue, 25 Oct 2022 11:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28f30f14-9f10-4a7f-a15d-5f424fead5f3", + "x-ms-correlation-request-id": "a8d68f5a-b08b-41d1-bdfd-c972da45f0cd", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141653Z:28f30f14-9f10-4a7f-a15d-5f424fead5f3" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110010Z:a8d68f5a-b08b-41d1-bdfd-c972da45f0cd" }, "ResponseBody": null }, @@ -7317,20 +6618,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 14:17:03 GMT", + "Date": "Tue, 25 Oct 2022 11:00:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71f7c064-1874-4fef-b41a-d0f4c535a8e2", + "x-ms-correlation-request-id": "eb3a5e01-305d-48b4-84b0-66399dd489f0", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141703Z:71f7c064-1874-4fef-b41a-d0f4c535a8e2" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110021Z:eb3a5e01-305d-48b4-84b0-66399dd489f0" }, "ResponseBody": null }, @@ -7342,20 +6643,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 14:17:13 GMT", + "Date": "Tue, 25 Oct 2022 11:00:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65cf9b9e-3d33-4a24-b647-abc3bb12c944", + "x-ms-correlation-request-id": "e2644880-029a-4bfd-be58-ade751e03c60", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141713Z:65cf9b9e-3d33-4a24-b647-abc3bb12c944" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110031Z:e2644880-029a-4bfd-be58-ade751e03c60" }, "ResponseBody": null }, @@ -7366,7 +6667,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -7374,14 +6675,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:17:23 GMT", + "Date": "Tue, 25 Oct 2022 11:00:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ba5620d-2101-415b-92f6-2676889201c4", + "x-ms-correlation-request-id": "5236bb94-6a3a-409a-9cd7-0c5661dd75f6", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141724Z:2ba5620d-2101-415b-92f6-2676889201c4" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110041Z:5236bb94-6a3a-409a-9cd7-0c5661dd75f6" }, "ResponseBody": { "error": { @@ -7398,36 +6699,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cb27b21-c6ed-47fd-a1d3-87bb2c59a4ba?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e63b0db8-7c27-494e-8eeb-6a51e09167bd?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 14:17:25 GMT", + "Date": "Tue, 25 Oct 2022 11:00:42 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cb27b21-c6ed-47fd-a1d3-87bb2c59a4ba?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e63b0db8-7c27-494e-8eeb-6a51e09167bd?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b71e9e7-ff43-4731-91e9-f0064c8db9c3", + "x-ms-correlation-request-id": "71bbb6e8-959e-4860-971b-66f555a5ffbd", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141725Z:0b71e9e7-ff43-4731-91e9-f0064c8db9c3", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110043Z:71bbb6e8-959e-4860-971b-66f555a5ffbd", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cb27b21-c6ed-47fd-a1d3-87bb2c59a4ba?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e63b0db8-7c27-494e-8eeb-6a51e09167bd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7435,7 +6736,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:17:55 GMT", + "Date": "Tue, 25 Oct 2022 11:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7443,17 +6744,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e1b6df9-1c00-46fd-a31f-90da270d1300", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141755Z:3e1b6df9-1c00-46fd-a31f-90da270d1300", + "x-ms-correlation-request-id": "21b37daf-29e2-4f1b-b02e-46abf5c9b460", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110043Z:21b37daf-29e2-4f1b-b02e-46abf5c9b460", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cb27b21-c6ed-47fd-a1d3-87bb2c59a4ba", - "name": "4cb27b21-c6ed-47fd-a1d3-87bb2c59a4ba", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e63b0db8-7c27-494e-8eeb-6a51e09167bd", + "name": "e63b0db8-7c27-494e-8eeb-6a51e09167bd", "status": "Succeeded", - "startTime": "2022-09-19T14:17:25.4200699Z", - "endTime": "2022-09-19T14:17:25.4669485Z", + "startTime": "2022-10-25T11:00:43.2727439Z", + "endTime": "2022-10-25T11:00:43.3195528Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691" @@ -7461,13 +6762,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cb27b21-c6ed-47fd-a1d3-87bb2c59a4ba?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e63b0db8-7c27-494e-8eeb-6a51e09167bd?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7475,7 +6776,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:17:55 GMT", + "Date": "Tue, 25 Oct 2022 11:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7483,19 +6784,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7829033b-8b06-4e32-aa5c-6d3406ad4f2d", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141756Z:7829033b-8b06-4e32-aa5c-6d3406ad4f2d", + "x-ms-correlation-request-id": "b2618331-505d-405b-95be-d2ac79620bf3", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110043Z:b2618331-505d-405b-95be-d2ac79620bf3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691", "name": "sdk-py-tests-acc-1-c2b62691", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A17%3A25.4244776Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A00%3A43.266271Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:47:06.9689702Z" + "CreatedOnDate": "2022-10-25T10:33:30.0641160Z" }, "properties": { "encryption": { @@ -7506,10 +6807,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:47:08.1675047Z", + "createdAt": "2022-10-25T10:33:31.2370835Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:47:08.1675047Z" + "lastModifiedAt": "2022-10-25T10:33:31.2370835Z" } } }, @@ -7520,50 +6821,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:17:55 GMT", + "Date": "Tue, 25 Oct 2022 11:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "237a51e0-3729-48f2-9a10-9278002fed05", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141756Z:237a51e0-3729-48f2-9a10-9278002fed05" + "x-ms-correlation-request-id": "5561fb19-180c-4185-afa6-475396b1a7c2", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110044Z:5561fb19-180c-4185-afa6-475396b1a7c2", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c2b62691\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c2b62691?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0c249e8e-f99e-4830-9890-c232c523cfc2?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/313dde28-ea1f-44d5-9bcd-8089720c2834?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 14:17:56 GMT", + "Date": "Tue, 25 Oct 2022 11:00:44 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/0c249e8e-f99e-4830-9890-c232c523cfc2?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/313dde28-ea1f-44d5-9bcd-8089720c2834?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -7572,10 +6875,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "29223fd4-1d78-4dd0-b4d8-77bb87e2f289", - "x-ms-correlation-request-id": "1a5ef6ac-c804-4425-be34-63b69600a1f3", + "x-ms-arm-service-request-id": "51b3dbc9-d488-467f-8036-55ffd2af9337", + "x-ms-correlation-request-id": "ae2aad94-71e3-4671-9d77-2f8c44169e65", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141757Z:1a5ef6ac-c804-4425-be34-63b69600a1f3" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110045Z:ae2aad94-71e3-4671-9d77-2f8c44169e65" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_get_backup_by_name.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_get_backup_by_name.json index ff328636532a..4ae087dfeef0 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_get_backup_by_name.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_get_backup_by_name.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:27 GMT", + "Date": "Tue, 25 Oct 2022 11:29:55 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:27 GMT", + "Date": "Tue, 25 Oct 2022 11:29:55 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "c6d5a86b-7a74-4417-8309-eb7edd858a13", + "client-request-id": "aace5ef4-cd8e-40a8-a6db-70e385326c7b", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "c6d5a86b-7a74-4417-8309-eb7edd858a13", + "client-request-id": "aace5ef4-cd8e-40a8-a6db-70e385326c7b", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:28 GMT", + "Date": "Tue, 25 Oct 2022 11:29:55 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/88b351b2-f7db-453a-8298-dafdd1cbaaef?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f331425b-45f6-44bd-805d-ac480a69fa15?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:35 GMT", + "Date": "Tue, 25 Oct 2022 11:30:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "37dd7856-cbbe-4574-9b81-acdbc1c81062", - "x-ms-correlation-request-id": "e126ffcd-1abf-441a-8e06-6bebe465b3e2", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144936Z:e126ffcd-1abf-441a-8e06-6bebe465b3e2" + "x-ms-arm-service-request-id": "e7f0fd05-7f3e-483b-82b1-b1a338879eec", + "x-ms-correlation-request-id": "337a7a22-79fb-4a73-8c4f-17e550390e63", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113005Z:337a7a22-79fb-4a73-8c4f-17e550390e63" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-74e025c5", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5", - "etag": "W/\u0022bf6caae2-ff9e-4322-b551-b341f55cc149\u0022", + "etag": "W/\u0022f90d5fce-116e-4e45-a9e2-c39b324bc35b\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:49:30.5805224Z" + "CreatedOnDate": "2022-10-25T11:29:59.4524908Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "8c06a64c-8aeb-4c30-aa94-cb08ca420e38", + "resourceGuid": "31cc1c18-079b-40e3-b239-3a5e6a59bdfa", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/88b351b2-f7db-453a-8298-dafdd1cbaaef?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f331425b-45f6-44bd-805d-ac480a69fa15?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:38 GMT", + "Date": "Tue, 25 Oct 2022 11:30:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a5160290-f330-45a5-a923-58079ae1b3a3", - "x-ms-correlation-request-id": "3028a9f4-be76-4aac-bc8a-8b3a694194bf", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144939Z:3028a9f4-be76-4aac-bc8a-8b3a694194bf" + "x-ms-arm-service-request-id": "7db22d52-0f32-4ded-a4b7-c3079038ed2a", + "x-ms-correlation-request-id": "2656f729-0fb6-48b4-8131-6299b1b758bc", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113005Z:2656f729-0fb6-48b4-8131-6299b1b758bc" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:39 GMT", - "ETag": "W/\u0022c098e013-2360-43e8-8aee-091bf6b51ac4\u0022", + "Date": "Tue, 25 Oct 2022 11:30:05 GMT", + "ETag": "W/\u00224597d7b4-4338-4105-adee-2d7d7500cadb\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c7ae8c79-3cfb-4587-b8b5-669bd7069866", - "x-ms-correlation-request-id": "f24054b5-4d77-4c95-aa7c-95ec344db4d5", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144940Z:f24054b5-4d77-4c95-aa7c-95ec344db4d5" + "x-ms-arm-service-request-id": "94473692-bb67-4bfb-80c0-81fc222a072d", + "x-ms-correlation-request-id": "0023b38b-5405-40eb-8f8d-73fe368c22de", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113006Z:0023b38b-5405-40eb-8f8d-73fe368c22de" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-74e025c5", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5", - "etag": "W/\u0022c098e013-2360-43e8-8aee-091bf6b51ac4\u0022", + "etag": "W/\u00224597d7b4-4338-4105-adee-2d7d7500cadb\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:49:30.5805224Z" + "CreatedOnDate": "2022-10-25T11:29:59.4524908Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "8c06a64c-8aeb-4c30-aa94-cb08ca420e38", + "resourceGuid": "31cc1c18-079b-40e3-b239-3a5e6a59bdfa", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7ff2de11-3df9-467b-9446-1a6508f8f411?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9b66f15e-43f8-4007-9c8f-7bfb9a5bcb37?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:40 GMT", + "Date": "Tue, 25 Oct 2022 11:30:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e97e1360-a3a5-4979-b0a7-88b27057a16e", - "x-ms-correlation-request-id": "f796a0dd-cab4-48f7-a56a-deff36a93d81", - "x-ms-ratelimit-remaining-subscription-writes": "1188", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144941Z:f796a0dd-cab4-48f7-a56a-deff36a93d81" + "x-ms-arm-service-request-id": "2a066378-e4ec-4ca0-a13b-55bd4559d845", + "x-ms-correlation-request-id": "ad06af70-04b2-40d1-8296-a22bb3c49765", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113006Z:ad06af70-04b2-40d1-8296-a22bb3c49765" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default", - "etag": "W/\u0022f0851ef2-6f4c-4658-a847-1c3fee063573\u0022", + "etag": "W/\u002244bacf01-cd93-49cd-b6fd-0d773f1d6752\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022f0851ef2-6f4c-4658-a847-1c3fee063573\u0022", + "etag": "W/\u002244bacf01-cd93-49cd-b6fd-0d773f1d6752\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7ff2de11-3df9-467b-9446-1a6508f8f411?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9b66f15e-43f8-4007-9c8f-7bfb9a5bcb37?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:43 GMT", + "Date": "Tue, 25 Oct 2022 11:30:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b245cd8f-3cb5-4e27-aea3-e26fe217405f", - "x-ms-correlation-request-id": "063170b4-3a3b-4fe6-aedd-dec3fc2f365d", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144944Z:063170b4-3a3b-4fe6-aedd-dec3fc2f365d" + "x-ms-arm-service-request-id": "4e2a2821-90ca-4a88-a535-1ca98b24bb19", + "x-ms-correlation-request-id": "ce70cb5e-78ca-420f-af2b-e25d07062f18", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113007Z:ce70cb5e-78ca-420f-af2b-e25d07062f18" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:43 GMT", - "ETag": "W/\u002265a1724e-0019-4682-906d-40fc50a2d9a7\u0022", + "Date": "Tue, 25 Oct 2022 11:30:06 GMT", + "ETag": "W/\u002223c5dea4-72a9-4281-90c5-5b928ad733d7\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0e8aa7a2-b3a9-4f52-b078-1680a0767e6f", - "x-ms-correlation-request-id": "f0c53df5-0f39-442a-b24b-84ce8424f5dc", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144944Z:f0c53df5-0f39-442a-b24b-84ce8424f5dc" + "x-ms-arm-service-request-id": "0e50f375-92b2-4411-a1d2-cce53ba456bd", + "x-ms-correlation-request-id": "07b1c3ab-af11-438c-88b4-e79f645857e9", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113007Z:07b1c3ab-af11-438c-88b4-e79f645857e9" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default", - "etag": "W/\u002265a1724e-0019-4682-906d-40fc50a2d9a7\u0022", + "etag": "W/\u002223c5dea4-72a9-4281-90c5-5b928ad733d7\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default/delegations/netAppVolumes", - "etag": "W/\u002265a1724e-0019-4682-906d-40fc50a2d9a7\u0022", + "etag": "W/\u002223c5dea4-72a9-4281-90c5-5b928ad733d7\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:44 GMT", + "Date": "Tue, 25 Oct 2022 11:30:06 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:44 GMT", + "Date": "Tue, 25 Oct 2022 11:30:06 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "608123c5-9d4a-492f-b451-7872caa89c90", + "client-request-id": "93032968-4140-44ef-bb21-cc7d8ba931f1", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "608123c5-9d4a-492f-b451-7872caa89c90", + "client-request-id": "93032968-4140-44ef-bb21-cc7d8ba931f1", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:44 GMT", + "Date": "Tue, 25 Oct 2022 11:30:07 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de8166a-135e-4107-b943-87a42c0a7d89?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5820dcf5-38f7-47a3-892e-6ca18274b605?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A49%3A47.8562367Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:30:11 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A30%3A11.3088476Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "612cf20c-eda6-42cc-aff9-4424706cbddb", - "x-ms-ratelimit-remaining-subscription-writes": "1187", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144949Z:612cf20c-eda6-42cc-aff9-4424706cbddb", + "x-ms-correlation-request-id": "09b05d40-aa9d-4542-9bfe-d70495050d87", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113012Z:09b05d40-aa9d-4542-9bfe-d70495050d87", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5", "name": "sdk-py-tests-acc-1-74e025c5", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A49%3A47.8562367Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A30%3A11.3088476Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:49:46.0595366Z" + "CreatedOnDate": "2022-10-25T11:30:09.3853791Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:49:46.9439917Z", + "createdAt": "2022-10-25T11:30:10.3642144Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:49:46.9439917Z" + "lastModifiedAt": "2022-10-25T11:30:10.3642144Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de8166a-135e-4107-b943-87a42c0a7d89?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5820dcf5-38f7-47a3-892e-6ca18274b605?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:50:19 GMT", + "Date": "Tue, 25 Oct 2022 11:30:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eaa69f2c-d992-46bf-9433-7c3fd5710d2e", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145019Z:eaa69f2c-d992-46bf-9433-7c3fd5710d2e", + "x-ms-correlation-request-id": "85212cf7-5490-4a52-9e62-d05b8f028a3f", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113012Z:85212cf7-5490-4a52-9e62-d05b8f028a3f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de8166a-135e-4107-b943-87a42c0a7d89", - "name": "5de8166a-135e-4107-b943-87a42c0a7d89", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5820dcf5-38f7-47a3-892e-6ca18274b605", + "name": "5820dcf5-38f7-47a3-892e-6ca18274b605", "status": "Succeeded", - "startTime": "2022-09-19T14:49:47.850007Z", - "endTime": "2022-09-19T14:49:47.9124925Z", + "startTime": "2022-10-25T11:30:11.308961Z", + "endTime": "2022-10-25T11:30:11.4027231Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:50:19 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A49%3A47.9178847Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:30:12 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A30%3A11.4063425Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84280342-7b94-471e-9c1d-f6737ec2ba76", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145020Z:84280342-7b94-471e-9c1d-f6737ec2ba76", + "x-ms-correlation-request-id": "787ffb41-0c8c-469b-91fe-2893b558e293", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113013Z:787ffb41-0c8c-469b-91fe-2893b558e293", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5", "name": "sdk-py-tests-acc-1-74e025c5", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A49%3A47.9178847Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A30%3A11.4063425Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:49:46.0595366Z" + "CreatedOnDate": "2022-10-25T11:30:09.3853791Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:49:46.9439917Z", + "createdAt": "2022-10-25T11:30:10.3642144Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:49:46.9439917Z" + "lastModifiedAt": "2022-10-25T11:30:10.3642144Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/050f0e90-d69a-42a4-b3ae-2cd219024b79?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43cc9c2f-8092-4381-8585-63467642f6a1?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:50:22 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A50%3A21.9265486Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:30:15 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A30%3A14.8078788Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a85a7740-877e-4b67-b453-fe4c6ddd113e", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145022Z:a85a7740-877e-4b67-b453-fe4c6ddd113e", + "x-ms-correlation-request-id": "3fc3922e-b4e0-4d40-aabf-0bebb1ff8236", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113015Z:3fc3922e-b4e0-4d40-aabf-0bebb1ff8236", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A50%3A21.9265486Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A30%3A14.8078788Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:50:20.4472883Z" + "CreatedOnDate": "2022-10-25T11:30:13.6086640Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:50:21.7141291Z", + "createdAt": "2022-10-25T11:30:14.5855474Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:50:21.7141291Z" + "lastModifiedAt": "2022-10-25T11:30:14.5855474Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/050f0e90-d69a-42a4-b3ae-2cd219024b79?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43cc9c2f-8092-4381-8585-63467642f6a1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:50:52 GMT", + "Date": "Tue, 25 Oct 2022 11:30:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec8affda-58e6-498f-b7a2-df6378ef468f", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145053Z:ec8affda-58e6-498f-b7a2-df6378ef468f", + "x-ms-correlation-request-id": "dd37516b-fcd3-414c-b0ab-af27709ac7f1", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113016Z:dd37516b-fcd3-414c-b0ab-af27709ac7f1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/050f0e90-d69a-42a4-b3ae-2cd219024b79", - "name": "050f0e90-d69a-42a4-b3ae-2cd219024b79", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43cc9c2f-8092-4381-8585-63467642f6a1", + "name": "43cc9c2f-8092-4381-8585-63467642f6a1", "status": "Succeeded", - "startTime": "2022-09-19T14:50:21.9313696Z", - "endTime": "2022-09-19T14:50:22.947071Z", + "startTime": "2022-10-25T11:30:14.812665Z", + "endTime": "2022-10-25T11:30:15.7346167Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:50:52 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A50%3A22.9469025Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:30:15 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A30%3A15.7238812Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "592b2859-d4f3-4630-9a96-d0eea4bdaf9a", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145053Z:592b2859-d4f3-4630-9a96-d0eea4bdaf9a", + "x-ms-correlation-request-id": "87b7c851-7973-409a-90cf-892dc73b1d51", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113016Z:87b7c851-7973-409a-90cf-892dc73b1d51", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A50%3A22.9469025Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A30%3A15.7238812Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:50:20.4472883Z" + "CreatedOnDate": "2022-10-25T11:30:13.6086640Z" }, "properties": { - "poolId": "beba445b-09ff-cefa-0385-e824fafab2cb", + "poolId": "2111a173-31cc-eb89-e32a-06c664c4dde2", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:50:21.7141291Z", + "createdAt": "2022-10-25T11:30:14.5855474Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:50:21.7141291Z" + "lastModifiedAt": "2022-10-25T11:30:14.5855474Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:51:06 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A51%3A05.8691599Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:30:28 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A30%3A28.1863936Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a789445a-f0de-4423-b682-93f7aad76a9e", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145106Z:a789445a-f0de-4423-b682-93f7aad76a9e", + "x-ms-correlation-request-id": "ce8a1a8d-6c4f-4584-a9d6-5fdb5b684f30", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113029Z:ce8a1a8d-6c4f-4584-a9d6-5fdb5b684f30", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A51%3A05.8691599Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A30%3A28.1863936Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:51:03.7560621Z" + "CreatedOnDate": "2022-10-25T11:30:26.7962292Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,141 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:51:04.8990934Z", + "createdAt": "2022-10-25T11:30:27.9218651Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:51:04.8990934Z" + "lastModifiedAt": "2022-10-25T11:30:27.9218651Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:30:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fbf7d0b4-68ce-4395-9efd-32a67acc99a3", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113029Z:fbf7d0b4-68ce-4395-9efd-32a67acc99a3", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", + "status": "Creating", + "startTime": "2022-10-25T11:30:28.1921566Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:30:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2010234f-34e7-4b9b-927a-dd344392ca27", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113059Z:2010234f-34e7-4b9b-927a-dd344392ca27", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", + "status": "Creating", + "startTime": "2022-10-25T11:30:28.1921566Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:31:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e9f00183-bfc6-4144-a8d5-f9fdbff89e86", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113130Z:e9f00183-bfc6-4144-a8d5-f9fdbff89e86", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", + "status": "Creating", + "startTime": "2022-10-25T11:30:28.1921566Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:51:35 GMT", + "Date": "Tue, 25 Oct 2022 11:32:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd3cc72c-147e-4d84-a667-d35aab9294a3", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145136Z:fd3cc72c-147e-4d84-a667-d35aab9294a3", + "x-ms-correlation-request-id": "89decda7-14e8-4ed6-85b3-4cf48a55efa8", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113200Z:89decda7-14e8-4ed6-85b3-4cf48a55efa8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51", - "name": "534a5bf4-ca8b-413b-8b06-f896886afd51", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", "status": "Creating", - "startTime": "2022-09-19T14:51:05.8712556Z", + "startTime": "2022-10-25T11:30:28.1921566Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:52:06 GMT", + "Date": "Tue, 25 Oct 2022 11:32:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28abed04-00f8-4868-80bf-67e8d7880a02", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145207Z:28abed04-00f8-4868-80bf-67e8d7880a02", + "x-ms-correlation-request-id": "f7243064-4439-4a55-bd97-95e681369065", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113230Z:f7243064-4439-4a55-bd97-95e681369065", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51", - "name": "534a5bf4-ca8b-413b-8b06-f896886afd51", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", "status": "Creating", - "startTime": "2022-09-19T14:51:05.8712556Z", + "startTime": "2022-10-25T11:30:28.1921566Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:52:36 GMT", + "Date": "Tue, 25 Oct 2022 11:32:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bc46a60-8a8c-427c-a424-561928f7c964", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145237Z:1bc46a60-8a8c-427c-a424-561928f7c964", + "x-ms-correlation-request-id": "d71b1e83-ffaf-4b4d-81a8-2cd36ebb2b36", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113300Z:d71b1e83-ffaf-4b4d-81a8-2cd36ebb2b36", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51", - "name": "534a5bf4-ca8b-413b-8b06-f896886afd51", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", "status": "Creating", - "startTime": "2022-09-19T14:51:05.8712556Z", + "startTime": "2022-10-25T11:30:28.1921566Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:53:06 GMT", + "Date": "Tue, 25 Oct 2022 11:33:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f808ca1-be86-4b35-8ccc-a868308ecd8d", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145307Z:3f808ca1-be86-4b35-8ccc-a868308ecd8d", + "x-ms-correlation-request-id": "86ee6dcc-727f-45db-817b-5d320926f6cd", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113331Z:86ee6dcc-727f-45db-817b-5d320926f6cd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51", - "name": "534a5bf4-ca8b-413b-8b06-f896886afd51", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", "status": "Creating", - "startTime": "2022-09-19T14:51:05.8712556Z", + "startTime": "2022-10-25T11:30:28.1921566Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:53:37 GMT", + "Date": "Tue, 25 Oct 2022 11:34:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1486,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "774c7e1e-cd58-436c-86a5-5ec2204e9f4e", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145337Z:774c7e1e-cd58-436c-86a5-5ec2204e9f4e", + "x-ms-correlation-request-id": "5ad77819-3ebf-49e0-a9c2-f4e70abfcea2", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113401Z:5ad77819-3ebf-49e0-a9c2-f4e70abfcea2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51", - "name": "534a5bf4-ca8b-413b-8b06-f896886afd51", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", "status": "Creating", - "startTime": "2022-09-19T14:51:05.8712556Z", + "startTime": "2022-10-25T11:30:28.1921566Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1504,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1518,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:07 GMT", + "Date": "Tue, 25 Oct 2022 11:34:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1526,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "671c3f36-eb45-424d-a836-77a6e3afadd3", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145408Z:671c3f36-eb45-424d-a836-77a6e3afadd3", + "x-ms-correlation-request-id": "d7ecef55-0d94-44c3-8d07-aa2fa22e41c1", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113431Z:d7ecef55-0d94-44c3-8d07-aa2fa22e41c1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51", - "name": "534a5bf4-ca8b-413b-8b06-f896886afd51", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", "status": "Creating", - "startTime": "2022-09-19T14:51:05.8712556Z", + "startTime": "2022-10-25T11:30:28.1921566Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1544,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1558,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:38 GMT", + "Date": "Tue, 25 Oct 2022 11:35:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1566,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d259715-a54e-4fee-a21b-23a4db50ca2e", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145439Z:1d259715-a54e-4fee-a21b-23a4db50ca2e", + "x-ms-correlation-request-id": "e97ab89a-b437-403e-8bde-e683f86111ae", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113501Z:e97ab89a-b437-403e-8bde-e683f86111ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51", - "name": "534a5bf4-ca8b-413b-8b06-f896886afd51", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", "status": "Creating", - "startTime": "2022-09-19T14:51:05.8712556Z", + "startTime": "2022-10-25T11:30:28.1921566Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1584,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1598,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:55:08 GMT", + "Date": "Tue, 25 Oct 2022 11:35:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1606,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a425998-f459-4436-b99c-311808406297", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145509Z:5a425998-f459-4436-b99c-311808406297", + "x-ms-correlation-request-id": "f83822f1-82bb-4bfa-9c0a-66265923673f", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113532Z:f83822f1-82bb-4bfa-9c0a-66265923673f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534a5bf4-ca8b-413b-8b06-f896886afd51", - "name": "534a5bf4-ca8b-413b-8b06-f896886afd51", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0632cb4-e20a-4249-8aed-bdde0206b836", + "name": "f0632cb4-e20a-4249-8aed-bdde0206b836", "status": "Succeeded", - "startTime": "2022-09-19T14:51:05.8712556Z", - "endTime": "2022-09-19T14:55:07.9366537Z", + "startTime": "2022-10-25T11:30:28.1921566Z", + "endTime": "2022-10-25T11:35:15.9509636Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5" @@ -1509,7 +1630,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1638,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:55:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A55%3A07.938397Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:35:32 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A35%3A15.9385669Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1647,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d26a457c-c581-41ce-9e13-219b9924839b", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145509Z:d26a457c-c581-41ce-9e13-219b9924839b", + "x-ms-correlation-request-id": "7ddad4cc-58dd-408e-8f20-791db1f053a8", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113533Z:7ddad4cc-58dd-408e-8f20-791db1f053a8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A55%3A07.938397Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A35%3A15.9385669Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:51:03.7560621Z" + "CreatedOnDate": "2022-10-25T11:30:26.7962292Z" }, "properties": { - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-74e025c5", "usageThreshold": 107374182400, @@ -1569,7 +1690,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6b998d4b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_8675ea50", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1705,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "51d71405-3806-4e36-ca22-95884919c898", - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "mountTargetId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1726,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:51:04.8990934Z", + "createdAt": "2022-10-25T11:30:27.9218651Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:51:04.8990934Z" + "lastModifiedAt": "2022-10-25T11:30:27.9218651Z" } } }, @@ -1619,7 +1740,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1627,8 +1748,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:55:19 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A55%3A07.938397Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:35:42 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A35%3A15.9385669Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1636,22 +1757,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dec5ef91-1968-4c7c-90c7-40c30b269372", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145520Z:dec5ef91-1968-4c7c-90c7-40c30b269372", + "x-ms-correlation-request-id": "787ea9ca-7e75-4a49-b299-eaa42d7ad41f", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113543Z:787ea9ca-7e75-4a49-b299-eaa42d7ad41f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A55%3A07.938397Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A35%3A15.9385669Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:51:03.7560621Z" + "CreatedOnDate": "2022-10-25T11:30:26.7962292Z" }, "properties": { - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-74e025c5", "usageThreshold": 107374182400, @@ -1679,7 +1800,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6b998d4b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_8675ea50", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1694,8 +1815,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "51d71405-3806-4e36-ca22-95884919c898", - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "mountTargetId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "ipAddress": "10.0.0.4" } ], @@ -1715,10 +1836,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:51:04.8990934Z", + "createdAt": "2022-10-25T11:30:27.9218651Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:51:04.8990934Z" + "lastModifiedAt": "2022-10-25T11:30:27.9218651Z" } } }, @@ -1729,7 +1850,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1737,7 +1858,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:55:19 GMT", + "Date": "Tue, 25 Oct 2022 11:35:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1745,9 +1866,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17446534-d233-440c-a7ed-156be87fa9a0", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145520Z:17446534-d233-440c-a7ed-156be87fa9a0", + "x-ms-correlation-request-id": "f3caebc4-7810-4a9c-a29a-3ee1dade4757", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113544Z:f3caebc4-7810-4a9c-a29a-3ee1dade4757", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1770,7 +1891,7 @@ "Connection": "keep-alive", "Content-Length": "412", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1789,35 +1910,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e081f222-b294-4843-83af-2c88326f09a3?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d75d97af-9f15-49bf-88fe-539120b30e6e?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "2480", + "Content-Length": "2479", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:55:20 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A55%3A21.3343846Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:35:44 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A35%3A44.791184Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e081f222-b294-4843-83af-2c88326f09a3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d75d97af-9f15-49bf-88fe-539120b30e6e?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4eeaa3b3-6e8c-4698-89a9-e9ab66e91b1c", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145521Z:4eeaa3b3-6e8c-4698-89a9-e9ab66e91b1c", + "x-ms-correlation-request-id": "306cfd9d-2b3f-44a0-8ca0-7484517e1740", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113544Z:306cfd9d-2b3f-44a0-8ca0-7484517e1740", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A55%3A21.3343846Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A35%3A44.791184Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:51:03.7560621Z" + "CreatedOnDate": "2022-10-25T11:30:26.7962292Z" }, "properties": { "provisioningState": "Patching", - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-74e025c5", "usageThreshold": 107374182400, @@ -1845,7 +1966,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6b998d4b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_8675ea50", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1860,8 +1981,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "51d71405-3806-4e36-ca22-95884919c898", - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "mountTargetId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "ipAddress": "10.0.0.4" } ], @@ -1880,21 +2001,61 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:51:04.8990934Z", + "createdAt": "2022-10-25T11:30:27.9218651Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:51:04.8990934Z" + "lastModifiedAt": "2022-10-25T11:30:27.9218651Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d75d97af-9f15-49bf-88fe-539120b30e6e?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:35:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "60f8bb22-8239-4661-a26e-7e2e238f7087", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113545Z:60f8bb22-8239-4661-a26e-7e2e238f7087", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d75d97af-9f15-49bf-88fe-539120b30e6e", + "name": "d75d97af-9f15-49bf-88fe-539120b30e6e", + "status": "Patching", + "startTime": "2022-10-25T11:35:44.7910753Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e081f222-b294-4843-83af-2c88326f09a3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d75d97af-9f15-49bf-88fe-539120b30e6e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1902,7 +2063,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:55:51 GMT", + "Date": "Tue, 25 Oct 2022 11:36:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1910,17 +2071,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c411037c-6dfd-4cdb-8602-240cb19ec276", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145551Z:c411037c-6dfd-4cdb-8602-240cb19ec276", + "x-ms-correlation-request-id": "2b1aac3a-f73a-4f3b-b7a5-aeee645d2d0b", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113615Z:2b1aac3a-f73a-4f3b-b7a5-aeee645d2d0b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e081f222-b294-4843-83af-2c88326f09a3", - "name": "e081f222-b294-4843-83af-2c88326f09a3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d75d97af-9f15-49bf-88fe-539120b30e6e", + "name": "d75d97af-9f15-49bf-88fe-539120b30e6e", "status": "Succeeded", - "startTime": "2022-09-19T14:55:21.3331502Z", - "endTime": "2022-09-19T14:55:24.7607932Z", + "startTime": "2022-10-25T11:35:44.7910753Z", + "endTime": "2022-10-25T11:35:47.8705176Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5" @@ -1928,13 +2089,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e081f222-b294-4843-83af-2c88326f09a3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d75d97af-9f15-49bf-88fe-539120b30e6e?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1942,7 +2103,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:55:51 GMT", + "Date": "Tue, 25 Oct 2022 11:36:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1950,19 +2111,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9796423-c52d-4f23-8e33-9a9ac88f22fc", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145551Z:b9796423-c52d-4f23-8e33-9a9ac88f22fc", + "x-ms-correlation-request-id": "b343d387-daca-4026-b9db-5662ece6f696", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113615Z:b343d387-daca-4026-b9db-5662ece6f696", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A55%3A24.765333Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A35%3A47.8664376Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:55:20.9850448Z" + "CreatedOnDate": "2022-10-25T11:35:44.5022129Z" }, "properties": { "dataProtection": { @@ -1972,7 +2133,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault" } }, - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-74e025c5", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2003,19 +2164,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6b998d4b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_8675ea50", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", - "poolId": "beba445b-09ff-cefa-0385-e824fafab2cb", + "poolId": "2111a173-31cc-eb89-e32a-06c664c4dde2", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "51d71405-3806-4e36-ca22-95884919c898", - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "mountTargetId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "startIp": "", "endIp": "", "gateway": "", @@ -2047,10 +2208,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:51:04.8990934Z", + "createdAt": "2022-10-25T11:30:27.9218651Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:55:21.1720447Z" + "lastModifiedAt": "2022-10-25T11:35:44.6706126Z" } } }, @@ -2063,7 +2224,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -2073,20 +2234,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f8ea6628-14c3-4e95-b07e-106b87bb5648?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4d94294-f0a0-46f2-99e5-5d04bfe81dd7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "542", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:55:52 GMT", + "Date": "Tue, 25 Oct 2022 11:36:15 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f8ea6628-14c3-4e95-b07e-106b87bb5648?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4d94294-f0a0-46f2-99e5-5d04bfe81dd7?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fef6123b-e4f9-4653-8bf8-db1415ee36b4", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145552Z:fef6123b-e4f9-4653-8bf8-db1415ee36b4", + "x-ms-correlation-request-id": "ac15f24e-573a-4dd7-8731-b8c0ede6b3f2", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113616Z:ac15f24e-573a-4dd7-8731-b8c0ede6b3f2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2101,13 +2262,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f8ea6628-14c3-4e95-b07e-106b87bb5648?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4d94294-f0a0-46f2-99e5-5d04bfe81dd7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2115,7 +2276,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:56:22 GMT", + "Date": "Tue, 25 Oct 2022 11:36:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2123,109 +2284,104 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa8fb824-4f95-4e0f-82c5-00f20bef6e85", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145622Z:aa8fb824-4f95-4e0f-82c5-00f20bef6e85", + "x-ms-correlation-request-id": "ad7b9635-5cd2-44cd-93c4-5658c6832115", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113616Z:ad7b9635-5cd2-44cd-93c4-5658c6832115", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f8ea6628-14c3-4e95-b07e-106b87bb5648", - "name": "f8ea6628-14c3-4e95-b07e-106b87bb5648", - "status": "Succeeded", - "startTime": "2022-09-19T14:55:52.3172829Z", - "endTime": "2022-09-19T14:55:52.5361196Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4d94294-f0a0-46f2-99e5-5d04bfe81dd7", + "name": "a4d94294-f0a0-46f2-99e5-5d04bfe81dd7", + "status": "Creating", + "startTime": "2022-10-25T11:36:16.0657256Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f8ea6628-14c3-4e95-b07e-106b87bb5648?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4d94294-f0a0-46f2-99e5-5d04bfe81dd7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "761", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:56:22 GMT", + "Date": "Tue, 25 Oct 2022 11:36:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3557b0b-50d3-40f2-afe3-d69903a69cce", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145622Z:f3557b0b-50d3-40f2-afe3-d69903a69cce", + "x-ms-correlation-request-id": "9e722fc9-38c6-455c-a6c6-8c2b6e9fc8ae", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113646Z:9e722fc9-38c6-455c-a6c6-8c2b6e9fc8ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/19/2022 2:55:52 PM", - "location": "", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4d94294-f0a0-46f2-99e5-5d04bfe81dd7", + "name": "a4d94294-f0a0-46f2-99e5-5d04bfe81dd7", + "status": "Succeeded", + "startTime": "2022-10-25T11:36:16.0657256Z", + "endTime": "2022-10-25T11:36:16.9407825Z", + "percentComplete": 100.0, "properties": { - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", - "creationDate": "0001-01-01T00:00:00Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "failureReason": "None", - "useExistingSnapshot": false, - "provisioningState": "Creating" + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4d94294-f0a0-46f2-99e5-5d04bfe81dd7?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "763", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:56:33 GMT", + "Date": "Tue, 25 Oct 2022 11:36:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdca805a-7fef-44b2-a26e-646ba565042c", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145633Z:bdca805a-7fef-44b2-a26e-646ba565042c", + "x-ms-correlation-request-id": "0cce51b6-6f01-4571-8165-60f066ae5907", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113646Z:0cce51b6-6f01-4571-8165-60f066ae5907", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "etag": "10/25/2022 11:36:16 AM", + "location": "", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", + "creationDate": "0001-01-01T00:00:00Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false + "failureReason": "None", + "useExistingSnapshot": false, + "provisioningState": "Creating" } } }, @@ -2236,7 +2392,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2244,7 +2400,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:56:44 GMT", + "Date": "Tue, 25 Oct 2022 11:36:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2252,9 +2408,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc02aaad-3d51-49db-83af-9c499b7a1ab7", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145645Z:dc02aaad-3d51-49db-83af-9c499b7a1ab7", + "x-ms-correlation-request-id": "5f4d7bc6-4cf8-40a2-8fae-bd547d1b5f64", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113657Z:5f4d7bc6-4cf8-40a2-8fae-bd547d1b5f64", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2263,12 +2419,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2281,7 +2437,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2289,7 +2445,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:56:55 GMT", + "Date": "Tue, 25 Oct 2022 11:37:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2297,9 +2453,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97eb0b9c-be73-420f-8fc2-9883d2a95f1d", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145655Z:97eb0b9c-be73-420f-8fc2-9883d2a95f1d", + "x-ms-correlation-request-id": "8b24d0b0-9584-4f78-921b-0490fd071271", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113708Z:8b24d0b0-9584-4f78-921b-0490fd071271", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2308,12 +2464,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2326,7 +2482,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2334,7 +2490,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:57:06 GMT", + "Date": "Tue, 25 Oct 2022 11:37:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2342,9 +2498,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c27d018c-54ee-4943-9b2c-de32a903ec28", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145706Z:c27d018c-54ee-4943-9b2c-de32a903ec28", + "x-ms-correlation-request-id": "639f771f-6b57-4fa9-bf28-5b1eb461c261", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113719Z:639f771f-6b57-4fa9-bf28-5b1eb461c261", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2353,12 +2509,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2371,7 +2527,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2379,7 +2535,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:57:16 GMT", + "Date": "Tue, 25 Oct 2022 11:37:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2387,9 +2543,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cac6ff7-98ae-4d7b-8047-31730db4a3aa", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145717Z:4cac6ff7-98ae-4d7b-8047-31730db4a3aa", + "x-ms-correlation-request-id": "7c604da4-d022-4fe5-9789-7e35d95abfea", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113730Z:7c604da4-d022-4fe5-9789-7e35d95abfea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2398,12 +2554,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2416,7 +2572,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2424,7 +2580,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:57:26 GMT", + "Date": "Tue, 25 Oct 2022 11:37:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2432,9 +2588,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9586951b-3c03-449b-9481-0d1a14928d5c", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145727Z:9586951b-3c03-449b-9481-0d1a14928d5c", + "x-ms-correlation-request-id": "991bab8f-2a10-484a-94ce-cc9d9bce02e6", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113741Z:991bab8f-2a10-484a-94ce-cc9d9bce02e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2443,12 +2599,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2461,7 +2617,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2469,7 +2625,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:57:37 GMT", + "Date": "Tue, 25 Oct 2022 11:37:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2477,9 +2633,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b55578c-d28f-400a-8f92-1d45030a9a7c", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145738Z:0b55578c-d28f-400a-8f92-1d45030a9a7c", + "x-ms-correlation-request-id": "8ce83a49-68e8-4de2-b9f3-0abe77d8c21d", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113751Z:8ce83a49-68e8-4de2-b9f3-0abe77d8c21d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2488,12 +2644,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2506,7 +2662,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2514,7 +2670,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:57:48 GMT", + "Date": "Tue, 25 Oct 2022 11:38:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2522,9 +2678,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "061c985b-3ccb-4708-9aac-4ca6f8e4e95a", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145749Z:061c985b-3ccb-4708-9aac-4ca6f8e4e95a", + "x-ms-correlation-request-id": "46551e84-b1d3-4f0a-bc38-f5a3b07155b1", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113802Z:46551e84-b1d3-4f0a-bc38-f5a3b07155b1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2533,12 +2689,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2551,7 +2707,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2559,7 +2715,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:57:59 GMT", + "Date": "Tue, 25 Oct 2022 11:38:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2567,9 +2723,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc3c35f4-5455-4881-bc24-6a0e5638312b", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145759Z:dc3c35f4-5455-4881-bc24-6a0e5638312b", + "x-ms-correlation-request-id": "f91d06c2-7265-440b-82b1-94e826ce08ab", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113813Z:f91d06c2-7265-440b-82b1-94e826ce08ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2578,12 +2734,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2596,7 +2752,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2604,7 +2760,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:10 GMT", + "Date": "Tue, 25 Oct 2022 11:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2612,9 +2768,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53abd653-44ff-44ee-b1e4-b1819bb85758", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145810Z:53abd653-44ff-44ee-b1e4-b1819bb85758", + "x-ms-correlation-request-id": "3425360e-1c6d-415e-9283-e5223eef7895", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113823Z:3425360e-1c6d-415e-9283-e5223eef7895", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2623,12 +2779,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2641,7 +2797,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2649,7 +2805,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:21 GMT", + "Date": "Tue, 25 Oct 2022 11:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2657,9 +2813,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82849ef5-c26c-4242-bb82-c01ab50f2a49", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145821Z:82849ef5-c26c-4242-bb82-c01ab50f2a49", + "x-ms-correlation-request-id": "ab7f1ea8-8814-4781-9bf0-4270d3a421b3", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113834Z:ab7f1ea8-8814-4781-9bf0-4270d3a421b3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2668,12 +2824,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2686,7 +2842,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2694,7 +2850,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:32 GMT", + "Date": "Tue, 25 Oct 2022 11:38:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2702,9 +2858,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2bd6763-42d6-49f9-be06-b3438acb1f8f", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145832Z:e2bd6763-42d6-49f9-be06-b3438acb1f8f", + "x-ms-correlation-request-id": "57faa136-f725-42df-8e89-ffc97703a144", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113844Z:57faa136-f725-42df-8e89-ffc97703a144", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2713,12 +2869,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2731,7 +2887,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2739,7 +2895,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:42 GMT", + "Date": "Tue, 25 Oct 2022 11:38:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2747,9 +2903,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a80e0ed-ccb0-4cb0-bbb7-9c02f77ec5d4", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145842Z:3a80e0ed-ccb0-4cb0-bbb7-9c02f77ec5d4", + "x-ms-correlation-request-id": "cea637d6-4e2e-43ab-b72c-7826c50e7163", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113855Z:cea637d6-4e2e-43ab-b72c-7826c50e7163", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2758,12 +2914,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", + "creationDate": "2022-10-25T11:36:16Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2776,7 +2932,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2784,7 +2940,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:53 GMT", + "Date": "Tue, 25 Oct 2022 11:39:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2792,9 +2948,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a8340f7-da6f-46f7-97cb-d8d4027ab786", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145854Z:6a8340f7-da6f-46f7-97cb-d8d4027ab786", + "x-ms-correlation-request-id": "7a45a465-d1ee-4034-b81f-c97c45967115", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113906Z:7a45a465-d1ee-4034-b81f-c97c45967115", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2803,12 +2959,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, + "creationDate": "2022-10-25T11:36:27Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } @@ -2821,7 +2977,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2829,7 +2985,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:59:07 GMT", + "Date": "Tue, 25 Oct 2022 11:39:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2837,9 +2993,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "733a7646-c8c7-422f-babf-cfc7028eddfe", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145908Z:733a7646-c8c7-422f-babf-cfc7028eddfe", + "x-ms-correlation-request-id": "8e9706e7-35be-4971-956a-93a5a3c9e9e9", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113907Z:8e9706e7-35be-4971-956a-93a5a3c9e9e9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2848,25 +3004,25 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, + "creationDate": "2022-10-25T11:36:27Z", + "backupId": "9e4eacb4-a289-4414-8933-025a0c4415b7", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-74e025c5", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2874,7 +3030,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:59:17 GMT", + "Date": "Tue, 25 Oct 2022 11:39:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2882,1246 +3038,76 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6553d3a2-4320-4c34-bd6d-bffafa6a3383", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145918Z:6553d3a2-4320-4c34-bd6d-bffafa6a3383", + "x-ms-correlation-request-id": "be121423-1c1d-4941-96ae-46e5a7a318c8", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113907Z:be121423-1c1d-4941-96ae-46e5a7a318c8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault", + "name": "sdk-py-tests-acc-1-74e025c5/cbsvault", + "type": "Microsoft.NetApp/netAppAccounts/vaults", + "properties": {} + } + ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5?api-version=2022-05-01", + "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "413", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "properties": { + "serviceLevel": "Premium", + "usageThreshold": 107374182400, + "dataProtection": { + "backup": { + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault", + "backupEnabled": false + } + }, + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0 + } + }, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4ad934a-ecb5-49ea-b52e-77d5408bfd96?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "2742", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:59:28 GMT", + "Date": "Tue, 25 Oct 2022 11:39:07 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A39%3A07.956755Z\u0027\u0022", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4ad934a-ecb5-49ea-b52e-77d5408bfd96?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3bf3a53d-1c32-4fd2-8fb3-08afbbe45ee0", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145928Z:3bf3a53d-1c32-4fd2-8fb3-08afbbe45ee0", + "x-ms-correlation-request-id": "6b9085f0-5b0c-496c-bbb5-9b29872e56fb", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113908Z:6b9085f0-5b0c-496c-bbb5-9b29872e56fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", + "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A39%3A07.956755Z\u0027\u0022", "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:59:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "740d0cb0-46a3-43a5-ab96-d25728892f15", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145940Z:740d0cb0-46a3-43a5-ab96-d25728892f15", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:59:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d608f35-a5c6-4544-8efa-1999cc4a9ff5", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-routing-request-id": "WESTEUROPE:20220919T145951Z:8d608f35-a5c6-4544-8efa-1999cc4a9ff5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6474ce1-5a1a-41ed-bc75-0cdf60c97831", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150001Z:e6474ce1-5a1a-41ed-bc75-0cdf60c97831", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5361b693-4082-4103-bd8b-bd3970d21a59", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150012Z:5361b693-4082-4103-bd8b-bd3970d21a59", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5dd4260c-7e1a-4c3a-9270-fb0c8a74d662", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150022Z:5dd4260c-7e1a-4c3a-9270-fb0c8a74d662", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad02b15f-df49-4344-b96e-86fec31fdbe5", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150033Z:ad02b15f-df49-4344-b96e-86fec31fdbe5", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "504d5f18-cc26-4ca7-b1ec-6ceba323eea1", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150044Z:504d5f18-cc26-4ca7-b1ec-6ceba323eea1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "751f9d70-4153-4cdb-8d97-c67f7b94f26b", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150054Z:751f9d70-4153-4cdb-8d97-c67f7b94f26b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:01:04 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00288d17-ed39-48aa-9374-d13102330b04", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150105Z:00288d17-ed39-48aa-9374-d13102330b04", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:01:15 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7e8952c-1a3d-466d-a812-6aab0be5aa77", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150116Z:f7e8952c-1a3d-466d-a812-6aab0be5aa77", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:01:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1783eb20-a8e7-4b63-b8d9-e302ed13738e", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150126Z:1783eb20-a8e7-4b63-b8d9-e302ed13738e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:01:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9681a45a-4a57-4a22-8831-1d6c8b0a284a", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150137Z:9681a45a-4a57-4a22-8831-1d6c8b0a284a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:01:47 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9635862-0748-4b87-9d70-d2a1fb33ddc8", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150148Z:c9635862-0748-4b87-9d70-d2a1fb33ddc8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:01:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8a1a98c-19cc-4d36-bed5-09b71a1c4716", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150158Z:a8a1a98c-19cc-4d36-bed5-09b71a1c4716", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:02:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8eec25f1-6676-4de6-b5ce-ed7be86464cf", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150209Z:8eec25f1-6676-4de6-b5ce-ed7be86464cf", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:02:20 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd533e38-56b8-47fd-b1c5-29ebee06f16e", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150220Z:bd533e38-56b8-47fd-b1c5-29ebee06f16e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:02:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bee04360-dbd6-45cd-9d58-c0b3bcd86661", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150232Z:bee04360-dbd6-45cd-9d58-c0b3bcd86661", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:02:42 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1a35826-1b85-4685-97ed-04234a7e6320", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150242Z:c1a35826-1b85-4685-97ed-04234a7e6320", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:02:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fefd8b7-fb47-472b-9b42-3189dbe8397e", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150253Z:8fefd8b7-fb47-472b-9b42-3189dbe8397e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:03:03 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0e82e81-32f0-4ae0-ab1b-0ab182ea2410", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150303Z:b0e82e81-32f0-4ae0-ab1b-0ab182ea2410", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:03:14 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ec8ad22-d1c1-4d7c-9d50-99827030cadb", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150314Z:2ec8ad22-d1c1-4d7c-9d50-99827030cadb", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:03:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f9b472f-d3b5-4a05-9878-14b45af3640c", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150325Z:1f9b472f-d3b5-4a05-9878-14b45af3640c", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:03:35 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b066c40d-4a59-4c83-8f0f-9d165f9fc64b", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150336Z:b066c40d-4a59-4c83-8f0f-9d165f9fc64b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:03:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0d0279c-9e03-4d0c-9654-5d131bb91728", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150337Z:c0d0279c-9e03-4d0c-9654-5d131bb91728", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:55:52Z", - "backupId": "3cd83d43-4d97-d0a0-d79a-e2124ecbdc5e", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-74e025c5", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:03:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8e67036-c1ab-468c-9f0c-ab028626da47", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150337Z:e8e67036-c1ab-468c-9f0c-ab028626da47", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault", - "name": "sdk-py-tests-acc-1-74e025c5/cbsvault", - "type": "Microsoft.NetApp/netAppAccounts/vaults", - "properties": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5?api-version=2022-05-01", - "RequestMethod": "PATCH", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "413", - "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": { - "properties": { - "serviceLevel": "Premium", - "usageThreshold": 107374182400, - "dataProtection": { - "backup": { - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault", - "backupEnabled": false - } - }, - "isDefaultQuotaEnabled": false, - "defaultUserQuotaInKiBs": 0, - "defaultGroupQuotaInKiBs": 0 - } - }, - "StatusCode": 202, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/234457e6-6ea1-4437-81a8-0cf0507841c2?api-version=2022-05-01", - "Cache-Control": "no-cache", - "Content-Length": "2743", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:03:37 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T15%3A03%3A38.1275073Z\u0027\u0022", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/234457e6-6ea1-4437-81a8-0cf0507841c2?api-version=2022-05-01\u0026operationResultResponseType=Location", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34f03f61-48da-44b4-8aa7-d09d187ae809", - "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150338Z:34f03f61-48da-44b4-8aa7-d09d187ae809", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", - "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A03%3A38.1275073Z\u0027\u0022", - "location": "westus2", - "tags": { - "CreatedOnDate": "2022-09-19T14:55:20.9850448Z" - }, + "tags": { + "CreatedOnDate": "2022-10-25T11:35:44.5022129Z" + }, "properties": { "dataProtection": { "backup": { @@ -4131,7 +3117,7 @@ } }, "provisioningState": "Patching", - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-74e025c5", "usageThreshold": 107374182400, @@ -4159,7 +3145,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6b998d4b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_8675ea50", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -4174,8 +3160,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "51d71405-3806-4e36-ca22-95884919c898", - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "mountTargetId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "ipAddress": "10.0.0.4" } ], @@ -4194,21 +3180,61 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:51:04.8990934Z", + "createdAt": "2022-10-25T11:30:27.9218651Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:55:21.1720447Z" + "lastModifiedAt": "2022-10-25T11:35:44.6706126Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4ad934a-ecb5-49ea-b52e-77d5408bfd96?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:39:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "97ba62e8-5212-438c-9245-fc294e9bc72f", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113908Z:97ba62e8-5212-438c-9245-fc294e9bc72f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4ad934a-ecb5-49ea-b52e-77d5408bfd96", + "name": "e4ad934a-ecb5-49ea-b52e-77d5408bfd96", + "status": "Patching", + "startTime": "2022-10-25T11:39:07.9614581Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/234457e6-6ea1-4437-81a8-0cf0507841c2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4ad934a-ecb5-49ea-b52e-77d5408bfd96?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4216,7 +3242,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:04:07 GMT", + "Date": "Tue, 25 Oct 2022 11:39:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4224,17 +3250,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6849d284-fa99-435b-9f3a-83b7a6162c96", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150408Z:6849d284-fa99-435b-9f3a-83b7a6162c96", + "x-ms-correlation-request-id": "972a7de8-34db-474b-aaa1-1fb5c475420b", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113938Z:972a7de8-34db-474b-aaa1-1fb5c475420b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/234457e6-6ea1-4437-81a8-0cf0507841c2", - "name": "234457e6-6ea1-4437-81a8-0cf0507841c2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4ad934a-ecb5-49ea-b52e-77d5408bfd96", + "name": "e4ad934a-ecb5-49ea-b52e-77d5408bfd96", "status": "Succeeded", - "startTime": "2022-09-19T15:03:38.1253804Z", - "endTime": "2022-09-19T15:03:41.5945884Z", + "startTime": "2022-10-25T11:39:07.9614581Z", + "endTime": "2022-10-25T11:39:13.0980041Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5" @@ -4242,13 +3268,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/234457e6-6ea1-4437-81a8-0cf0507841c2?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4ad934a-ecb5-49ea-b52e-77d5408bfd96?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4256,7 +3282,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:04:07 GMT", + "Date": "Tue, 25 Oct 2022 11:39:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4264,19 +3290,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c085eb48-4785-4506-8ea3-a8bcb029552c", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150408Z:c085eb48-4785-4506-8ea3-a8bcb029552c", + "x-ms-correlation-request-id": "e5c67ed6-477b-4788-9e81-32278dcaa255", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113938Z:e5c67ed6-477b-4788-9e81-32278dcaa255", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A03%3A41.5984251Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A39%3A13.1008368Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:55:20.9850448Z" + "CreatedOnDate": "2022-10-25T11:39:07.6125476Z" }, "properties": { "dataProtection": { @@ -4286,7 +3312,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault" } }, - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-74e025c5", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -4317,19 +3343,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6b998d4b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_8675ea50", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", - "poolId": "beba445b-09ff-cefa-0385-e824fafab2cb", + "poolId": "2111a173-31cc-eb89-e32a-06c664c4dde2", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "51d71405-3806-4e36-ca22-95884919c898", - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "mountTargetId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "startIp": "", "endIp": "", "gateway": "", @@ -4361,10 +3387,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:51:04.8990934Z", + "createdAt": "2022-10-25T11:30:27.9218651Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:03:37.9914697Z" + "lastModifiedAt": "2022-10-25T11:39:07.7777518Z" } } }, @@ -4375,7 +3401,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -4383,15 +3409,15 @@ "Cache-Control": "no-cache", "Content-Length": "77", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:04:10 GMT", + "Date": "Tue, 25 Oct 2022 11:39:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c39f144-6370-498e-864e-1accf28eb200", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150411Z:3c39f144-6370-498e-864e-1accf28eb200", + "x-ms-correlation-request-id": "5085441c-1e2e-48fb-8430-9c8a563ddcb2", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113941Z:5085441c-1e2e-48fb-8430-9c8a563ddcb2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4409,36 +3435,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 15:04:12 GMT", + "Date": "Tue, 25 Oct 2022 11:39:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00885400-d87e-4b97-b427-2db7cc8a70ec", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150412Z:00885400-d87e-4b97-b427-2db7cc8a70ec", + "x-ms-correlation-request-id": "c7799bdf-469b-4749-8369-ee697ba8ca52", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113942Z:c7799bdf-469b-4749-8369-ee697ba8ca52", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4446,7 +3472,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:04:42 GMT", + "Date": "Tue, 25 Oct 2022 11:39:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4454,16 +3480,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c97d1551-969a-4264-95ce-ce2b28622cfc", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150443Z:c97d1551-969a-4264-95ce-ce2b28622cfc", + "x-ms-correlation-request-id": "07b3f221-2285-468f-b28d-e710ab7899ab", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T113942Z:07b3f221-2285-468f-b28d-e710ab7899ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd", - "name": "84391c71-9570-43e6-8cd7-94669decc0bd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73", + "name": "e9d42fae-173c-4eeb-b956-48333ece0c73", "status": "Deleting", - "startTime": "2022-09-19T15:04:12.6263435Z", + "startTime": "2022-10-25T11:39:41.9012705Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -4472,13 +3498,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4486,7 +3512,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:05:12 GMT", + "Date": "Tue, 25 Oct 2022 11:40:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4494,16 +3520,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68497616-40c7-4529-b22d-cf8c3d0df540", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150513Z:68497616-40c7-4529-b22d-cf8c3d0df540", + "x-ms-correlation-request-id": "8cf3f8ff-eca2-426f-8d56-be0fa1b5459f", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114012Z:8cf3f8ff-eca2-426f-8d56-be0fa1b5459f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd", - "name": "84391c71-9570-43e6-8cd7-94669decc0bd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73", + "name": "e9d42fae-173c-4eeb-b956-48333ece0c73", "status": "Deleting", - "startTime": "2022-09-19T15:04:12.6263435Z", + "startTime": "2022-10-25T11:39:41.9012705Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -4512,13 +3538,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4526,7 +3552,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:05:42 GMT", + "Date": "Tue, 25 Oct 2022 11:40:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4534,16 +3560,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b2f8a32-f191-4f27-a6e2-de47bf86e5e8", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150543Z:7b2f8a32-f191-4f27-a6e2-de47bf86e5e8", + "x-ms-correlation-request-id": "275230e3-6719-44bf-94c0-bdb362c40fe1", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114043Z:275230e3-6719-44bf-94c0-bdb362c40fe1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd", - "name": "84391c71-9570-43e6-8cd7-94669decc0bd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73", + "name": "e9d42fae-173c-4eeb-b956-48333ece0c73", "status": "Deleting", - "startTime": "2022-09-19T15:04:12.6263435Z", + "startTime": "2022-10-25T11:39:41.9012705Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -4552,13 +3578,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4566,7 +3592,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:06:12 GMT", + "Date": "Tue, 25 Oct 2022 11:41:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4574,16 +3600,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dce1dfd4-73f8-4a8e-91c0-8e7b4f5f9de3", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150613Z:dce1dfd4-73f8-4a8e-91c0-8e7b4f5f9de3", + "x-ms-correlation-request-id": "23f5566f-da63-4164-aa26-ae2e6e879eeb", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114114Z:23f5566f-da63-4164-aa26-ae2e6e879eeb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd", - "name": "84391c71-9570-43e6-8cd7-94669decc0bd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73", + "name": "e9d42fae-173c-4eeb-b956-48333ece0c73", "status": "Deleting", - "startTime": "2022-09-19T15:04:12.6263435Z", + "startTime": "2022-10-25T11:39:41.9012705Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -4592,13 +3618,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4606,7 +3632,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:06:44 GMT", + "Date": "Tue, 25 Oct 2022 11:41:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4614,16 +3640,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47ca78cc-28b3-40e0-bcfd-c92cc91fe6f7", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150644Z:47ca78cc-28b3-40e0-bcfd-c92cc91fe6f7", + "x-ms-correlation-request-id": "00004c8a-d1dc-4c34-bf05-17fc3614733b", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114144Z:00004c8a-d1dc-4c34-bf05-17fc3614733b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd", - "name": "84391c71-9570-43e6-8cd7-94669decc0bd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73", + "name": "e9d42fae-173c-4eeb-b956-48333ece0c73", "status": "Deleting", - "startTime": "2022-09-19T15:04:12.6263435Z", + "startTime": "2022-10-25T11:39:41.9012705Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -4632,13 +3658,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4646,7 +3672,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:07:13 GMT", + "Date": "Tue, 25 Oct 2022 11:42:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4654,17 +3680,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fa034cf-0fe3-45de-a8f0-445a216057e7", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150714Z:4fa034cf-0fe3-45de-a8f0-445a216057e7", + "x-ms-correlation-request-id": "6aef89eb-f234-4d37-84ff-88e8b4985282", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114214Z:6aef89eb-f234-4d37-84ff-88e8b4985282", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd", - "name": "84391c71-9570-43e6-8cd7-94669decc0bd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73", + "name": "e9d42fae-173c-4eeb-b956-48333ece0c73", "status": "Succeeded", - "startTime": "2022-09-19T15:04:12.6263435Z", - "endTime": "2022-09-19T15:06:45.4724989Z", + "startTime": "2022-10-25T11:39:41.9012705Z", + "endTime": "2022-10-25T11:42:08.7328107Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5" @@ -4672,13 +3698,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84391c71-9570-43e6-8cd7-94669decc0bd?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d42fae-173c-4eeb-b956-48333ece0c73?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4686,7 +3712,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:07:14 GMT", + "Date": "Tue, 25 Oct 2022 11:42:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4694,19 +3720,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ceb1c87c-1dce-47f7-a68a-2c57fdf6a400", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-routing-request-id": "WESTEUROPE:20220919T150714Z:ceb1c87c-1dce-47f7-a68a-2c57fdf6a400", + "x-ms-correlation-request-id": "77de1077-1b5b-4928-bb4f-a5376c2e7e68", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114214Z:77de1077-1b5b-4928-bb4f-a5376c2e7e68", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1/sdk-py-tests-vol-3-74e025c5", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A06%3A27.8527546Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A41%3A59.391376Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:55:20.9850448Z" + "CreatedOnDate": "2022-10-25T11:39:07.6125476Z" }, "properties": { "dataProtection": { @@ -4716,7 +3742,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/vaults/cbsvault" } }, - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-74e025c5", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -4747,19 +3773,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6b998d4b", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_8675ea50", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-74e025c5", - "poolId": "beba445b-09ff-cefa-0385-e824fafab2cb", + "poolId": "2111a173-31cc-eb89-e32a-06c664c4dde2", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "51d71405-3806-4e36-ca22-95884919c898", - "fileSystemId": "51d71405-3806-4e36-ca22-95884919c898", + "mountTargetId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", + "fileSystemId": "022ffc19-23f8-1ee8-f66c-5c29ac89c566", "startIp": "", "endIp": "", "gateway": "", @@ -4791,10 +3817,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:51:04.8990934Z", + "createdAt": "2022-10-25T11:30:27.9218651Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:03:37.9914697Z" + "lastModifiedAt": "2022-10-25T11:39:07.7777518Z" } } }, @@ -4805,7 +3831,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -4813,14 +3839,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:10:36 GMT", + "Date": "Tue, 25 Oct 2022 11:45:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "384043bf-8cec-448e-a012-8682d1c7066d", + "x-ms-correlation-request-id": "261309fa-a496-4f18-a99a-217ce99b116a", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151036Z:384043bf-8cec-448e-a012-8682d1c7066d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114537Z:261309fa-a496-4f18-a99a-217ce99b116a" }, "ResponseBody": { "error": { @@ -4837,36 +3863,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76983a6d-0908-4b40-be17-02994f069a5f?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fad930b-1cb2-4b33-932a-43d16b9dfef7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 15:10:48 GMT", + "Date": "Tue, 25 Oct 2022 11:45:50 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76983a6d-0908-4b40-be17-02994f069a5f?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fad930b-1cb2-4b33-932a-43d16b9dfef7?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18dd34c5-2762-4bb3-9a5c-87417387643f", + "x-ms-correlation-request-id": "7e80879e-f00b-4c0a-8b13-6b1df0df9d54", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151048Z:18dd34c5-2762-4bb3-9a5c-87417387643f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114550Z:7e80879e-f00b-4c0a-8b13-6b1df0df9d54", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76983a6d-0908-4b40-be17-02994f069a5f?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fad930b-1cb2-4b33-932a-43d16b9dfef7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4874,7 +3900,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:11:18 GMT", + "Date": "Tue, 25 Oct 2022 11:45:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4882,17 +3908,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e4d7523-ec7e-47fb-adba-1bf9714e7005", + "x-ms-correlation-request-id": "2b6f1074-8de5-4d3e-8644-c57b38d1dd69", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151118Z:4e4d7523-ec7e-47fb-adba-1bf9714e7005", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114550Z:2b6f1074-8de5-4d3e-8644-c57b38d1dd69", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fad930b-1cb2-4b33-932a-43d16b9dfef7", + "name": "5fad930b-1cb2-4b33-932a-43d16b9dfef7", + "status": "Deleting", + "startTime": "2022-10-25T11:45:50.1523034Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fad930b-1cb2-4b33-932a-43d16b9dfef7?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:46:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8e3c533e-68ce-424a-9e9f-3b4f07b9c482", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114620Z:8e3c533e-68ce-424a-9e9f-3b4f07b9c482", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76983a6d-0908-4b40-be17-02994f069a5f", - "name": "76983a6d-0908-4b40-be17-02994f069a5f", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fad930b-1cb2-4b33-932a-43d16b9dfef7", + "name": "5fad930b-1cb2-4b33-932a-43d16b9dfef7", "status": "Succeeded", - "startTime": "2022-09-19T15:10:48.3813703Z", - "endTime": "2022-09-19T15:10:49.2876233Z", + "startTime": "2022-10-25T11:45:50.1523034Z", + "endTime": "2022-10-25T11:45:51.2773344Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1" @@ -4900,13 +3966,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76983a6d-0908-4b40-be17-02994f069a5f?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fad930b-1cb2-4b33-932a-43d16b9dfef7?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4914,7 +3980,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:11:18 GMT", + "Date": "Tue, 25 Oct 2022 11:46:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4922,22 +3988,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9485fdd3-9ce2-4a26-be17-c671a49fac7c", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151119Z:9485fdd3-9ce2-4a26-be17-c671a49fac7c", + "x-ms-correlation-request-id": "991895bd-dd5a-44f4-9eef-84bf8fd60f78", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114621Z:991895bd-dd5a-44f4-9eef-84bf8fd60f78", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-74e025c5/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A10%3A48.3890368Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A45%3A50.1579867Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:50:20.4472883Z" + "CreatedOnDate": "2022-10-25T11:30:13.6086640Z" }, "properties": { - "poolId": "beba445b-09ff-cefa-0385-e824fafab2cb", + "poolId": "2111a173-31cc-eb89-e32a-06c664c4dde2", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5/capacityPools/sdk-py-tests-pool-1", @@ -4951,10 +4017,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:50:21.7141291Z", + "createdAt": "2022-10-25T11:30:14.5855474Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:50:21.7141291Z" + "lastModifiedAt": "2022-10-25T11:30:14.5855474Z" } } }, @@ -4966,20 +4032,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 15:11:28 GMT", + "Date": "Tue, 25 Oct 2022 11:46:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a426cfdd-45a9-4bea-9597-54d4cf8ec193", + "x-ms-correlation-request-id": "63268032-f45e-4f6a-9687-e64b36c85dad", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151129Z:a426cfdd-45a9-4bea-9597-54d4cf8ec193" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114631Z:63268032-f45e-4f6a-9687-e64b36c85dad" }, "ResponseBody": null }, @@ -4991,20 +4057,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 15:11:38 GMT", + "Date": "Tue, 25 Oct 2022 11:46:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3af8270-ff61-4fea-95c7-0a75dcad18d7", + "x-ms-correlation-request-id": "9c8b2462-da0b-42bb-a684-fffadc5eeee3", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151139Z:f3af8270-ff61-4fea-95c7-0a75dcad18d7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114641Z:9c8b2462-da0b-42bb-a684-fffadc5eeee3" }, "ResponseBody": null }, @@ -5016,20 +4082,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 15:11:49 GMT", + "Date": "Tue, 25 Oct 2022 11:46:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08306c5f-381b-409f-9aa9-f38a69a055cd", + "x-ms-correlation-request-id": "ce24ada9-9468-4c38-baa2-52948f87286f", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151149Z:08306c5f-381b-409f-9aa9-f38a69a055cd" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114651Z:ce24ada9-9468-4c38-baa2-52948f87286f" }, "ResponseBody": null }, @@ -5041,20 +4107,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 15:11:59 GMT", + "Date": "Tue, 25 Oct 2022 11:47:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcacf9ac-3a23-46f4-acda-382fc9c66ffd", + "x-ms-correlation-request-id": "682a7416-9877-458f-ac3d-42fe1c0071eb", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151200Z:fcacf9ac-3a23-46f4-acda-382fc9c66ffd" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114702Z:682a7416-9877-458f-ac3d-42fe1c0071eb" }, "ResponseBody": null }, @@ -5065,7 +4131,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -5073,14 +4139,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:12:09 GMT", + "Date": "Tue, 25 Oct 2022 11:47:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e78f79f2-8c02-4225-9abc-67ff43b3abb4", + "x-ms-correlation-request-id": "3bb08e34-11c3-456e-8981-95fe2cfcaa36", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151210Z:e78f79f2-8c02-4225-9abc-67ff43b3abb4" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114712Z:3bb08e34-11c3-456e-8981-95fe2cfcaa36" }, "ResponseBody": { "error": { @@ -5097,36 +4163,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b99616e2-4a0a-4ec0-b5cb-0fb41f3f1e64?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b8e6191d-4773-4467-9e05-d0d10946d11c?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 15:12:11 GMT", + "Date": "Tue, 25 Oct 2022 11:47:13 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b99616e2-4a0a-4ec0-b5cb-0fb41f3f1e64?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b8e6191d-4773-4467-9e05-d0d10946d11c?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5b65eae-d2c5-46e1-a43c-da30e0c42acb", + "x-ms-correlation-request-id": "931d4e99-cb72-4dac-ace4-e5e016417797", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151211Z:b5b65eae-d2c5-46e1-a43c-da30e0c42acb", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114714Z:931d4e99-cb72-4dac-ace4-e5e016417797", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b99616e2-4a0a-4ec0-b5cb-0fb41f3f1e64?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b8e6191d-4773-4467-9e05-d0d10946d11c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5134,7 +4200,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:12:41 GMT", + "Date": "Tue, 25 Oct 2022 11:47:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5142,17 +4208,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91fdcfd8-c839-4508-b2ff-47dcbb58d591", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151242Z:91fdcfd8-c839-4508-b2ff-47dcbb58d591", + "x-ms-correlation-request-id": "421676a9-787b-4730-89b4-60745997dddc", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114714Z:421676a9-787b-4730-89b4-60745997dddc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b99616e2-4a0a-4ec0-b5cb-0fb41f3f1e64", - "name": "b99616e2-4a0a-4ec0-b5cb-0fb41f3f1e64", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b8e6191d-4773-4467-9e05-d0d10946d11c", + "name": "b8e6191d-4773-4467-9e05-d0d10946d11c", "status": "Succeeded", - "startTime": "2022-09-19T15:12:11.796677Z", - "endTime": "2022-09-19T15:12:11.8278812Z", + "startTime": "2022-10-25T11:47:13.9780669Z", + "endTime": "2022-10-25T11:47:14.0249069Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5" @@ -5160,13 +4226,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b99616e2-4a0a-4ec0-b5cb-0fb41f3f1e64?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b8e6191d-4773-4467-9e05-d0d10946d11c?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5174,7 +4240,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:12:42 GMT", + "Date": "Tue, 25 Oct 2022 11:47:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5182,19 +4248,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06d1c13e-701b-4dbc-bebc-f073524f7ded", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151242Z:06d1c13e-701b-4dbc-bebc-f073524f7ded", + "x-ms-correlation-request-id": "527f13b1-bbe0-4457-a2dc-aa885cfed8d8", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114714Z:527f13b1-bbe0-4457-a2dc-aa885cfed8d8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5", "name": "sdk-py-tests-acc-1-74e025c5", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A12%3A11.7911745Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A47%3A13.9662014Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:49:46.0595366Z" + "CreatedOnDate": "2022-10-25T11:30:09.3853791Z" }, "properties": { "encryption": { @@ -5205,10 +4271,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:49:46.9439917Z", + "createdAt": "2022-10-25T11:30:10.3642144Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:49:46.9439917Z" + "lastModifiedAt": "2022-10-25T11:30:10.3642144Z" } } }, @@ -5219,50 +4285,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:12:42 GMT", + "Date": "Tue, 25 Oct 2022 11:47:14 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e07c7ae-b9b3-4225-84ff-c6c35eb272f5", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151242Z:2e07c7ae-b9b3-4225-84ff-c6c35eb272f5" + "x-ms-correlation-request-id": "4d1669d3-fdad-482b-a6f3-32ad23b9a1a5", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114715Z:4d1669d3-fdad-482b-a6f3-32ad23b9a1a5", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-74e025c5\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-74e025c5?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4d52722c-4114-4532-88c1-66224e362718?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/02b84b3e-0dc5-4b21-9b97-9d9a78bd2fe4?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 15:12:43 GMT", + "Date": "Tue, 25 Oct 2022 11:47:15 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/4d52722c-4114-4532-88c1-66224e362718?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/02b84b3e-0dc5-4b21-9b97-9d9a78bd2fe4?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -5271,10 +4339,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "33ecbf95-e1da-490a-892e-6b25eb60598b", - "x-ms-correlation-request-id": "275310b5-5d91-4758-957f-81041ff3d425", + "x-ms-arm-service-request-id": "50d64952-8dd0-4626-850f-39b994bd3293", + "x-ms-correlation-request-id": "7bc373a8-08e7-4bf5-a804-790cb1be31ff", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151243Z:275310b5-5d91-4758-957f-81041ff3d425" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T114716Z:7bc373a8-08e7-4bf5-a804-790cb1be31ff" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_get_backup_status.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_get_backup_status.json index bf21bca908dc..93a675bf9484 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_get_backup_status.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_get_backup_status.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:04:42 GMT", + "Date": "Tue, 25 Oct 2022 12:28:08 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:04:42 GMT", + "Date": "Tue, 25 Oct 2022 12:28:08 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "4d781e12-95c3-4c7a-b179-b6c309ca4c40", + "client-request-id": "6b408792-eb93-453a-b45a-9d7248430efb", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "4d781e12-95c3-4c7a-b179-b6c309ca4c40", + "client-request-id": "6b408792-eb93-453a-b45a-9d7248430efb", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:04:42 GMT", + "Date": "Tue, 25 Oct 2022 12:28:08 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/65d75891-2c49-4947-a8bb-d70806afab3d?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6a950bf1-8926-43ae-a0c3-eb64d7084e34?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:04:52 GMT", + "Date": "Tue, 25 Oct 2022 12:28:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "6cf09274-e2e1-4fb1-9114-e32c8276b421", - "x-ms-correlation-request-id": "62fdce58-a20c-4fd5-8b0e-5005a50e1bc7", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110452Z:62fdce58-a20c-4fd5-8b0e-5005a50e1bc7" + "x-ms-arm-service-request-id": "cb5086ea-0334-47cc-a493-1eb021399acc", + "x-ms-correlation-request-id": "31e4c29f-3399-4796-ace4-5da6b42f8670", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122817Z:31e4c29f-3399-4796-ace4-5da6b42f8670" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-503c258e", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e", - "etag": "W/\u0022929e6968-7488-40a1-8a8a-cd5ba17ca5ad\u0022", + "etag": "W/\u0022f08fa868-2157-4ad3-8b05-c83276ded0fd\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:04:46.2588080Z" + "CreatedOnDate": "2022-10-25T12:28:11.0827071Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "1069bb53-81d5-4ce1-9463-bce0304bd49f", + "resourceGuid": "ca75f4da-570e-4df3-867c-9da7c4c6fd31", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/65d75891-2c49-4947-a8bb-d70806afab3d?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6a950bf1-8926-43ae-a0c3-eb64d7084e34?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,9 +293,10 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:04:55 GMT", + "Date": "Tue, 25 Oct 2022 12:28:17 GMT", "Expires": "-1", "Pragma": "no-cache", + "Retry-After": "10", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -304,23 +305,58 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "61a99836-a54b-4fec-9726-da8ff0a31d6f", - "x-ms-correlation-request-id": "a916d80e-1659-4fb3-a20c-453ad489ef5f", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110455Z:a916d80e-1659-4fb3-a20c-453ad489ef5f" + "x-ms-arm-service-request-id": "c436cf32-2588-476f-8c46-c8d1806365b3", + "x-ms-correlation-request-id": "94f99c32-64dd-4a8f-9f8f-e1f6e9104449", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122817Z:94f99c32-64dd-4a8f-9f8f-e1f6e9104449" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6a950bf1-8926-43ae-a0c3-eb64d7084e34?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:28:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "92f6acfe-38c1-41dd-8cc6-8c7453b79676", + "x-ms-correlation-request-id": "873b8a14-609e-4ec8-82a0-bcac3a5e1f5f", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122827Z:873b8a14-609e-4ec8-82a0-bcac3a5e1f5f" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +364,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:04:55 GMT", - "ETag": "W/\u002283553e49-2aa0-44c2-b3ef-d4ca36081790\u0022", + "Date": "Tue, 25 Oct 2022 12:28:27 GMT", + "ETag": "W/\u0022c19740e1-c605-41b4-ae2f-53529848c529\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +376,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "39226169-4efa-4681-8f41-e06f7e260655", - "x-ms-correlation-request-id": "cd3c76fd-799d-45fd-8214-249b178cb360", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110456Z:cd3c76fd-799d-45fd-8214-249b178cb360" + "x-ms-arm-service-request-id": "14d0efe5-bc85-45a6-b3f8-a903ccdefd8e", + "x-ms-correlation-request-id": "f88afc1f-7858-4c4a-a20c-f5090116dc60", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122828Z:f88afc1f-7858-4c4a-a20c-f5090116dc60" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-503c258e", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e", - "etag": "W/\u002283553e49-2aa0-44c2-b3ef-d4ca36081790\u0022", + "etag": "W/\u0022c19740e1-c605-41b4-ae2f-53529848c529\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:04:46.2588080Z" + "CreatedOnDate": "2022-10-25T12:28:11.0827071Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "1069bb53-81d5-4ce1-9463-bce0304bd49f", + "resourceGuid": "ca75f4da-570e-4df3-867c-9da7c4c6fd31", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +405,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +413,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +430,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3fc5cf2c-2b69-47f3-8aa4-46ab38dc84ae?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/60b29847-f80b-49b4-b594-d14d81e1e136?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:04:56 GMT", + "Date": "Tue, 25 Oct 2022 12:28:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +445,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "38d61116-044d-43bb-894a-76b05706a64a", - "x-ms-correlation-request-id": "493cea0f-8248-45cf-bc76-8afe019a3556", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110457Z:493cea0f-8248-45cf-bc76-8afe019a3556" + "x-ms-arm-service-request-id": "2f770824-53d6-42c5-b699-e686915fdf44", + "x-ms-correlation-request-id": "65522206-b3dc-49f8-bf63-b91425740f95", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122828Z:65522206-b3dc-49f8-bf63-b91425740f95" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default", - "etag": "W/\u00226ce70fd3-0c8a-4f74-8dbe-1b524fcf7f15\u0022", + "etag": "W/\u00222bc75b1e-7991-4ad9-a05e-470f0dc4730e\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +461,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00226ce70fd3-0c8a-4f74-8dbe-1b524fcf7f15\u0022", + "etag": "W/\u00222bc75b1e-7991-4ad9-a05e-470f0dc4730e\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +481,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3fc5cf2c-2b69-47f3-8aa4-46ab38dc84ae?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/60b29847-f80b-49b4-b594-d14d81e1e136?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +495,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:05:00 GMT", + "Date": "Tue, 25 Oct 2022 12:28:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +506,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ca4ff5dd-6511-4c12-84ee-9868204931b3", - "x-ms-correlation-request-id": "986ff846-cb49-4992-a878-8a1ded8031e8", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110500Z:986ff846-cb49-4992-a878-8a1ded8031e8" + "x-ms-arm-service-request-id": "e40ebe80-763f-428c-83fe-3cc407ef75cc", + "x-ms-correlation-request-id": "681cf102-16ee-4e02-81c8-4c9523e84e1b", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122829Z:681cf102-16ee-4e02-81c8-4c9523e84e1b" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +530,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:05:00 GMT", - "ETag": "W/\u00222d24cd28-1e42-4868-8f00-b0133eef816e\u0022", + "Date": "Tue, 25 Oct 2022 12:28:28 GMT", + "ETag": "W/\u00222c7441ba-3ef8-4f09-9e58-3812ef02a2d8\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +542,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7a3e501d-3668-4a30-a965-09dcc5dab109", - "x-ms-correlation-request-id": "3e89c1b3-3b07-492e-a1d9-ebbf9a2670b8", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110500Z:3e89c1b3-3b07-492e-a1d9-ebbf9a2670b8" + "x-ms-arm-service-request-id": "b32f232f-9c69-4d50-a861-dd7c55c3e5ef", + "x-ms-correlation-request-id": "e3175cf6-5a93-4621-897b-78c9e33f9234", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122829Z:e3175cf6-5a93-4621-897b-78c9e33f9234" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default", - "etag": "W/\u00222d24cd28-1e42-4868-8f00-b0133eef816e\u0022", + "etag": "W/\u00222c7441ba-3ef8-4f09-9e58-3812ef02a2d8\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +558,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00222d24cd28-1e42-4868-8f00-b0133eef816e\u0022", + "etag": "W/\u00222c7441ba-3ef8-4f09-9e58-3812ef02a2d8\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +584,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +594,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:05:00 GMT", + "Date": "Tue, 25 Oct 2022 12:28:29 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +678,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +688,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:05:00 GMT", + "Date": "Tue, 25 Oct 2022 12:28:29 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +749,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "c219442c-1f6f-41e6-b19e-a9bc649913e2", + "client-request-id": "39e5e20f-5d4f-41c2-879d-0e59c34df85c", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "c219442c-1f6f-41e6-b19e-a9bc649913e2", + "client-request-id": "39e5e20f-5d4f-41c2-879d-0e59c34df85c", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:05:00 GMT", + "Date": "Tue, 25 Oct 2022 12:28:29 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +778,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +798,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4bc19096-a06e-4fbb-9638-c1ea47e131a0?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b8fa4515-64c0-46a3-bfad-fcd7242ad6de?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "706", + "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:05:05 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T11%3A05%3A04.3816988Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:28:33 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A28%3A32.8893648Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16a456bc-cf98-4a18-8c41-eb369ac7ece1", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110505Z:16a456bc-cf98-4a18-8c41-eb369ac7ece1", + "x-ms-correlation-request-id": "abe45958-b461-4973-9a9e-492baf224d00", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122834Z:abe45958-b461-4973-9a9e-492baf224d00", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e", "name": "sdk-py-tests-acc-1-503c258e", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A05%3A04.3816988Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A28%3A32.8893648Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:05:02.3073132Z" + "CreatedOnDate": "2022-10-25T12:28:31.0093587Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +836,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T11:05:03.4968142Z", + "createdAt": "2022-10-25T12:28:31.866882Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T11:05:03.4968142Z" + "lastModifiedAt": "2022-10-25T12:28:31.866882Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4bc19096-a06e-4fbb-9638-c1ea47e131a0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b8fa4515-64c0-46a3-bfad-fcd7242ad6de?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +858,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:05:35 GMT", + "Date": "Tue, 25 Oct 2022 12:28:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +866,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5672d159-34a1-4d60-909a-7e1b5c7424f6", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110536Z:5672d159-34a1-4d60-909a-7e1b5c7424f6", + "x-ms-correlation-request-id": "980e2642-060f-40f4-8b9c-826c419f8e38", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122834Z:980e2642-060f-40f4-8b9c-826c419f8e38", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4bc19096-a06e-4fbb-9638-c1ea47e131a0", - "name": "4bc19096-a06e-4fbb-9638-c1ea47e131a0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b8fa4515-64c0-46a3-bfad-fcd7242ad6de", + "name": "b8fa4515-64c0-46a3-bfad-fcd7242ad6de", "status": "Succeeded", - "startTime": "2022-09-20T11:05:04.3767328Z", - "endTime": "2022-09-20T11:05:04.4236032Z", + "startTime": "2022-10-25T12:28:32.8850288Z", + "endTime": "2022-10-25T12:28:32.9318983Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e" @@ -853,7 +890,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +898,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:05:36 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T11%3A05%3A04.4284968Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:28:34 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A28%3A32.9344917Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +907,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8221f9ca-2c2e-4f87-9b81-46468fc33631", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110536Z:8221f9ca-2c2e-4f87-9b81-46468fc33631", + "x-ms-correlation-request-id": "baab8121-fe2a-43ee-9706-3f8cd9129f0f", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122834Z:baab8121-fe2a-43ee-9706-3f8cd9129f0f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e", "name": "sdk-py-tests-acc-1-503c258e", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A05%3A04.4284968Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A28%3A32.9344917Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:05:02.3073132Z" + "CreatedOnDate": "2022-10-25T12:28:31.0093587Z" }, "properties": { "activeDirectories": [ @@ -911,10 +948,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T11:05:03.4968142Z", + "createdAt": "2022-10-25T12:28:31.866882Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T11:05:03.4968142Z" + "lastModifiedAt": "2022-10-25T12:28:31.866882Z" } } }, @@ -927,7 +964,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +977,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/808396ac-ac49-4bf0-9bca-f666845b42be?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18a525e9-83ef-43e3-a79a-b9718604e3a0?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:05:38 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T11%3A05%3A38.0722767Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:28:36 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A28%3A36.4842851Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca63f261-2e1d-4dce-9f60-36ac1179e490", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110539Z:ca63f261-2e1d-4dce-9f60-36ac1179e490", + "x-ms-correlation-request-id": "f583b8e2-1faa-4ea5-b599-ea57cc9bcdd7", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122837Z:f583b8e2-1faa-4ea5-b599-ea57cc9bcdd7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A05%3A38.0722767Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A28%3A36.4842851Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:05:36.8930782Z" + "CreatedOnDate": "2022-10-25T12:28:35.2453973Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +1014,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T11:05:37.8780885Z", + "createdAt": "2022-10-25T12:28:36.2607164Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T11:05:37.8780885Z" + "lastModifiedAt": "2022-10-25T12:28:36.2607164Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/808396ac-ac49-4bf0-9bca-f666845b42be?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18a525e9-83ef-43e3-a79a-b9718604e3a0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1036,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:06:08 GMT", + "Date": "Tue, 25 Oct 2022 12:28:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1044,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b8067e1-80e2-4cea-8f2e-5afb4ffd979e", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110609Z:5b8067e1-80e2-4cea-8f2e-5afb4ffd979e", + "x-ms-correlation-request-id": "86ce6add-b6e3-4519-8fac-37ff06548c2a", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122837Z:86ce6add-b6e3-4519-8fac-37ff06548c2a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/808396ac-ac49-4bf0-9bca-f666845b42be", - "name": "808396ac-ac49-4bf0-9bca-f666845b42be", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18a525e9-83ef-43e3-a79a-b9718604e3a0", + "name": "18a525e9-83ef-43e3-a79a-b9718604e3a0", "status": "Succeeded", - "startTime": "2022-09-20T11:05:38.0753667Z", - "endTime": "2022-09-20T11:05:38.2160041Z", + "startTime": "2022-10-25T12:28:36.4788894Z", + "endTime": "2022-10-25T12:28:37.3070325Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1068,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1076,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:06:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T11%3A05%3A38.2182911Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:28:37 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A28%3A37.2980151Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1085,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4638b78-fda4-4fb8-b1b8-89f5ea55df68", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110609Z:c4638b78-fda4-4fb8-b1b8-89f5ea55df68", + "x-ms-correlation-request-id": "68f06c9e-fac5-4e46-9e8f-e2721e7a31c5", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122838Z:68f06c9e-fac5-4e46-9e8f-e2721e7a31c5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A05%3A38.2182911Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A28%3A37.2980151Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:05:36.8930782Z" + "CreatedOnDate": "2022-10-25T12:28:35.2453973Z" }, "properties": { - "poolId": "9bcc381e-6f67-20c6-cee6-aad8eb309eaa", + "poolId": "defedbd0-6f62-0dfe-003f-04d6d2126b2e", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1113,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T11:05:37.8780885Z", + "createdAt": "2022-10-25T12:28:36.2607164Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T11:05:37.8780885Z" + "lastModifiedAt": "2022-10-25T12:28:36.2607164Z" } } }, @@ -1092,7 +1129,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1159,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:06:22 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T11%3A06%3A22.2618005Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:28:49 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A28%3A49.7506098Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e55d636a-01c8-4940-8333-73208a486777", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110623Z:e55d636a-01c8-4940-8333-73208a486777", + "x-ms-correlation-request-id": "17bc5016-4ac1-48b6-86a3-bd8e2c57112f", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122850Z:17bc5016-4ac1-48b6-86a3-bd8e2c57112f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A06%3A22.2618005Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A28%3A49.7506098Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:06:20.0708122Z" + "CreatedOnDate": "2022-10-25T12:28:48.4491679Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1212,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T11:06:21.2196176Z", + "createdAt": "2022-10-25T12:28:49.4406164Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T11:06:21.2196176Z" + "lastModifiedAt": "2022-10-25T12:28:49.4406164Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1234,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:06:52 GMT", + "Date": "Tue, 25 Oct 2022 12:28:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1242,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a318a255-67bd-48a2-9369-5a4b65a1d8d8", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110653Z:a318a255-67bd-48a2-9369-5a4b65a1d8d8", + "x-ms-correlation-request-id": "99b54001-452c-42bd-9d4c-5a3838d94206", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122850Z:99b54001-452c-42bd-9d4c-5a3838d94206", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16", - "name": "b4aab296-93cf-48de-b270-5a401d879e16", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", "status": "Creating", - "startTime": "2022-09-20T11:06:22.267494Z", + "startTime": "2022-10-25T12:28:49.7405317Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1260,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1274,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:07:23 GMT", + "Date": "Tue, 25 Oct 2022 12:29:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1282,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b59dd825-c248-4c23-9481-51c5c91dd56f", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110724Z:b59dd825-c248-4c23-9481-51c5c91dd56f", + "x-ms-correlation-request-id": "89567600-310f-4001-bad1-83824beb1771", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122921Z:89567600-310f-4001-bad1-83824beb1771", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16", - "name": "b4aab296-93cf-48de-b270-5a401d879e16", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", "status": "Creating", - "startTime": "2022-09-20T11:06:22.267494Z", + "startTime": "2022-10-25T12:28:49.7405317Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1300,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1314,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:07:53 GMT", + "Date": "Tue, 25 Oct 2022 12:29:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1322,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b85432c1-4ceb-445f-bbdf-81ae0d0639f6", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110754Z:b85432c1-4ceb-445f-bbdf-81ae0d0639f6", + "x-ms-correlation-request-id": "57ea797a-1959-4204-8303-46bb687b4c7e", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T122951Z:57ea797a-1959-4204-8303-46bb687b4c7e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16", - "name": "b4aab296-93cf-48de-b270-5a401d879e16", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", "status": "Creating", - "startTime": "2022-09-20T11:06:22.267494Z", + "startTime": "2022-10-25T12:28:49.7405317Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1340,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1354,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:08:23 GMT", + "Date": "Tue, 25 Oct 2022 12:30:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1362,136 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a5530cd-b728-4473-88af-b757493bb922", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110824Z:2a5530cd-b728-4473-88af-b757493bb922", + "x-ms-correlation-request-id": "e288947c-c6dc-4744-aac0-6b49db427815", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123021Z:e288947c-c6dc-4744-aac0-6b49db427815", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", + "status": "Creating", + "startTime": "2022-10-25T12:28:49.7405317Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:30:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "310f74e5-d8f5-4dfd-85f3-097d6ee0d7e3", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123052Z:310f74e5-d8f5-4dfd-85f3-097d6ee0d7e3", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", + "status": "Creating", + "startTime": "2022-10-25T12:28:49.7405317Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:31:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1e45dc8e-985f-4253-b6d7-ed316897a6f6", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123122Z:1e45dc8e-985f-4253-b6d7-ed316897a6f6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", + "status": "Creating", + "startTime": "2022-10-25T12:28:49.7405317Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:31:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "89ce4e00-b233-4d4b-9225-e57a54bab25b", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123152Z:89ce4e00-b233-4d4b-9225-e57a54bab25b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16", - "name": "b4aab296-93cf-48de-b270-5a401d879e16", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", "status": "Creating", - "startTime": "2022-09-20T11:06:22.267494Z", + "startTime": "2022-10-25T12:28:49.7405317Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1500,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1514,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:08:53 GMT", + "Date": "Tue, 25 Oct 2022 12:32:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1522,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10046611-a62a-4b4e-82e3-ae685b46d704", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110854Z:10046611-a62a-4b4e-82e3-ae685b46d704", + "x-ms-correlation-request-id": "a245790c-609e-4007-82f2-f6c7dcdadc94", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123222Z:a245790c-609e-4007-82f2-f6c7dcdadc94", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16", - "name": "b4aab296-93cf-48de-b270-5a401d879e16", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", "status": "Creating", - "startTime": "2022-09-20T11:06:22.267494Z", + "startTime": "2022-10-25T12:28:49.7405317Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1540,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1554,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:09:24 GMT", + "Date": "Tue, 25 Oct 2022 12:32:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1562,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aae9ac26-e0b5-419f-b2ed-facc03b806ad", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110925Z:aae9ac26-e0b5-419f-b2ed-facc03b806ad", + "x-ms-correlation-request-id": "162529e4-198b-48f2-a40e-8f59e3bfdf69", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123253Z:162529e4-198b-48f2-a40e-8f59e3bfdf69", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16", - "name": "b4aab296-93cf-48de-b270-5a401d879e16", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", "status": "Creating", - "startTime": "2022-09-20T11:06:22.267494Z", + "startTime": "2022-10-25T12:28:49.7405317Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1580,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1594,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:09:55 GMT", + "Date": "Tue, 25 Oct 2022 12:33:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1602,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b780660-9d34-4738-8b69-34067ef0374c", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220920T110956Z:0b780660-9d34-4738-8b69-34067ef0374c", + "x-ms-correlation-request-id": "8e40b85e-177d-4f39-b144-27744fdb410c", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123323Z:8e40b85e-177d-4f39-b144-27744fdb410c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16", - "name": "b4aab296-93cf-48de-b270-5a401d879e16", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", "status": "Creating", - "startTime": "2022-09-20T11:06:22.267494Z", + "startTime": "2022-10-25T12:28:49.7405317Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1620,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1634,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:10:25 GMT", + "Date": "Tue, 25 Oct 2022 12:33:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1642,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d8abbf5-5509-4d90-aa4b-61385ac48b5c", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111026Z:3d8abbf5-5509-4d90-aa4b-61385ac48b5c", + "x-ms-correlation-request-id": "8a4316b7-8eca-46eb-9147-0b4a523ba98f", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123354Z:8a4316b7-8eca-46eb-9147-0b4a523ba98f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4aab296-93cf-48de-b270-5a401d879e16", - "name": "b4aab296-93cf-48de-b270-5a401d879e16", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0d8afc-5929-42a1-928b-0b96b66cf862", + "name": "5b0d8afc-5929-42a1-928b-0b96b66cf862", "status": "Succeeded", - "startTime": "2022-09-20T11:06:22.267494Z", - "endTime": "2022-09-20T11:10:25.9941545Z", + "startTime": "2022-10-25T12:28:49.7405317Z", + "endTime": "2022-10-25T12:33:32.76693Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" @@ -1509,7 +1666,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1674,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:10:26 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T11%3A10%3A25.9972481Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:33:54 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A33%3A32.7599665Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1683,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "910ca443-5c64-4513-bc3f-03e38c8fe9e3", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111026Z:910ca443-5c64-4513-bc3f-03e38c8fe9e3", + "x-ms-correlation-request-id": "6725a900-273c-4fed-b137-312fd7c8b2c3", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123354Z:6725a900-273c-4fed-b137-312fd7c8b2c3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A10%3A25.9972481Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A33%3A32.7599665Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:06:20.0708122Z" + "CreatedOnDate": "2022-10-25T12:28:48.4491679Z" }, "properties": { - "fileSystemId": "95652378-ce3f-245f-2b40-8de24435fdd5", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-503c258e", "usageThreshold": 107374182400, @@ -1569,7 +1726,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_17161d8e", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_04c484a5", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1741,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "95652378-ce3f-245f-2b40-8de24435fdd5", - "fileSystemId": "95652378-ce3f-245f-2b40-8de24435fdd5", + "mountTargetId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1762,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T11:06:21.2196176Z", + "createdAt": "2022-10-25T12:28:49.4406164Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T11:06:21.2196176Z" + "lastModifiedAt": "2022-10-25T12:28:49.4406164Z" } } }, @@ -1619,7 +1776,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1627,8 +1784,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:10:36 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T11%3A10%3A25.9972481Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:34:04 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A33%3A32.7599665Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1636,22 +1793,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3387969-7170-4ef6-9583-4f5b94ed6a68", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111037Z:c3387969-7170-4ef6-9583-4f5b94ed6a68", + "x-ms-correlation-request-id": "e62a9dfe-aa6e-40ca-a178-0dd28a3cfaeb", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123405Z:e62a9dfe-aa6e-40ca-a178-0dd28a3cfaeb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A10%3A25.9972481Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A33%3A32.7599665Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:06:20.0708122Z" + "CreatedOnDate": "2022-10-25T12:28:48.4491679Z" }, "properties": { - "fileSystemId": "95652378-ce3f-245f-2b40-8de24435fdd5", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-503c258e", "usageThreshold": 107374182400, @@ -1679,7 +1836,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_17161d8e", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_04c484a5", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1694,8 +1851,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "95652378-ce3f-245f-2b40-8de24435fdd5", - "fileSystemId": "95652378-ce3f-245f-2b40-8de24435fdd5", + "mountTargetId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", "ipAddress": "10.0.0.4" } ], @@ -1715,10 +1872,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T11:06:21.2196176Z", + "createdAt": "2022-10-25T12:28:49.4406164Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T11:06:21.2196176Z" + "lastModifiedAt": "2022-10-25T12:28:49.4406164Z" } } }, @@ -1729,7 +1886,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1737,7 +1894,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:10:37 GMT", + "Date": "Tue, 25 Oct 2022 12:34:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1745,9 +1902,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d4a9015-5e2a-4f29-a7da-bd33d76b4092", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111037Z:7d4a9015-5e2a-4f29-a7da-bd33d76b4092", + "x-ms-correlation-request-id": "fd1f8dcd-b63a-4352-a5ec-ce2ab7607dbd", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123405Z:fd1f8dcd-b63a-4352-a5ec-ce2ab7607dbd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1770,7 +1927,7 @@ "Connection": "keep-alive", "Content-Length": "412", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1789,35 +1946,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94063922-28a1-40b5-8e96-40b5f2a52fee?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27bf4d28-df3b-4357-a723-69b0d0bf8da9?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "2480", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:10:37 GMT", - "ETag": "W/\u0022datetime\u00272022-09-20T11%3A10%3A38.2859096Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:34:06 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A34%3A06.3038568Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94063922-28a1-40b5-8e96-40b5f2a52fee?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27bf4d28-df3b-4357-a723-69b0d0bf8da9?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "219c83eb-8270-4128-b329-1a013985396e", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111038Z:219c83eb-8270-4128-b329-1a013985396e", + "x-ms-correlation-request-id": "d7c42fbc-a986-4791-8828-67c752d04dec", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123406Z:d7c42fbc-a986-4791-8828-67c752d04dec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A10%3A38.2859096Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A34%3A06.3038568Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:06:20.0708122Z" + "CreatedOnDate": "2022-10-25T12:28:48.4491679Z" }, "properties": { "provisioningState": "Patching", - "fileSystemId": "95652378-ce3f-245f-2b40-8de24435fdd5", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-503c258e", "usageThreshold": 107374182400, @@ -1845,7 +2002,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_17161d8e", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_04c484a5", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1860,8 +2017,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "95652378-ce3f-245f-2b40-8de24435fdd5", - "fileSystemId": "95652378-ce3f-245f-2b40-8de24435fdd5", + "mountTargetId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", "ipAddress": "10.0.0.4" } ], @@ -1880,21 +2037,61 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T11:06:21.2196176Z", + "createdAt": "2022-10-25T12:28:49.4406164Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T11:06:21.2196176Z" + "lastModifiedAt": "2022-10-25T12:28:49.4406164Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27bf4d28-df3b-4357-a723-69b0d0bf8da9?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:34:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ec08b30c-f1f1-40cd-8aa0-6471dc141940", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123406Z:ec08b30c-f1f1-40cd-8aa0-6471dc141940", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27bf4d28-df3b-4357-a723-69b0d0bf8da9", + "name": "27bf4d28-df3b-4357-a723-69b0d0bf8da9", + "status": "Patching", + "startTime": "2022-10-25T12:34:06.3138093Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94063922-28a1-40b5-8e96-40b5f2a52fee?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27bf4d28-df3b-4357-a723-69b0d0bf8da9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1902,7 +2099,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:11:08 GMT", + "Date": "Tue, 25 Oct 2022 12:34:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1910,17 +2107,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d695abe4-d0b9-44a8-92e0-0632f47d0012", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111108Z:d695abe4-d0b9-44a8-92e0-0632f47d0012", + "x-ms-correlation-request-id": "814b06a6-d92e-45b2-87e7-3665002af17a", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123436Z:814b06a6-d92e-45b2-87e7-3665002af17a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94063922-28a1-40b5-8e96-40b5f2a52fee", - "name": "94063922-28a1-40b5-8e96-40b5f2a52fee", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27bf4d28-df3b-4357-a723-69b0d0bf8da9", + "name": "27bf4d28-df3b-4357-a723-69b0d0bf8da9", "status": "Succeeded", - "startTime": "2022-09-20T11:10:38.2874213Z", - "endTime": "2022-09-20T11:10:41.3343303Z", + "startTime": "2022-10-25T12:34:06.3138093Z", + "endTime": "2022-10-25T12:34:09.8165008Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" @@ -1928,13 +2125,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94063922-28a1-40b5-8e96-40b5f2a52fee?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27bf4d28-df3b-4357-a723-69b0d0bf8da9?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1942,7 +2139,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:11:08 GMT", + "Date": "Tue, 25 Oct 2022 12:34:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1950,19 +2147,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c98bef11-4572-4914-8ad7-b48bc4c9916a", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111108Z:c98bef11-4572-4914-8ad7-b48bc4c9916a", + "x-ms-correlation-request-id": "0ff0c1e4-5efe-4bf4-8b51-f33a98675d64", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123437Z:0ff0c1e4-5efe-4bf4-8b51-f33a98675d64", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-20T11%3A10%3A41.3260945Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A34%3A09.8148556Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-20T11:10:37.8405704Z" + "CreatedOnDate": "2022-10-25T12:34:05.8971967Z" }, "properties": { "dataProtection": { @@ -1972,7 +2169,7 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault" } }, - "fileSystemId": "95652378-ce3f-245f-2b40-8de24435fdd5", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-503c258e", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2003,19 +2200,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_17161d8e", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_04c484a5", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", - "poolId": "9bcc381e-6f67-20c6-cee6-aad8eb309eaa", + "poolId": "defedbd0-6f62-0dfe-003f-04d6d2126b2e", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "95652378-ce3f-245f-2b40-8de24435fdd5", - "fileSystemId": "95652378-ce3f-245f-2b40-8de24435fdd5", + "mountTargetId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", "startIp": "", "endIp": "", "gateway": "", @@ -2047,10 +2244,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-20T11:06:21.2196176Z", + "createdAt": "2022-10-25T12:28:49.4406164Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-20T11:10:38.1560009Z" + "lastModifiedAt": "2022-10-25T12:34:06.1569925Z" } } }, @@ -2063,7 +2260,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -2073,20 +2270,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edfe2b77-5442-4132-b192-27ff03b92aac?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f762497d-3afa-49ad-a248-805d18e55b0b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:11:08 GMT", + "Date": "Tue, 25 Oct 2022 12:34:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edfe2b77-5442-4132-b192-27ff03b92aac?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f762497d-3afa-49ad-a248-805d18e55b0b?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35e1abd8-3ca2-4487-837d-0535501bc6d2", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111109Z:35e1abd8-3ca2-4487-837d-0535501bc6d2", + "x-ms-correlation-request-id": "c5e96d74-d570-4a49-b77e-bb63d1d79de3", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123437Z:c5e96d74-d570-4a49-b77e-bb63d1d79de3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2101,13 +2298,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edfe2b77-5442-4132-b192-27ff03b92aac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f762497d-3afa-49ad-a248-805d18e55b0b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2115,7 +2312,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:11:38 GMT", + "Date": "Tue, 25 Oct 2022 12:34:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2123,109 +2320,104 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1417020b-fcc1-497b-a0d1-f54695468272", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111139Z:1417020b-fcc1-497b-a0d1-f54695468272", + "x-ms-correlation-request-id": "ea6c565c-9632-4e0a-93f5-897a961f6870", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123437Z:ea6c565c-9632-4e0a-93f5-897a961f6870", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edfe2b77-5442-4132-b192-27ff03b92aac", - "name": "edfe2b77-5442-4132-b192-27ff03b92aac", - "status": "Succeeded", - "startTime": "2022-09-20T11:11:09.3006488Z", - "endTime": "2022-09-20T11:11:10.3637618Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f762497d-3afa-49ad-a248-805d18e55b0b", + "name": "f762497d-3afa-49ad-a248-805d18e55b0b", + "status": "Creating", + "startTime": "2022-10-25T12:34:37.5710913Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edfe2b77-5442-4132-b192-27ff03b92aac?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f762497d-3afa-49ad-a248-805d18e55b0b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "780", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:11:39 GMT", + "Date": "Tue, 25 Oct 2022 12:35:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e2408e8-434f-403a-ae3e-4d810bf39e7c", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111139Z:5e2408e8-434f-403a-ae3e-4d810bf39e7c", + "x-ms-correlation-request-id": "fa484d34-d66b-43bc-b170-872ddb3e94e2", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123508Z:fa484d34-d66b-43bc-b170-872ddb3e94e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/20/2022 11:11:10 AM", - "location": "", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f762497d-3afa-49ad-a248-805d18e55b0b", + "name": "f762497d-3afa-49ad-a248-805d18e55b0b", + "status": "Succeeded", + "startTime": "2022-10-25T12:34:37.5710913Z", + "endTime": "2022-10-25T12:34:39.305618Z", + "percentComplete": 100.0, "properties": { - "fileSystemId": "95652378-ce3f-245f-2b40-8de24435fdd5", - "creationDate": "0001-01-01T00:00:00Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "failureReason": "None", - "useExistingSnapshot": false, - "provisioningState": "Creating" + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f762497d-3afa-49ad-a248-805d18e55b0b?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "781", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:11:50 GMT", + "Date": "Tue, 25 Oct 2022 12:35:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bfb66212-6f5f-4bb5-a80b-c9a13494d3ad", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111150Z:bfb66212-6f5f-4bb5-a80b-c9a13494d3ad", + "x-ms-correlation-request-id": "ec60e398-b83c-4add-8059-39d5770173d1", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123508Z:ec60e398-b83c-4add-8059-39d5770173d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "etag": "10/25/2022 12:34:39 PM", + "location": "", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "creationDate": "0001-01-01T00:00:00Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "failureReason": "None", + "useExistingSnapshot": false, + "provisioningState": "Creating" } } }, @@ -2236,7 +2428,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2244,7 +2436,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:12:04 GMT", + "Date": "Tue, 25 Oct 2022 12:35:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2252,9 +2444,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3c0af7d-d298-4224-9911-1e2c5bbf7568", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111204Z:e3c0af7d-d298-4224-9911-1e2c5bbf7568", + "x-ms-correlation-request-id": "77a621cf-a133-406e-b530-25ba9e3eda65", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123518Z:77a621cf-a133-406e-b530-25ba9e3eda65", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2263,12 +2455,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2281,7 +2473,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2289,7 +2481,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:12:14 GMT", + "Date": "Tue, 25 Oct 2022 12:35:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2297,9 +2489,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21b44639-53d8-4cf9-ae0f-6212adfeb736", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111214Z:21b44639-53d8-4cf9-ae0f-6212adfeb736", + "x-ms-correlation-request-id": "5d185a3e-8a1e-4725-9266-0fd7ea9cc4a4", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123531Z:5d185a3e-8a1e-4725-9266-0fd7ea9cc4a4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2308,12 +2500,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2326,7 +2518,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2334,7 +2526,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:12:25 GMT", + "Date": "Tue, 25 Oct 2022 12:35:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2342,9 +2534,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "794e79fb-85e0-4214-8925-2ed9baed172f", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111226Z:794e79fb-85e0-4214-8925-2ed9baed172f", + "x-ms-correlation-request-id": "7f281338-ada3-435a-a55a-d22f93797a49", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123541Z:7f281338-ada3-435a-a55a-d22f93797a49", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2353,12 +2545,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2371,7 +2563,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2379,7 +2571,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:12:36 GMT", + "Date": "Tue, 25 Oct 2022 12:35:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2387,9 +2579,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a44bae9d-4f71-48f7-a316-5d12bbd7b8d4", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111236Z:a44bae9d-4f71-48f7-a316-5d12bbd7b8d4", + "x-ms-correlation-request-id": "3400ed2d-afb3-4800-a800-67ff5fa9d212", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123552Z:3400ed2d-afb3-4800-a800-67ff5fa9d212", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2398,12 +2590,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2416,7 +2608,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2424,7 +2616,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:12:46 GMT", + "Date": "Tue, 25 Oct 2022 12:36:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2432,9 +2624,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ab3947e-8d90-4a21-89c0-a860ed7c581d", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111246Z:0ab3947e-8d90-4a21-89c0-a860ed7c581d", + "x-ms-correlation-request-id": "93b7078c-555f-4d6b-80c2-a588727a30ad", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123603Z:93b7078c-555f-4d6b-80c2-a588727a30ad", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2443,12 +2635,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2461,7 +2653,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2469,7 +2661,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:12:57 GMT", + "Date": "Tue, 25 Oct 2022 12:36:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2477,9 +2669,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a01206c7-1eef-452b-86b4-ce880676cbc7", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111258Z:a01206c7-1eef-452b-86b4-ce880676cbc7", + "x-ms-correlation-request-id": "d83611e3-d36c-4a47-9be4-dd13e20722e1", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123613Z:d83611e3-d36c-4a47-9be4-dd13e20722e1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2488,12 +2680,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2506,7 +2698,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2514,7 +2706,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:13:08 GMT", + "Date": "Tue, 25 Oct 2022 12:36:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2522,9 +2714,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97cde473-e992-489f-a32f-3854084ce793", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111308Z:97cde473-e992-489f-a32f-3854084ce793", + "x-ms-correlation-request-id": "635c8eeb-e61a-4a2e-84f9-83a7f0d8f721", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123624Z:635c8eeb-e61a-4a2e-84f9-83a7f0d8f721", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2533,12 +2725,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2551,7 +2743,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2559,7 +2751,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:13:21 GMT", + "Date": "Tue, 25 Oct 2022 12:36:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2567,9 +2759,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1cabdba-9634-49b9-977b-26a7864d8afb", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111321Z:f1cabdba-9634-49b9-977b-26a7864d8afb", + "x-ms-correlation-request-id": "1d324855-fae1-4abf-be87-1418ec22d1b5", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123635Z:1d324855-fae1-4abf-be87-1418ec22d1b5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2578,12 +2770,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2596,7 +2788,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2604,7 +2796,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:13:32 GMT", + "Date": "Tue, 25 Oct 2022 12:36:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2612,9 +2804,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b32b069-de28-4bcd-b9c3-8756fec7e0a1", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111333Z:8b32b069-de28-4bcd-b9c3-8756fec7e0a1", + "x-ms-correlation-request-id": "42a76f8c-2600-422f-8b80-17e17ad01e17", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123646Z:42a76f8c-2600-422f-8b80-17e17ad01e17", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2623,12 +2815,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2641,7 +2833,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2649,7 +2841,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:13:43 GMT", + "Date": "Tue, 25 Oct 2022 12:36:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2657,9 +2849,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2273be7a-b7ea-46b1-aa9c-c32dbb4e8912", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111343Z:2273be7a-b7ea-46b1-aa9c-c32dbb4e8912", + "x-ms-correlation-request-id": "33bd0790-d52e-4479-b7cb-db69e6971054", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123657Z:33bd0790-d52e-4479-b7cb-db69e6971054", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2668,12 +2860,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2686,7 +2878,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2694,7 +2886,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:13:53 GMT", + "Date": "Tue, 25 Oct 2022 12:37:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2702,9 +2894,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5d29929-04e5-485f-84e8-d3ff62a8179a", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111353Z:e5d29929-04e5-485f-84e8-d3ff62a8179a", + "x-ms-correlation-request-id": "03baf81f-741e-4210-84c7-9e941089969f", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123707Z:03baf81f-741e-4210-84c7-9e941089969f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2713,12 +2905,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2731,7 +2923,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2739,7 +2931,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:14:05 GMT", + "Date": "Tue, 25 Oct 2022 12:37:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2747,9 +2939,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0097fd9-bea5-40bd-ae4e-7c699d087049", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111405Z:b0097fd9-bea5-40bd-ae4e-7c699d087049", + "x-ms-correlation-request-id": "34592eae-7f2b-4c43-a6a9-6b3219d96f82", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123718Z:34592eae-7f2b-4c43-a6a9-6b3219d96f82", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2758,12 +2950,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2776,7 +2968,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2784,7 +2976,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:14:16 GMT", + "Date": "Tue, 25 Oct 2022 12:37:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2792,9 +2984,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d40df1e0-86b5-45ac-afc4-f12bf22521f7", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111417Z:d40df1e0-86b5-45ac-afc4-f12bf22521f7", + "x-ms-correlation-request-id": "2df614db-b4c2-4dde-8f94-9aa988538b0a", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123728Z:2df614db-b4c2-4dde-8f94-9aa988538b0a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2803,12 +2995,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2821,7 +3013,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2829,7 +3021,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:14:28 GMT", + "Date": "Tue, 25 Oct 2022 12:37:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2837,9 +3029,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88e9682f-7f08-43ac-8474-b47001e8d70a", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111428Z:88e9682f-7f08-43ac-8474-b47001e8d70a", + "x-ms-correlation-request-id": "fe2564ab-5fa8-4084-8aa4-c32bf5b2c9f7", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123740Z:fe2564ab-5fa8-4084-8aa4-c32bf5b2c9f7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2848,12 +3040,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2866,7 +3058,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2874,7 +3066,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:14:39 GMT", + "Date": "Tue, 25 Oct 2022 12:37:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2882,9 +3074,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d676962b-c889-49d0-86f7-b46e482d4044", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111440Z:d676962b-c889-49d0-86f7-b46e482d4044", + "x-ms-correlation-request-id": "dc3b0e71-c325-4e98-b8ad-d4c84be7549d", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123751Z:dc3b0e71-c325-4e98-b8ad-d4c84be7549d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2893,12 +3085,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2911,7 +3103,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2919,7 +3111,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:14:49 GMT", + "Date": "Tue, 25 Oct 2022 12:38:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2927,9 +3119,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21a2099f-699b-4542-ad07-d4ccd791f653", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111450Z:21a2099f-699b-4542-ad07-d4ccd791f653", + "x-ms-correlation-request-id": "63940a66-b5a4-445d-b43f-dd394d95d8e1", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123801Z:63940a66-b5a4-445d-b43f-dd394d95d8e1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2938,12 +3130,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -2956,7 +3148,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2964,7 +3156,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:15:01 GMT", + "Date": "Tue, 25 Oct 2022 12:38:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2972,9 +3164,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4faf3f71-7149-4f7d-99fc-a2aedc1d2e19", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111501Z:4faf3f71-7149-4f7d-99fc-a2aedc1d2e19", + "x-ms-correlation-request-id": "5a65b62f-04c8-44a2-bd7a-0bf701855146", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123812Z:5a65b62f-04c8-44a2-bd7a-0bf701855146", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2983,12 +3175,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -3001,7 +3193,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3009,7 +3201,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:15:11 GMT", + "Date": "Tue, 25 Oct 2022 12:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3017,9 +3209,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16ea092c-eb8a-4a36-b19c-19627c465e07", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111511Z:16ea092c-eb8a-4a36-b19c-19627c465e07", + "x-ms-correlation-request-id": "68b52a3e-40f8-4c6e-ad55-14b33dd0aa5b", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123823Z:68b52a3e-40f8-4c6e-ad55-14b33dd0aa5b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3028,12 +3220,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -3046,7 +3238,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3054,7 +3246,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:15:22 GMT", + "Date": "Tue, 25 Oct 2022 12:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3062,9 +3254,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc9aa95e-28cf-4db0-9758-c4e6eba76b3d", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111522Z:dc9aa95e-28cf-4db0-9758-c4e6eba76b3d", + "x-ms-correlation-request-id": "bfae9408-94ee-4ee5-884f-947e00940c32", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123834Z:bfae9408-94ee-4ee5-884f-947e00940c32", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3073,12 +3265,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -3091,7 +3283,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3099,7 +3291,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:15:32 GMT", + "Date": "Tue, 25 Oct 2022 12:38:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3107,9 +3299,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74c890cb-ab80-49c2-ae0f-2343424c8ed2", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111533Z:74c890cb-ab80-49c2-ae0f-2343424c8ed2", + "x-ms-correlation-request-id": "8a45cc3c-ebe2-4ef4-b6ec-4b9672c9eed5", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123846Z:8a45cc3c-ebe2-4ef4-b6ec-4b9672c9eed5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3118,12 +3310,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -3136,7 +3328,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3144,7 +3336,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:15:44 GMT", + "Date": "Tue, 25 Oct 2022 12:38:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3152,9 +3344,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8123a001-0d8c-4b47-a837-186456651afb", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111544Z:8123a001-0d8c-4b47-a837-186456651afb", + "x-ms-correlation-request-id": "665da13c-e734-48f9-a1ec-9f58af4df53e", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123856Z:665da13c-e734-48f9-a1ec-9f58af4df53e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3163,12 +3355,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -3181,7 +3373,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3189,7 +3381,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:15:55 GMT", + "Date": "Tue, 25 Oct 2022 12:39:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3197,9 +3389,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f59f332-8c95-4a13-b8f0-21b2d342a991", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111555Z:5f59f332-8c95-4a13-b8f0-21b2d342a991", + "x-ms-correlation-request-id": "bd2825d7-cc6d-457c-9a9a-3fb39cdd4aa5", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123909Z:bd2825d7-cc6d-457c-9a9a-3fb39cdd4aa5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3208,12 +3400,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -3226,7 +3418,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3234,7 +3426,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:16:05 GMT", + "Date": "Tue, 25 Oct 2022 12:39:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3242,9 +3434,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ca403cd-990d-445c-afef-834e93a1e988", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111605Z:3ca403cd-990d-445c-afef-834e93a1e988", + "x-ms-correlation-request-id": "b3ff690d-7d7e-4578-a7ef-bde33ab6bbe0", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123919Z:b3ff690d-7d7e-4578-a7ef-bde33ab6bbe0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3253,12 +3445,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", + "creationDate": "2022-10-25T12:34:38Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } @@ -3271,7 +3463,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3279,7 +3471,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:16:15 GMT", + "Date": "Tue, 25 Oct 2022 12:39:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3287,9 +3479,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e632b25a-ad93-4847-b9d1-34f6f0fca903", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111616Z:e632b25a-ad93-4847-b9d1-34f6f0fca903", + "x-ms-correlation-request-id": "4d5b89d8-a445-49b6-9e35-63223dca5f36", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T123930Z:4d5b89d8-a445-49b6-9e35-63223dca5f36", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3298,25 +3490,25 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, + "creationDate": "2022-10-25T12:34:53Z", + "backupId": "e2e003f2-d6b1-f08b-c164-1958b4d6c32b", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-503c258e", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backupStatus?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3324,7 +3516,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:16:26 GMT", + "Date": "Tue, 25 Oct 2022 12:41:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3332,36 +3524,550 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56d74c30-ef6b-4fce-b2c9-324338ddd2fd", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111626Z:56d74c30-ef6b-4fce-b2c9-324338ddd2fd", + "x-ms-correlation-request-id": "ae80dbb8-52c2-4f80-bd68-e3eb8ab181f6", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124136Z:ae80dbb8-52c2-4f80-bd68-e3eb8ab181f6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Mirrored", + "totalTransferBytes": 271298, + "lastTransferSize": 271298, + "lastTransferType": "initialize" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:41:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f28e6ee1-b957-4a32-87aa-105ab1978ffb", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124137Z:f28e6ee1-b957-4a32-87aa-105ab1978ffb", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault", + "name": "sdk-py-tests-acc-1-503c258e/cbsvault", + "type": "Microsoft.NetApp/netAppAccounts/vaults", + "properties": {} + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e?api-version=2022-05-01", + "RequestMethod": "PATCH", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "413", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": { + "properties": { + "serviceLevel": "Premium", + "usageThreshold": 107374182400, + "dataProtection": { + "backup": { + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault", + "backupEnabled": false + } + }, + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0 + } + }, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/701a35f5-1290-47d3-81f6-5b4385e2d883?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Length": "2743", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:41:38 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A41%3A39.1104732Z\u0027\u0022", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/701a35f5-1290-47d3-81f6-5b4385e2d883?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0a0cd37f-2142-4ffc-814b-b6f98de76ed3", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124139Z:0a0cd37f-2142-4ffc-814b-b6f98de76ed3", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", + "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A41%3A39.1104732Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T12:34:05.8971967Z" + }, + "properties": { + "dataProtection": { + "backup": { + "backupEnabled": true, + "policyEnforced": false, + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault" + } + }, + "provisioningState": "Patching", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-503c258e", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_04c484a5", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T12:28:49.4406164Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T12:34:06.1569925Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/701a35f5-1290-47d3-81f6-5b4385e2d883?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:41:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "475c1df3-9bda-42ee-9e18-2975991a7c47", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124139Z:475c1df3-9bda-42ee-9e18-2975991a7c47", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/701a35f5-1290-47d3-81f6-5b4385e2d883", + "name": "701a35f5-1290-47d3-81f6-5b4385e2d883", + "status": "Patching", + "startTime": "2022-10-25T12:41:39.1047497Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/701a35f5-1290-47d3-81f6-5b4385e2d883?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:42:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b8210e28-0931-4590-b6ff-d62695c23ccb", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124209Z:b8210e28-0931-4590-b6ff-d62695c23ccb", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/701a35f5-1290-47d3-81f6-5b4385e2d883", + "name": "701a35f5-1290-47d3-81f6-5b4385e2d883", + "status": "Succeeded", + "startTime": "2022-10-25T12:41:39.1047497Z", + "endTime": "2022-10-25T12:41:45.1633813Z", + "percentComplete": 100.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/701a35f5-1290-47d3-81f6-5b4385e2d883?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:42:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a2e9b427-3685-45e4-947b-d8d5539940f9", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124210Z:a2e9b427-3685-45e4-947b-d8d5539940f9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", + "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A41%3A45.1690127Z\u0027\u0022", "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T12:34:05.8971967Z" + }, + "properties": { + "dataProtection": { + "backup": { + "backupEnabled": false, + "policyEnforced": false, + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault" + } + }, + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-503c258e", + "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", + "usageThreshold": 107374182400, + "usedBytes": 0, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv4": false, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_04c484a5", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", + "poolId": "defedbd0-6f62-0dfe-003f-04d6d2126b2e", + "mountTargets": [ + { + "provisioningState": "", + "mountTargetId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "startIp": "", + "endIp": "", + "gateway": "", + "netmask": "", + "subnet": "", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "encryptionKeySource": "Microsoft.NetApp", + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "encrypted": true, + "smbAccessBasedEnumeration": "Disabled", + "smbNonBrowsable": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T12:28:49.4406164Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T12:41:38.9737534Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "77", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:42:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "83ff3925-51ab-47de-842d-211c771345dd", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124212Z:83ff3925-51ab-47de-842d-211c771345dd", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "NotFound", + "message": "The requested Backup was not found." + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e?api-version=2022-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 12:42:12 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4f57a049-81de-46b4-9c5d-b61eac1c7db2", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124213Z:4f57a049-81de-46b4-9c5d-b61eac1c7db2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:42:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2f25d261-b007-432e-ae0a-506662b14973", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124213Z:2f25d261-b007-432e-ae0a-506662b14973", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0", + "name": "2f540694-5f0d-47ee-a4c2-9833fb025ce0", + "status": "Deleting", + "startTime": "2022-10-25T12:42:13.083619Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:42:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "728335f0-0955-413e-8803-5287857edcdb", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124243Z:728335f0-0955-413e-8803-5287857edcdb", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0", + "name": "2f540694-5f0d-47ee-a4c2-9833fb025ce0", + "status": "Deleting", + "startTime": "2022-10-25T12:42:13.083619Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3369,7 +4075,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:16:36 GMT", + "Date": "Tue, 25 Oct 2022 12:43:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3377,36 +4083,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1a9ad99-776e-467e-9808-e79ab03b1716", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111637Z:e1a9ad99-776e-467e-9808-e79ab03b1716", + "x-ms-correlation-request-id": "1b4b900e-207a-412c-be0d-fb461569325e", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124314Z:1b4b900e-207a-412c-be0d-fb461569325e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0", + "name": "2f540694-5f0d-47ee-a4c2-9833fb025ce0", + "status": "Deleting", + "startTime": "2022-10-25T12:42:13.083619Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3414,7 +4115,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:16:47 GMT", + "Date": "Tue, 25 Oct 2022 12:43:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3422,36 +4123,259 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3096477a-9043-4716-8bd9-f516a082351f", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111647Z:3096477a-9043-4716-8bd9-f516a082351f", + "x-ms-correlation-request-id": "d0fc07b5-fbc2-4fcd-9e34-e800ec9d024a", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124344Z:d0fc07b5-fbc2-4fcd-9e34-e800ec9d024a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0", + "name": "2f540694-5f0d-47ee-a4c2-9833fb025ce0", + "status": "Deleting", + "startTime": "2022-10-25T12:42:13.083619Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:44:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9d324450-471a-4ae8-bbf4-0ac62345a2d0", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124414Z:9d324450-471a-4ae8-bbf4-0ac62345a2d0", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0", + "name": "2f540694-5f0d-47ee-a4c2-9833fb025ce0", + "status": "Succeeded", + "startTime": "2022-10-25T12:42:13.083619Z", + "endTime": "2022-10-25T12:44:08.1730489Z", + "percentComplete": 100.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f540694-5f0d-47ee-a4c2-9833fb025ce0?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:44:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c20b916d-c731-4e4e-98d3-9c0c07720010", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124414Z:c20b916d-c731-4e4e-98d3-9c0c07720010", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", + "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A44%3A03.090237Z\u0027\u0022", "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T12:34:05.8971967Z" + }, "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "dataProtection": { + "backup": { + "backupEnabled": false, + "policyEnforced": false, + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/vaults/cbsvault" + } + }, + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-503c258e", + "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", + "usageThreshold": 107374182400, + "usedBytes": 0, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv4": false, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_04c484a5", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e", + "poolId": "defedbd0-6f62-0dfe-003f-04d6d2126b2e", + "mountTargets": [ + { + "provisioningState": "", + "mountTargetId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "fileSystemId": "3e118417-9be6-0ae1-86f5-439b09b01059", + "startIp": "", + "endIp": "", + "gateway": "", + "netmask": "", + "subnet": "", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "encryptionKeySource": "Microsoft.NetApp", + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "encrypted": true, + "smbAccessBasedEnumeration": "Disabled", + "smbNonBrowsable": "Disabled", + "provisioningState": "Deleting" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T12:28:49.4406164Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T12:41:38.9737534Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "324", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:47:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e73bd5b6-5199-473a-94d5-908f27ba09bb", + "x-ms-failure-cause": "gateway", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124739Z:e73bd5b6-5199-473a-94d5-908f27ba09bb" + }, + "ResponseBody": { + "error": { + "code": "ResourceNotFound", + "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/859e39b8-e31c-41c2-bbff-811d62884915?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 12:47:51 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/859e39b8-e31c-41c2-bbff-811d62884915?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c8b62a65-00e7-49d5-b67b-1d54ff1861a7", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124751Z:c8b62a65-00e7-49d5-b67b-1d54ff1861a7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/859e39b8-e31c-41c2-bbff-811d62884915?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3459,7 +4383,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:16:58 GMT", + "Date": "Tue, 25 Oct 2022 12:47:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3467,36 +4391,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a65b9884-d675-42b7-ad9e-4007d099813b", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111658Z:a65b9884-d675-42b7-ad9e-4007d099813b", + "x-ms-correlation-request-id": "e07964df-76c9-466e-ae33-beaf82332db8", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124752Z:e07964df-76c9-466e-ae33-beaf82332db8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/859e39b8-e31c-41c2-bbff-811d62884915", + "name": "859e39b8-e31c-41c2-bbff-811d62884915", + "status": "Deleting", + "startTime": "2022-10-25T12:47:51.6630106Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/859e39b8-e31c-41c2-bbff-811d62884915?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3504,7 +4423,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:17:09 GMT", + "Date": "Tue, 25 Oct 2022 12:48:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3512,36 +4431,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9446746e-665b-4bed-9d04-d0472e109850", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111710Z:9446746e-665b-4bed-9d04-d0472e109850", + "x-ms-correlation-request-id": "cd5f2902-9d06-44bc-ba90-8a87c560f656", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124822Z:cd5f2902-9d06-44bc-ba90-8a87c560f656", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/859e39b8-e31c-41c2-bbff-811d62884915", + "name": "859e39b8-e31c-41c2-bbff-811d62884915", + "status": "Succeeded", + "startTime": "2022-10-25T12:47:51.6630106Z", + "endTime": "2022-10-25T12:47:52.4473679Z", + "percentComplete": 100.0, "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/859e39b8-e31c-41c2-bbff-811d62884915?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3549,7 +4463,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:17:20 GMT", + "Date": "Tue, 25 Oct 2022 12:48:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3557,306 +4471,211 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d913906-90e9-49b0-b0a4-72ce3bef2d91", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111721Z:7d913906-90e9-49b0-b0a4-72ce3bef2d91", + "x-ms-correlation-request-id": "557c217f-156c-48dd-a6d0-595eebfcae36", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124822Z:557c217f-156c-48dd-a6d0-595eebfcae36", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1", + "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A47%3A51.6158987Z\u0027\u0022", "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T12:28:35.2453973Z" + }, "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "poolId": "defedbd0-6f62-0dfe-003f-04d6d2126b2e", + "serviceLevel": "Premium", + "size": 4398046511104, + "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1", + "qosType": "Auto", + "totalThroughputMibps": 256.0, + "utilizedThroughputMibps": 0.0, + "encryptionType": "Single", + "coolAccess": false, + "provisioningState": "Deleting" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T12:28:36.2607164Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T12:28:36.2607164Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:17:31 GMT", + "Date": "Tue, 25 Oct 2022 12:48:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c891851-085b-4180-9e45-5ac6a59e912a", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111731Z:5c891851-085b-4180-9e45-5ac6a59e912a", - "X-Powered-By": "ASP.NET" + "x-ms-correlation-request-id": "46586921-612e-47a9-b003-b713aebaddf1", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124832Z:46586921-612e-47a9-b003-b713aebaddf1" }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false - } - } + "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:17:41 GMT", + "Date": "Tue, 25 Oct 2022 12:48:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba3d2aea-9f84-4021-8014-e968259f821d", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111742Z:ba3d2aea-9f84-4021-8014-e968259f821d", - "X-Powered-By": "ASP.NET" + "x-ms-correlation-request-id": "a6125167-982b-47b8-bf08-144bfc3ceacc", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124843Z:a6125167-982b-47b8-bf08-144bfc3ceacc" }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false - } - } + "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:17:53 GMT", + "Date": "Tue, 25 Oct 2022 12:48:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "720d49ea-923e-4951-a1f7-ddca2fc2a966", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111753Z:720d49ea-923e-4951-a1f7-ddca2fc2a966", - "X-Powered-By": "ASP.NET" + "x-ms-correlation-request-id": "16f9ad9a-7d46-4ba0-8bae-6f1549b00536", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124853Z:16f9ad9a-7d46-4ba0-8bae-6f1549b00536" }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false - } - } + "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:18:04 GMT", + "Date": "Tue, 25 Oct 2022 12:49:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "030804e0-fdb2-480e-bff7-2997cc04035f", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111804Z:030804e0-fdb2-480e-bff7-2997cc04035f", - "X-Powered-By": "ASP.NET" + "x-ms-correlation-request-id": "2d1aafa9-f299-422c-b8e8-baca3f18ce3f", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124903Z:2d1aafa9-f299-422c-b8e8-baca3f18ce3f" }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false - } - } + "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:18:15 GMT", + "Date": "Tue, 25 Oct 2022 12:49:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c18fc9ca-79dd-4a1b-8f96-0263e9e83312", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111816Z:c18fc9ca-79dd-4a1b-8f96-0263e9e83312", - "X-Powered-By": "ASP.NET" + "x-ms-correlation-request-id": "c2946867-cec8-4506-b757-d317e7af801c", + "x-ms-failure-cause": "gateway", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124914Z:c2946867-cec8-4506-b757-d317e7af801c" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "error": { + "code": "ResourceNotFound", + "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e?api-version=2022-05-01", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0176cd87-b83c-4e6a-b6cc-1d755dc08cf6?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:18:26 GMT", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 12:49:15 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0176cd87-b83c-4e6a-b6cc-1d755dc08cf6?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1e548c2-4c20-442a-a4f9-6c35b16e731e", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111826Z:d1e548c2-4c20-442a-a4f9-6c35b16e731e", + "x-ms-correlation-request-id": "5f776574-1543-407c-884b-5e2b63886b03", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124915Z:5f776574-1543-407c-884b-5e2b63886b03", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false - } - } + "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0176cd87-b83c-4e6a-b6cc-1d755dc08cf6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3864,7 +4683,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:18:36 GMT", + "Date": "Tue, 25 Oct 2022 12:49:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3872,36 +4691,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74fc04bd-3091-4cb4-aeb6-42ebafb843a3", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111837Z:74fc04bd-3091-4cb4-aeb6-42ebafb843a3", + "x-ms-correlation-request-id": "59e61c47-0800-453d-87ae-ff942a53532f", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124915Z:59e61c47-0800-453d-87ae-ff942a53532f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0176cd87-b83c-4e6a-b6cc-1d755dc08cf6", + "name": "0176cd87-b83c-4e6a-b6cc-1d755dc08cf6", + "status": "Succeeded", + "startTime": "2022-10-25T12:49:15.4139566Z", + "endTime": "2022-10-25T12:49:15.4921473Z", + "percentComplete": 100.0, "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0176cd87-b83c-4e6a-b6cc-1d755dc08cf6?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3909,7 +4723,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:18:47 GMT", + "Date": "Tue, 25 Oct 2022 12:49:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3917,109 +4731,103 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e58ceead-61f5-4ea6-a0e3-528e6ac91c69", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111847Z:e58ceead-61f5-4ea6-a0e3-528e6ac91c69", + "x-ms-correlation-request-id": "7a2c71a6-a6b4-488a-ad13-afc1715c3d7f", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124916Z:7a2c71a6-a6b4-488a-ad13-afc1715c3d7f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e", + "name": "sdk-py-tests-acc-1-503c258e", + "type": "Microsoft.NetApp/netAppAccounts", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A49%3A15.4113095Z\u0027\u0022", "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T12:28:31.0093587Z" + }, "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "encryption": { + "keySource": "Microsoft.NetApp" + }, + "provisioningState": "Deleting" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T12:28:31.866882Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T12:28:31.866882Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:18:58 GMT", + "Date": "Tue, 25 Oct 2022 12:49:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c6d64ab-8f45-40d8-851f-32a37366fcf5", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-routing-request-id": "WESTEUROPE:20220920T111858Z:5c6d64ab-8f45-40d8-851f-32a37366fcf5", + "x-ms-correlation-request-id": "6a3593db-4399-4bbf-a88d-b57657abb737", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124916Z:6a3593db-4399-4bbf-a88d-b57657abb737", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backups/sdk-py-tests-backup-1-503c258e", - "name": "sdk-py-tests-acc-1-503c258e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-503c258e/sdk-py-tests-backup-1-503c258e", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-20T11:11:10Z", - "backupId": "6a2e9de0-750d-6f11-479a-cd631c278e2b", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-503c258e", - "useExistingSnapshot": false + "error": { + "code": "ResourceNotFound", + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-503c258e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-503c258e/backupStatus?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-503c258e?api-version=2022-05-01", + "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/455369d5-61a6-430c-888f-789ade0db026?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 20 Sep 2022 11:21:01 GMT", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 12:49:17 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/455369d5-61a6-430c-888f-789ade0db026?api-version=2022-05-01", "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b59a26a-8eb4-4b34-8142-be81ca4f1936", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220920T112101Z:2b59a26a-8eb4-4b34-8142-be81ca4f1936", - "X-Powered-By": "ASP.NET" + "x-ms-arm-service-request-id": "e2b4430a-c119-4e4b-83b3-f5b825dff4fa", + "x-ms-correlation-request-id": "f807f17e-ca7a-4d43-8004-1abc639b3d72", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T124917Z:f807f17e-ca7a-4d43-8004-1abc639b3d72" }, - "ResponseBody": { - "healthy": false, - "relationshipStatus": "Idle", - "mirrorState": "Uninitialized", - "unhealthyReason": "Failed to configure object store. Reason: azure resource config error", - "totalTransferBytes": 0, - "lastTransferSize": 0 - } + "ResponseBody": null } ], "Variables": {} diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_list_backup.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_list_backup.json index 45ee5e913f44..328ec57a2635 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_list_backup.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_list_backup.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:18:53 GMT", + "Date": "Tue, 25 Oct 2022 11:01:40 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:18:53 GMT", + "Date": "Tue, 25 Oct 2022 11:01:40 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "28854d6c-f337-43c8-adfe-6708bfc6e2eb", + "client-request-id": "f3542c85-0f83-4cae-a91f-d8fb4f9d5107", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "28854d6c-f337-43c8-adfe-6708bfc6e2eb", + "client-request-id": "f3542c85-0f83-4cae-a91f-d8fb4f9d5107", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:18:53 GMT", + "Date": "Tue, 25 Oct 2022 11:01:40 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4b2d85ff-4d53-482a-9b69-5f684ed73818?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7489969b-0f5d-4a3a-8761-9b48f0a14ac8?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:18:59 GMT", + "Date": "Tue, 25 Oct 2022 11:01:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1c0410ff-c7f8-44a6-9d6e-c68fcfdf323a", - "x-ms-correlation-request-id": "e127b214-8784-4a73-a0a5-e9563c5cc02b", + "x-ms-arm-service-request-id": "31fbd13e-834d-4cd3-bf96-51f3c69cd2f3", + "x-ms-correlation-request-id": "0b4bee78-6bdd-4bd9-8e60-7423cceff237", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141900Z:e127b214-8784-4a73-a0a5-e9563c5cc02b" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110149Z:0b4bee78-6bdd-4bd9-8e60-7423cceff237" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-70dd2307", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307", - "etag": "W/\u00223e6fff74-78c3-404f-9238-ddad4d40ca60\u0022", + "etag": "W/\u00220652f8bc-c085-4c9c-8357-3c56787cf83a\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:18:55.3935823Z" + "CreatedOnDate": "2022-10-25T11:01:43.1438607Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "deab5b95-789f-4da6-a44b-fb80a69eebe2", + "resourceGuid": "30dc2aec-c64e-4edf-98a0-ae91cd7786cd", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4b2d85ff-4d53-482a-9b69-5f684ed73818?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7489969b-0f5d-4a3a-8761-9b48f0a14ac8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:02 GMT", + "Date": "Tue, 25 Oct 2022 11:01:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7d22b45e-bc75-40db-97f3-0de88559169d", - "x-ms-correlation-request-id": "2d1b4acd-3048-4e18-b130-3aff949cf79c", + "x-ms-arm-service-request-id": "169a0b25-37ba-4b20-9c64-208380b4109d", + "x-ms-correlation-request-id": "9b3690f3-bf39-4d7b-b5f0-13eeae6cf144", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141903Z:2d1b4acd-3048-4e18-b130-3aff949cf79c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110149Z:9b3690f3-bf39-4d7b-b5f0-13eeae6cf144" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:03 GMT", - "ETag": "W/\u00222e47f326-4583-4a62-b8c7-bb6e8b113727\u0022", + "Date": "Tue, 25 Oct 2022 11:01:50 GMT", + "ETag": "W/\u002203fc13e6-9579-4906-9a8d-12c3ad53f03e\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "950b4775-a5c4-4f03-8a3f-7db8b6a79acc", - "x-ms-correlation-request-id": "b5206f77-a7a4-4705-b80b-4ef8bc4c220b", + "x-ms-arm-service-request-id": "df1348e4-ccb3-41a6-9746-251731619267", + "x-ms-correlation-request-id": "1dc73f02-cffb-4d21-ae8c-2e4e49505dfe", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141904Z:b5206f77-a7a4-4705-b80b-4ef8bc4c220b" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110150Z:1dc73f02-cffb-4d21-ae8c-2e4e49505dfe" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-70dd2307", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307", - "etag": "W/\u00222e47f326-4583-4a62-b8c7-bb6e8b113727\u0022", + "etag": "W/\u002203fc13e6-9579-4906-9a8d-12c3ad53f03e\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:18:55.3935823Z" + "CreatedOnDate": "2022-10-25T11:01:43.1438607Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "deab5b95-789f-4da6-a44b-fb80a69eebe2", + "resourceGuid": "30dc2aec-c64e-4edf-98a0-ae91cd7786cd", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/28d2611c-ba82-4333-be33-0cc9a2d6ae31?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/73207dfa-4da7-47df-8ccb-96416c2d499d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:04 GMT", + "Date": "Tue, 25 Oct 2022 11:01:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "8c232cd0-929e-40c3-9d07-9844efad9b3c", - "x-ms-correlation-request-id": "6817d663-fa2d-46af-8673-e54b06a9240d", + "x-ms-arm-service-request-id": "737534b0-a35d-400e-b2ee-8714b2af584d", + "x-ms-correlation-request-id": "f25647d9-4050-4b65-9334-bf9acda3fa74", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141905Z:6817d663-fa2d-46af-8673-e54b06a9240d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110151Z:f25647d9-4050-4b65-9334-bf9acda3fa74" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", - "etag": "W/\u00220c3435f5-3dac-448a-9ad0-0db934dd75de\u0022", + "etag": "W/\u0022aa6ab8cd-9326-4cce-a84e-65f11ff8faff\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00220c3435f5-3dac-448a-9ad0-0db934dd75de\u0022", + "etag": "W/\u0022aa6ab8cd-9326-4cce-a84e-65f11ff8faff\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/28d2611c-ba82-4333-be33-0cc9a2d6ae31?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/73207dfa-4da7-47df-8ccb-96416c2d499d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:08 GMT", + "Date": "Tue, 25 Oct 2022 11:01:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "cfac5da6-e8cc-4198-8f8b-36aba5654126", - "x-ms-correlation-request-id": "fc148fc4-dc58-4acf-b289-f6aaff9f5ba1", + "x-ms-arm-service-request-id": "e76522ef-fc11-4fd1-a8b8-ce072770e945", + "x-ms-correlation-request-id": "c85d5641-b5f6-4522-8e72-8f8f515375f4", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141909Z:fc148fc4-dc58-4acf-b289-f6aaff9f5ba1" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110151Z:c85d5641-b5f6-4522-8e72-8f8f515375f4" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:08 GMT", - "ETag": "W/\u0022b35c552e-0b80-44b6-8615-d04f545fccdb\u0022", + "Date": "Tue, 25 Oct 2022 11:01:52 GMT", + "ETag": "W/\u0022fec70f8b-7a4b-44ea-93bb-50c144feec21\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "570df92d-60e9-4a46-9646-cce86354dcfb", - "x-ms-correlation-request-id": "0c1184c8-ab4f-4694-95b1-f7a4a46cf0fb", + "x-ms-arm-service-request-id": "5b56dce3-0eee-4c0d-9a5c-9af50b4c3e4c", + "x-ms-correlation-request-id": "2ae8d258-6ba5-419a-a49f-b9a607b19744", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141909Z:0c1184c8-ab4f-4694-95b1-f7a4a46cf0fb" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110152Z:2ae8d258-6ba5-419a-a49f-b9a607b19744" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", - "etag": "W/\u0022b35c552e-0b80-44b6-8615-d04f545fccdb\u0022", + "etag": "W/\u0022fec70f8b-7a4b-44ea-93bb-50c144feec21\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022b35c552e-0b80-44b6-8615-d04f545fccdb\u0022", + "etag": "W/\u0022fec70f8b-7a4b-44ea-93bb-50c144feec21\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:08 GMT", + "Date": "Tue, 25 Oct 2022 11:01:52 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:09 GMT", + "Date": "Tue, 25 Oct 2022 11:01:52 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "36a2824f-5ad8-4787-8f64-7192809ad71d", + "client-request-id": "f25e14e8-55ff-40d8-befc-791a7a812d2e", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "36a2824f-5ad8-4787-8f64-7192809ad71d", + "client-request-id": "f25e14e8-55ff-40d8-befc-791a7a812d2e", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:09 GMT", + "Date": "Tue, 25 Oct 2022 11:01:52 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70f9a36e-bca5-41d6-8e8c-1b3dd45c5e41?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/83dfe098-fc52-4d85-b198-5460cc3acb7b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:13 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A19%3A13.2314542Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:01:57 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A01%3A56.1619747Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3719dcab-e907-442d-bb63-ac8cf476ba0b", + "x-ms-correlation-request-id": "cb4b2ab6-6a0b-4c90-ab81-f1930fc0e955", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141914Z:3719dcab-e907-442d-bb63-ac8cf476ba0b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110157Z:cb4b2ab6-6a0b-4c90-ab81-f1930fc0e955", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A19%3A13.2314542Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A01%3A56.1619747Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:19:10.9270563Z" + "CreatedOnDate": "2022-10-25T11:01:53.9940244Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:19:12.2457768Z", + "createdAt": "2022-10-25T11:01:55.1367512Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:19:12.2457768Z" + "lastModifiedAt": "2022-10-25T11:01:55.1367512Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70f9a36e-bca5-41d6-8e8c-1b3dd45c5e41?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/83dfe098-fc52-4d85-b198-5460cc3acb7b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:44 GMT", + "Date": "Tue, 25 Oct 2022 11:01:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "908e1862-3039-4408-98e0-c0eda48821ea", + "x-ms-correlation-request-id": "6794d308-e489-40e9-8d02-35c5a371489d", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141944Z:908e1862-3039-4408-98e0-c0eda48821ea", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110157Z:6794d308-e489-40e9-8d02-35c5a371489d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70f9a36e-bca5-41d6-8e8c-1b3dd45c5e41", - "name": "70f9a36e-bca5-41d6-8e8c-1b3dd45c5e41", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/83dfe098-fc52-4d85-b198-5460cc3acb7b", + "name": "83dfe098-fc52-4d85-b198-5460cc3acb7b", "status": "Succeeded", - "startTime": "2022-09-19T14:19:13.2411129Z", - "endTime": "2022-09-19T14:19:13.2739105Z", + "startTime": "2022-10-25T11:01:56.1628379Z", + "endTime": "2022-10-25T11:01:56.2097519Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:44 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A19%3A13.2790344Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:01:57 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A01%3A56.2121365Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72215a83-10a6-4e7e-ad38-734aba452568", + "x-ms-correlation-request-id": "02369ec1-9a4c-4748-9061-a70c3d0c349e", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141945Z:72215a83-10a6-4e7e-ad38-734aba452568", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110158Z:02369ec1-9a4c-4748-9061-a70c3d0c349e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A19%3A13.2790344Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A01%3A56.2121365Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:19:10.9270563Z" + "CreatedOnDate": "2022-10-25T11:01:53.9940244Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:19:12.2457768Z", + "createdAt": "2022-10-25T11:01:55.1367512Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:19:12.2457768Z" + "lastModifiedAt": "2022-10-25T11:01:55.1367512Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c03525c-80a1-42db-8855-1ba0d70426fb?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40576827-2433-4452-8ce3-82ef328793d7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:19:53 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A19%3A52.7859612Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:02:00 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A01%3A59.5780184Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7685865-8504-47a1-826c-7b400e8ef63c", + "x-ms-correlation-request-id": "ec6b180d-b44a-47bb-a29e-d5a5364489f3", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T141954Z:c7685865-8504-47a1-826c-7b400e8ef63c", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110200Z:ec6b180d-b44a-47bb-a29e-d5a5364489f3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A19%3A52.7859612Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A01%3A59.5780184Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:19:45.3884112Z" + "CreatedOnDate": "2022-10-25T11:01:58.3686689Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:19:52.5839529Z", + "createdAt": "2022-10-25T11:01:59.3424462Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:19:52.5839529Z" + "lastModifiedAt": "2022-10-25T11:01:59.3424462Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c03525c-80a1-42db-8855-1ba0d70426fb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40576827-2433-4452-8ce3-82ef328793d7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:20:24 GMT", + "Date": "Tue, 25 Oct 2022 11:02:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73df5e3d-dbac-4b82-8bf8-26e837a605ef", + "x-ms-correlation-request-id": "6d346fe2-2585-460d-a5cd-f369d6726397", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142024Z:73df5e3d-dbac-4b82-8bf8-26e837a605ef", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110200Z:6d346fe2-2585-460d-a5cd-f369d6726397", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9c03525c-80a1-42db-8855-1ba0d70426fb", - "name": "9c03525c-80a1-42db-8855-1ba0d70426fb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/40576827-2433-4452-8ce3-82ef328793d7", + "name": "40576827-2433-4452-8ce3-82ef328793d7", "status": "Succeeded", - "startTime": "2022-09-19T14:19:52.7923698Z", - "endTime": "2022-09-19T14:19:53.4703174Z", + "startTime": "2022-10-25T11:01:59.5806994Z", + "endTime": "2022-10-25T11:02:00.5672666Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:20:24 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A19%3A53.4720048Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:02:01 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A02%3A00.565684Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ac61cd7-481a-428a-b2ba-eb3dc5f764bc", + "x-ms-correlation-request-id": "413d93ac-880e-4726-a875-11443afff9b1", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142024Z:8ac61cd7-481a-428a-b2ba-eb3dc5f764bc", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110201Z:413d93ac-880e-4726-a875-11443afff9b1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A19%3A53.4720048Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A02%3A00.565684Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:19:45.3884112Z" + "CreatedOnDate": "2022-10-25T11:01:58.3686689Z" }, "properties": { - "poolId": "d84595e4-dbf5-36bb-9952-b94532119f37", + "poolId": "1fe88703-290e-4c77-9f47-260f38b5dd36", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:19:52.5839529Z", + "createdAt": "2022-10-25T11:01:59.3424462Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:19:52.5839529Z" + "lastModifiedAt": "2022-10-25T11:01:59.3424462Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "1583", + "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:20:37 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A20%3A36.71698Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:02:13 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A02%3A13.1592416Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a6c822c-8753-4042-a325-7cde1918c2b1", + "x-ms-correlation-request-id": "fd1b8d92-5bf1-41f1-846a-ed72b858de66", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142038Z:8a6c822c-8753-4042-a325-7cde1918c2b1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110214Z:fd1b8d92-5bf1-41f1-846a-ed72b858de66", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A20%3A36.71698Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A02%3A13.1592416Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:20:35.2248205Z" + "CreatedOnDate": "2022-10-25T11:02:11.5707632Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:20:36.3479161Z", + "createdAt": "2022-10-25T11:02:12.8501409Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:20:36.3479161Z" + "lastModifiedAt": "2022-10-25T11:02:12.8501409Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:21:07 GMT", + "Date": "Tue, 25 Oct 2022 11:02:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9844c5f1-58fd-43af-8a62-b95aff3ba6a6", + "x-ms-correlation-request-id": "3ea318bb-5dd9-4d7d-a94c-5ae4ae00839d", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142108Z:9844c5f1-58fd-43af-8a62-b95aff3ba6a6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110214Z:3ea318bb-5dd9-4d7d-a94c-5ae4ae00839d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", - "name": "6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9", + "name": "b159bae6-b68e-40b5-9322-9675fa039bf9", "status": "Creating", - "startTime": "2022-09-19T14:20:36.7144424Z", + "startTime": "2022-10-25T11:02:13.162727Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:21:37 GMT", + "Date": "Tue, 25 Oct 2022 11:02:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c4896c5-b29b-4caa-9456-9f628ae7f6cf", + "x-ms-correlation-request-id": "fa3c5a4c-500d-4cfe-82b2-aacc303751ea", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142138Z:4c4896c5-b29b-4caa-9456-9f628ae7f6cf", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110244Z:fa3c5a4c-500d-4cfe-82b2-aacc303751ea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", - "name": "6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9", + "name": "b159bae6-b68e-40b5-9322-9675fa039bf9", "status": "Creating", - "startTime": "2022-09-19T14:20:36.7144424Z", + "startTime": "2022-10-25T11:02:13.162727Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:22:08 GMT", + "Date": "Tue, 25 Oct 2022 11:03:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e178537-23e2-4297-9b14-71e7c68cfbe2", + "x-ms-correlation-request-id": "5a2f8c22-4b71-4d37-ad75-e7d2c44deb5f", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142208Z:0e178537-23e2-4297-9b14-71e7c68cfbe2", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110314Z:5a2f8c22-4b71-4d37-ad75-e7d2c44deb5f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", - "name": "6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9", + "name": "b159bae6-b68e-40b5-9322-9675fa039bf9", "status": "Creating", - "startTime": "2022-09-19T14:20:36.7144424Z", + "startTime": "2022-10-25T11:02:13.162727Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:22:38 GMT", + "Date": "Tue, 25 Oct 2022 11:03:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "551c0f97-1a1c-44e6-a461-9ed9e87b767f", + "x-ms-correlation-request-id": "76e7b9a3-176f-4618-9dd2-46dc18c20e09", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142239Z:551c0f97-1a1c-44e6-a461-9ed9e87b767f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110345Z:76e7b9a3-176f-4618-9dd2-46dc18c20e09", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", - "name": "6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9", + "name": "b159bae6-b68e-40b5-9322-9675fa039bf9", "status": "Creating", - "startTime": "2022-09-19T14:20:36.7144424Z", + "startTime": "2022-10-25T11:02:13.162727Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:23:08 GMT", + "Date": "Tue, 25 Oct 2022 11:04:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7036e601-25f1-4c64-9ad1-2a454f21d539", + "x-ms-correlation-request-id": "56431b5d-4996-4790-87f0-b3cdcc3f219c", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142309Z:7036e601-25f1-4c64-9ad1-2a454f21d539", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110415Z:56431b5d-4996-4790-87f0-b3cdcc3f219c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", - "name": "6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9", + "name": "b159bae6-b68e-40b5-9322-9675fa039bf9", "status": "Creating", - "startTime": "2022-09-19T14:20:36.7144424Z", + "startTime": "2022-10-25T11:02:13.162727Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:23:39 GMT", + "Date": "Tue, 25 Oct 2022 11:04:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "511f8b21-7a0f-4b8a-92d8-8de59746d8f2", + "x-ms-correlation-request-id": "222b9f20-b976-4f86-8171-35bf30d251c8", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142339Z:511f8b21-7a0f-4b8a-92d8-8de59746d8f2", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110445Z:222b9f20-b976-4f86-8171-35bf30d251c8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", - "name": "6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9", + "name": "b159bae6-b68e-40b5-9322-9675fa039bf9", "status": "Creating", - "startTime": "2022-09-19T14:20:36.7144424Z", + "startTime": "2022-10-25T11:02:13.162727Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:24:09 GMT", + "Date": "Tue, 25 Oct 2022 11:05:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14eeec0c-f6a7-4adf-b87c-90661e9541e8", + "x-ms-correlation-request-id": "c3a6d0dc-fb49-4402-b381-62f8ecc05524", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142409Z:14eeec0c-f6a7-4adf-b87c-90661e9541e8", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110515Z:c3a6d0dc-fb49-4402-b381-62f8ecc05524", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", - "name": "6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9", + "name": "b159bae6-b68e-40b5-9322-9675fa039bf9", "status": "Creating", - "startTime": "2022-09-19T14:20:36.7144424Z", + "startTime": "2022-10-25T11:02:13.162727Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:24:39 GMT", + "Date": "Tue, 25 Oct 2022 11:05:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,16 +1486,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97786462-f958-4feb-be71-3cce6451a465", + "x-ms-correlation-request-id": "be2a03e8-f97b-4c50-a4af-ce7d60ed12ab", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142440Z:97786462-f958-4feb-be71-3cce6451a465", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110546Z:be2a03e8-f97b-4c50-a4af-ce7d60ed12ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", - "name": "6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9", + "name": "b159bae6-b68e-40b5-9322-9675fa039bf9", "status": "Creating", - "startTime": "2022-09-19T14:20:36.7144424Z", + "startTime": "2022-10-25T11:02:13.162727Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1503,13 +1504,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,7 +1518,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:25:10 GMT", + "Date": "Tue, 25 Oct 2022 11:06:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1525,17 +1526,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d1e1f6f-0681-4928-b771-aee31d14d10e", + "x-ms-correlation-request-id": "ef9d1b5f-4a71-4c79-9700-434134bfe30d", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142511Z:3d1e1f6f-0681-4928-b771-aee31d14d10e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110616Z:ef9d1b5f-4a71-4c79-9700-434134bfe30d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9", + "name": "b159bae6-b68e-40b5-9322-9675fa039bf9", + "status": "Creating", + "startTime": "2022-10-25T11:02:13.162727Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:06:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c678a0ed-5bcb-4374-a0e3-92dda102a925", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110647Z:c678a0ed-5bcb-4374-a0e3-92dda102a925", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", - "name": "6bf20e65-3b4c-4b9a-a2d0-da3cefdab53d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b159bae6-b68e-40b5-9322-9675fa039bf9", + "name": "b159bae6-b68e-40b5-9322-9675fa039bf9", "status": "Succeeded", - "startTime": "2022-09-19T14:20:36.7144424Z", - "endTime": "2022-09-19T14:24:41.6551233Z", + "startTime": "2022-10-25T11:02:13.162727Z", + "endTime": "2022-10-25T11:06:46.3456434Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" @@ -1549,7 +1590,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1557,8 +1598,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:25:12 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A24%3A41.6607385Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:06:47 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A06%3A46.3359511Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1566,22 +1607,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f135be9-7946-434a-815d-57a951bfeb09", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142513Z:4f135be9-7946-434a-815d-57a951bfeb09", + "x-ms-correlation-request-id": "e7b688ee-5c2a-4575-b55f-ad17771e58be", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110647Z:e7b688ee-5c2a-4575-b55f-ad17771e58be", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A24%3A41.6607385Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A06%3A46.3359511Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:20:35.2248205Z" + "CreatedOnDate": "2022-10-25T11:02:11.5707632Z" }, "properties": { - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-70dd2307", "usageThreshold": 107374182400, @@ -1609,7 +1650,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_a1505bef", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f2f3efb", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1624,8 +1665,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "mountTargetId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "ipAddress": "10.0.0.4" } ], @@ -1645,10 +1686,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:20:36.3479161Z", + "createdAt": "2022-10-25T11:02:12.8501409Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:20:36.3479161Z" + "lastModifiedAt": "2022-10-25T11:02:12.8501409Z" } } }, @@ -1659,7 +1700,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1667,8 +1708,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:25:22 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A24%3A41.6607385Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:06:57 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A06%3A46.3359511Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1676,22 +1717,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6194584d-9eb9-4dec-bfdc-d4d7dbb79a1e", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142523Z:6194584d-9eb9-4dec-bfdc-d4d7dbb79a1e", + "x-ms-correlation-request-id": "4be6b478-fc85-4db6-b15f-9a09b10817ec", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110658Z:4be6b478-fc85-4db6-b15f-9a09b10817ec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A24%3A41.6607385Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A06%3A46.3359511Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:20:35.2248205Z" + "CreatedOnDate": "2022-10-25T11:02:11.5707632Z" }, "properties": { - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-70dd2307", "usageThreshold": 107374182400, @@ -1719,7 +1760,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_a1505bef", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f2f3efb", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1734,8 +1775,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "mountTargetId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "ipAddress": "10.0.0.4" } ], @@ -1755,10 +1796,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:20:36.3479161Z", + "createdAt": "2022-10-25T11:02:12.8501409Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:20:36.3479161Z" + "lastModifiedAt": "2022-10-25T11:02:12.8501409Z" } } }, @@ -1769,7 +1810,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1777,7 +1818,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:25:23 GMT", + "Date": "Tue, 25 Oct 2022 11:06:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1785,9 +1826,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e45b81e1-75f3-4bd6-a7d6-378cc8a9607b", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142524Z:e45b81e1-75f3-4bd6-a7d6-378cc8a9607b", + "x-ms-correlation-request-id": "b7989d5a-b57e-4da2-8cab-6bcf20fe2f70", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110658Z:b7989d5a-b57e-4da2-8cab-6bcf20fe2f70", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1810,7 +1851,7 @@ "Connection": "keep-alive", "Content-Length": "412", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1829,35 +1870,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3b6aef14-f6b6-48f0-9755-26cea1d733f4?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5132a087-22af-4216-abea-12a8bfab756e?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "2480", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:25:23 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A25%3A24.6111169Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:06:58 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A06%3A59.2246421Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3b6aef14-f6b6-48f0-9755-26cea1d733f4?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5132a087-22af-4216-abea-12a8bfab756e?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21e38c7c-3ee4-4f4e-a99f-44a74d74ca35", + "x-ms-correlation-request-id": "e6b01eea-d39c-41e4-af6e-a665b45bd3b1", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142524Z:21e38c7c-3ee4-4f4e-a99f-44a74d74ca35", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110659Z:e6b01eea-d39c-41e4-af6e-a665b45bd3b1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A25%3A24.6111169Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A06%3A59.2246421Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:20:35.2248205Z" + "CreatedOnDate": "2022-10-25T11:02:11.5707632Z" }, "properties": { "provisioningState": "Patching", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-70dd2307", "usageThreshold": 107374182400, @@ -1885,7 +1926,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_a1505bef", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f2f3efb", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1900,8 +1941,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "mountTargetId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "ipAddress": "10.0.0.4" } ], @@ -1920,21 +1961,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:20:36.3479161Z", + "createdAt": "2022-10-25T11:02:12.8501409Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:20:36.3479161Z" + "lastModifiedAt": "2022-10-25T11:02:12.8501409Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3b6aef14-f6b6-48f0-9755-26cea1d733f4?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5132a087-22af-4216-abea-12a8bfab756e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1942,7 +1983,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:25:55 GMT", + "Date": "Tue, 25 Oct 2022 11:06:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1950,17 +1991,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa0d3fa0-1cbb-47cd-8824-7cccebda18ee", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142555Z:fa0d3fa0-1cbb-47cd-8824-7cccebda18ee", + "x-ms-correlation-request-id": "0b093fe2-d1f4-4f5f-8b8c-f6ce3c2b3482", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110659Z:0b093fe2-d1f4-4f5f-8b8c-f6ce3c2b3482", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5132a087-22af-4216-abea-12a8bfab756e", + "name": "5132a087-22af-4216-abea-12a8bfab756e", + "status": "Patching", + "startTime": "2022-10-25T11:06:59.2362193Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5132a087-22af-4216-abea-12a8bfab756e?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:07:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b1ddea8f-00cd-49b6-9fea-a9e68c743983", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110729Z:b1ddea8f-00cd-49b6-9fea-a9e68c743983", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3b6aef14-f6b6-48f0-9755-26cea1d733f4", - "name": "3b6aef14-f6b6-48f0-9755-26cea1d733f4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5132a087-22af-4216-abea-12a8bfab756e", + "name": "5132a087-22af-4216-abea-12a8bfab756e", "status": "Succeeded", - "startTime": "2022-09-19T14:25:24.6011939Z", - "endTime": "2022-09-19T14:25:29.1042456Z", + "startTime": "2022-10-25T11:06:59.2362193Z", + "endTime": "2022-10-25T11:07:03.3600728Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" @@ -1968,13 +2049,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3b6aef14-f6b6-48f0-9755-26cea1d733f4?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5132a087-22af-4216-abea-12a8bfab756e?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1982,7 +2063,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:25:55 GMT", + "Date": "Tue, 25 Oct 2022 11:07:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1990,19 +2071,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d92c8c4-078f-4f92-86c8-20e46c271d6a", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142555Z:3d92c8c4-078f-4f92-86c8-20e46c271d6a", + "x-ms-correlation-request-id": "04c3fb86-52a4-412e-b21e-ac26dac29408", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110730Z:04c3fb86-52a4-412e-b21e-ac26dac29408", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A25%3A29.1084342Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A07%3A03.3523007Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:25:24.2463093Z" + "CreatedOnDate": "2022-10-25T11:06:58.8659909Z" }, "properties": { "dataProtection": { @@ -2012,12 +2093,12 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault" } }, - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-70dd2307", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", "usageThreshold": 107374182400, - "usedBytes": 0, + "usedBytes": 356352, "exportPolicy": { "rules": [ { @@ -2043,19 +2124,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_a1505bef", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f2f3efb", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", - "poolId": "d84595e4-dbf5-36bb-9952-b94532119f37", + "poolId": "1fe88703-290e-4c77-9f47-260f38b5dd36", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "mountTargetId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "startIp": "", "endIp": "", "gateway": "", @@ -2087,10 +2168,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:20:36.3479161Z", + "createdAt": "2022-10-25T11:02:12.8501409Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:25:24.4654991Z" + "lastModifiedAt": "2022-10-25T11:06:59.0798273Z" } } }, @@ -2103,7 +2184,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -2113,20 +2194,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d94a7b57-d723-4114-95ac-dd85a6a3b4b2?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f486115-e062-4032-bf09-176b48a5b293?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "542", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:25:55 GMT", + "Date": "Tue, 25 Oct 2022 11:07:29 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d94a7b57-d723-4114-95ac-dd85a6a3b4b2?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f486115-e062-4032-bf09-176b48a5b293?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00e0a574-2c08-408c-8474-5d7a38bd9fcd", + "x-ms-correlation-request-id": "d07c003e-2bad-4497-a3e6-c287fc4affbf", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142555Z:00e0a574-2c08-408c-8474-5d7a38bd9fcd", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110730Z:d07c003e-2bad-4497-a3e6-c287fc4affbf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2141,13 +2222,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d94a7b57-d723-4114-95ac-dd85a6a3b4b2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f486115-e062-4032-bf09-176b48a5b293?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2155,7 +2236,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:26:25 GMT", + "Date": "Tue, 25 Oct 2022 11:07:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2163,120 +2244,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e95eb607-0f34-4b83-b36a-5ceab008a163", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142626Z:e95eb607-0f34-4b83-b36a-5ceab008a163", + "x-ms-correlation-request-id": "572db800-85de-444b-841a-21f9f8019e46", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110730Z:572db800-85de-444b-841a-21f9f8019e46", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d94a7b57-d723-4114-95ac-dd85a6a3b4b2", - "name": "d94a7b57-d723-4114-95ac-dd85a6a3b4b2", - "status": "Succeeded", - "startTime": "2022-09-19T14:25:55.7771109Z", - "endTime": "2022-09-19T14:25:57.2771017Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f486115-e062-4032-bf09-176b48a5b293", + "name": "4f486115-e062-4032-bf09-176b48a5b293", + "status": "Creating", + "startTime": "2022-10-25T11:07:30.4618427Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d94a7b57-d723-4114-95ac-dd85a6a3b4b2?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f486115-e062-4032-bf09-176b48a5b293?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "761", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:26:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df26f554-0e16-400b-975b-c7c4701eec54", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142626Z:df26f554-0e16-400b-975b-c7c4701eec54", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/19/2022 2:25:57 PM", - "location": "", - "properties": { - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "creationDate": "0001-01-01T00:00:00Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "failureReason": "None", - "useExistingSnapshot": false, - "provisioningState": "Creating" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:26:37 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a723004-32ab-43a4-94b1-ad797d73a7df", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142637Z:2a723004-32ab-43a4-94b1-ad797d73a7df", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2284,7 +2276,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:26:47 GMT", + "Date": "Tue, 25 Oct 2022 11:08:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2292,70 +2284,64 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdfeb7ce-f65f-4a2b-b704-e6c26d391e0e", + "x-ms-correlation-request-id": "586a2e08-975d-4cdd-9ccf-0972a618900b", "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142648Z:bdfeb7ce-f65f-4a2b-b704-e6c26d391e0e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110801Z:586a2e08-975d-4cdd-9ccf-0972a618900b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f486115-e062-4032-bf09-176b48a5b293", + "name": "4f486115-e062-4032-bf09-176b48a5b293", + "status": "Succeeded", + "startTime": "2022-10-25T11:07:30.4618427Z", + "endTime": "2022-10-25T11:07:33.5094056Z", + "percentComplete": 100.0, "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f486115-e062-4032-bf09-176b48a5b293?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "763", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:26:58 GMT", + "Date": "Tue, 25 Oct 2022 11:08:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d5206ab-90ee-40dc-a81f-0da7eec41e17", + "x-ms-correlation-request-id": "136a4048-75e8-4884-8003-45f4a89fe7cc", "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142658Z:3d5206ab-90ee-40dc-a81f-0da7eec41e17", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110801Z:136a4048-75e8-4884-8003-45f4a89fe7cc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "etag": "10/25/2022 11:07:33 AM", + "location": "", "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "creationDate": "0001-01-01T00:00:00Z", + "backupId": "d1405209-7bf5-aac9-2f56-48d43e67577c", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false + "failureReason": "None", + "useExistingSnapshot": false, + "provisioningState": "Creating" } } }, @@ -2366,7 +2352,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2374,7 +2360,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:27:09 GMT", + "Date": "Tue, 25 Oct 2022 11:08:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2382,9 +2368,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a824dca7-9ffe-4f70-853c-7c30767a8211", + "x-ms-correlation-request-id": "f9efbd42-390c-4c09-a6ec-5f1183a62e91", "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142709Z:a824dca7-9ffe-4f70-853c-7c30767a8211", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110812Z:f9efbd42-390c-4c09-a6ec-5f1183a62e91", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2393,12 +2379,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", + "creationDate": "2022-10-25T11:07:33Z", + "backupId": "d1405209-7bf5-aac9-2f56-48d43e67577c", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -2411,7 +2397,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2419,7 +2405,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:27:19 GMT", + "Date": "Tue, 25 Oct 2022 11:08:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2427,9 +2413,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65733789-9dd8-4c79-bbe9-78149ef88d68", + "x-ms-correlation-request-id": "e02a27e5-d6d8-42c1-a211-379efb12140f", "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142720Z:65733789-9dd8-4c79-bbe9-78149ef88d68", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110823Z:e02a27e5-d6d8-42c1-a211-379efb12140f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2438,12 +2424,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", + "creationDate": "2022-10-25T11:07:33Z", + "backupId": "d1405209-7bf5-aac9-2f56-48d43e67577c", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -2456,7 +2442,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2464,7 +2450,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:27:29 GMT", + "Date": "Tue, 25 Oct 2022 11:08:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2472,9 +2458,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b73bef13-37b4-47a1-b5d4-f6692ec19385", + "x-ms-correlation-request-id": "43912b1e-1dd6-45e3-8c52-4b301674111f", "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142730Z:b73bef13-37b4-47a1-b5d4-f6692ec19385", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110833Z:43912b1e-1dd6-45e3-8c52-4b301674111f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2483,12 +2469,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", + "creationDate": "2022-10-25T11:07:33Z", + "backupId": "d1405209-7bf5-aac9-2f56-48d43e67577c", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -2501,7 +2487,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2509,7 +2495,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:27:41 GMT", + "Date": "Tue, 25 Oct 2022 11:08:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2517,9 +2503,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "229043a2-f5a1-4415-9d55-b812b8065133", + "x-ms-correlation-request-id": "fe40e4fc-dfb4-4edf-9fd2-57bf01236877", "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142741Z:229043a2-f5a1-4415-9d55-b812b8065133", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110844Z:fe40e4fc-dfb4-4edf-9fd2-57bf01236877", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2528,12 +2514,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", + "creationDate": "2022-10-25T11:07:33Z", + "backupId": "d1405209-7bf5-aac9-2f56-48d43e67577c", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -2546,7 +2532,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2554,7 +2540,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:27:53 GMT", + "Date": "Tue, 25 Oct 2022 11:08:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2562,9 +2548,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e866e98c-f3a2-4362-8101-fd86c14a551b", + "x-ms-correlation-request-id": "e97cb747-1ef7-4138-b764-607512191271", "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142754Z:e866e98c-f3a2-4362-8101-fd86c14a551b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110855Z:e97cb747-1ef7-4138-b764-607512191271", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2573,12 +2559,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", + "creationDate": "2022-10-25T11:07:33Z", + "backupId": "d1405209-7bf5-aac9-2f56-48d43e67577c", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -2591,7 +2577,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2599,7 +2585,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:28:03 GMT", + "Date": "Tue, 25 Oct 2022 11:09:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2607,9 +2593,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb2a4a57-757a-42c3-93b3-f3e3978b9d31", + "x-ms-correlation-request-id": "9a14afda-8ee7-42b9-b954-ec4a1a98ca96", "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142804Z:eb2a4a57-757a-42c3-93b3-f3e3978b9d31", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110906Z:9a14afda-8ee7-42b9-b954-ec4a1a98ca96", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2618,12 +2604,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", + "creationDate": "2022-10-25T11:07:33Z", + "backupId": "d1405209-7bf5-aac9-2f56-48d43e67577c", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -2636,7 +2622,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2644,7 +2630,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:28:15 GMT", + "Date": "Tue, 25 Oct 2022 11:09:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2652,9 +2638,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3a41da8-a83a-4ee5-8440-9d8119b9f1e5", + "x-ms-correlation-request-id": "c5637939-984d-41ca-b7be-9463e4a69d13", "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142815Z:c3a41da8-a83a-4ee5-8440-9d8119b9f1e5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110917Z:c5637939-984d-41ca-b7be-9463e4a69d13", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2663,25 +2649,25 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, + "creationDate": "2022-10-25T11:07:33Z", + "backupId": "d1405209-7bf5-aac9-2f56-48d43e67577c", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2689,7 +2675,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:28:26 GMT", + "Date": "Tue, 25 Oct 2022 11:09:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2697,44 +2683,55 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3799bf5d-5598-4ffb-a10a-2b608ad164e1", + "x-ms-correlation-request-id": "71b58244-6d26-4a13-a667-316d35264c55", "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142826Z:3799bf5d-5598-4ffb-a10a-2b608ad164e1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110918Z:71b58244-6d26-4a13-a667-316d35264c55", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault", + "name": "sdk-py-tests-acc-1-70dd2307/cbsvault", + "type": "Microsoft.NetApp/netAppAccounts/vaults", + "properties": {} + } + ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307?api-version=2022-05-01", + "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "412", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": { + "properties": { + "serviceLevel": "Premium", + "usageThreshold": 107374182400, + "dataProtection": { + "backup": { + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault", + "backupEnabled": true + } + }, + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0 + } }, - "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:28:36 GMT", + "Date": "Tue, 25 Oct 2022 11:09:19 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A09%3A18.7204232Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2742,2066 +2739,132 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "504133ca-eb9e-4832-a0ef-2b8be6c213ca", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142836Z:504133ca-eb9e-4832-a0ef-2b8be6c213ca", + "x-ms-correlation-request-id": "a43427db-8d2d-4b57-9de3-7b0f5faa6a72", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110920Z:a43427db-8d2d-4b57-9de3-7b0f5faa6a72", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", + "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A09%3A18.7204232Z\u0027\u0022", "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T11:09:18.4154393Z" + }, "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:28:47 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd7fdce7-ff5b-4f3f-b228-dc56d5db7623", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142847Z:bd7fdce7-ff5b-4f3f-b228-dc56d5db7623", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:28:58 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "878b4be0-d663-4bcd-88f9-6c0d6f9e65b1", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142858Z:878b4be0-d663-4bcd-88f9-6c0d6f9e65b1", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:29:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d696e659-630d-4b14-aa52-0e5c6a8cf5b4", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142909Z:d696e659-630d-4b14-aa52-0e5c6a8cf5b4", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:29:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e789fb5-aa7b-4c7f-848d-e93d1ec6188e", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142920Z:2e789fb5-aa7b-4c7f-848d-e93d1ec6188e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:29:30 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a048878-1e54-4914-8197-107aaf5c7b49", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142930Z:2a048878-1e54-4914-8197-107aaf5c7b49", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:29:40 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08acd81d-9858-4be8-9317-dcdd5c70d02e", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142941Z:08acd81d-9858-4be8-9317-dcdd5c70d02e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:29:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9a55caf-54fc-4094-83f2-94823f031bda", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-routing-request-id": "WESTEUROPE:20220919T142951Z:e9a55caf-54fc-4094-83f2-94823f031bda", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:30:02 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ed22e53-887b-4aaf-bab3-d0f7af076e3e", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143003Z:9ed22e53-887b-4aaf-bab3-d0f7af076e3e", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:30:13 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e1230f3-5818-42cc-8466-effb193d1183", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143014Z:5e1230f3-5818-42cc-8466-effb193d1183", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:30:24 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6d5b42c-41c4-456b-8383-6158f809f883", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143025Z:c6d5b42c-41c4-456b-8383-6158f809f883", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:30:36 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87ad3240-00be-408e-8d33-18b7d528892f", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143036Z:87ad3240-00be-408e-8d33-18b7d528892f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:30:47 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd6a406d-be14-48be-a289-bd0b8825a3b3", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143047Z:cd6a406d-be14-48be-a289-bd0b8825a3b3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:30:57 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c31b4843-74c6-4b15-9b81-867c5467d339", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143057Z:c31b4843-74c6-4b15-9b81-867c5467d339", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:31:08 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39f5aa71-f0d4-468c-9a55-be4e1eda0e88", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143109Z:39f5aa71-f0d4-468c-9a55-be4e1eda0e88", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:31:19 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80add572-a912-4c85-9b79-5d81dd61dcfc", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143119Z:80add572-a912-4c85-9b79-5d81dd61dcfc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:31:29 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aea24def-1d24-4fd4-b9fa-06e3526dacfe", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143130Z:aea24def-1d24-4fd4-b9fa-06e3526dacfe", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:31:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eeab751e-4b04-4773-89ae-557bf0051b87", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143140Z:eeab751e-4b04-4773-89ae-557bf0051b87", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:31:50 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d4101b8-1f73-4b2b-b32d-f72b644bb039", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143151Z:1d4101b8-1f73-4b2b-b32d-f72b644bb039", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:32:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cebe5ae-ce51-4781-9969-74a7b4040d90", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143201Z:7cebe5ae-ce51-4781-9969-74a7b4040d90", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:32:12 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "159a709a-514d-4cf7-ba4c-30cccb955496", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143213Z:159a709a-514d-4cf7-ba4c-30cccb955496", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:32:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "673ec1a1-c3f5-4f20-9fbd-fc4567079225", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143223Z:673ec1a1-c3f5-4f20-9fbd-fc4567079225", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:32:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "567a76c6-32fb-4954-b1e9-aadacf4bd9e8", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143234Z:567a76c6-32fb-4954-b1e9-aadacf4bd9e8", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:32:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "530492d7-412d-4042-86e7-339f9128894f", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143244Z:530492d7-412d-4042-86e7-339f9128894f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:32:56 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29bf5ef4-87ba-4dc5-a8f5-7f2e0fe8af44", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143256Z:29bf5ef4-87ba-4dc5-a8f5-7f2e0fe8af44", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:33:07 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c63651e6-0728-4c71-b638-22850a04618a", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143307Z:c63651e6-0728-4c71-b638-22850a04618a", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:33:17 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2ede663-6ed5-4abe-bf4f-dc4add91d6ac", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143318Z:e2ede663-6ed5-4abe-bf4f-dc4add91d6ac", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:33:27 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de2fce53-2729-4806-ac88-4d5f2f015d41", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143328Z:de2fce53-2729-4806-ac88-4d5f2f015d41", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:33:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b962ae2d-ad3e-43c6-9936-b0c442761aa0", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143339Z:b962ae2d-ad3e-43c6-9936-b0c442761aa0", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-1", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-1", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:33:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48cb6ad9-b302-4d7a-ab06-b09749d7afda", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143339Z:48cb6ad9-b302-4d7a-ab06-b09749d7afda", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault", - "name": "sdk-py-tests-acc-1-70dd2307/cbsvault", - "type": "Microsoft.NetApp/netAppAccounts/vaults", - "properties": {} - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307?api-version=2022-05-01", - "RequestMethod": "PATCH", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "412", - "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": { - "properties": { - "serviceLevel": "Premium", - "usageThreshold": 107374182400, - "dataProtection": { - "backup": { - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault", - "backupEnabled": true - } - }, - "isDefaultQuotaEnabled": false, - "defaultUserQuotaInKiBs": 0, - "defaultGroupQuotaInKiBs": 0 - } - }, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:33:40 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A33%3A40.4404156Z\u0027\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "246f552b-4f1a-4b7f-a25b-54bdf515aafe", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143340Z:246f552b-4f1a-4b7f-a25b-54bdf515aafe", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A33%3A40.4404156Z\u0027\u0022", - "location": "westus2", - "tags": { - "CreatedOnDate": "2022-09-19T14:25:24.2463093Z" - }, - "properties": { - "dataProtection": { - "backup": { - "backupEnabled": true, - "policyEnforced": false, - "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault" - } - }, - "provisioningState": "Succeeded", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "serviceLevel": "Premium", - "creationToken": "sdk-py-tests-vol-3-70dd2307", - "usageThreshold": 107374182400, - "exportPolicy": { - "rules": [ - { - "ruleIndex": 1, - "unixReadOnly": false, - "unixReadWrite": true, - "cifs": false, - "nfsv3": true, - "nfsv41": false, - "allowedClients": "0.0.0.0/0", - "kerberos5ReadOnly": false, - "kerberos5ReadWrite": false, - "kerberos5iReadOnly": false, - "kerberos5iReadWrite": false, - "kerberos5pReadOnly": false, - "kerberos5pReadWrite": false, - "hasRootAccess": true, - "chownMode": "Restricted" - } - ] - }, - "protocolTypes": [ - "NFSv3" - ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_a1505bef", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", - "networkFeatures": "Basic", - "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", - "storageToNetworkProximity": "T2", - "snapshotDirectoryVisible": true, - "kerberosEnabled": false, - "securityStyle": "Unix", - "smbEncryption": false, - "smbContinuouslyAvailable": false, - "encryptionKeySource": "Microsoft.NetApp", - "ldapEnabled": false, - "unixPermissions": "0770", - "mountTargets": [ - { - "mountTargetId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "ipAddress": "10.0.0.4" - } - ], - "throughputMibps": 6.25, - "volumeSpecName": "generic", - "coolAccess": false, - "avsDataStore": "Disabled", - "isDefaultQuotaEnabled": false, - "defaultUserQuotaInKiBs": 0, - "defaultGroupQuotaInKiBs": 0, - "enableSubvolumes": "Disabled", - "maximumNumberOfFiles": 100000000, - "smbNonBrowsable": "Disabled", - "smbAccessBasedEnumeration": "Disabled" - }, - "systemData": { - "createdBy": "00000000-0000-0000-0000-000000000000", - "createdByType": "Application", - "createdAt": "2022-09-19T14:20:36.3479161Z", - "lastModifiedBy": "00000000-0000-0000-0000-000000000000", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:33:40.2838002Z" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "69", - "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": { - "location": "westus2", - "properties": { - "useExistingSnapshot": false - } - }, - "StatusCode": 201, - "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82c20255-6c78-425c-b0d4-9c59c50f73a2?api-version=2022-05-01", - "Cache-Control": "no-cache", - "Content-Length": "542", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:33:41 GMT", - "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82c20255-6c78-425c-b0d4-9c59c50f73a2?api-version=2022-05-01\u0026operationResultResponseType=Location", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72e738a3-d8ce-48c8-91f6-2648364f3151", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143341Z:72e738a3-d8ce-48c8-91f6-2648364f3151", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "provisioningState": "Creating", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82c20255-6c78-425c-b0d4-9c59c50f73a2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:34:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52353c90-a7d0-402b-a002-602dd984966b", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143411Z:52353c90-a7d0-402b-a002-602dd984966b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82c20255-6c78-425c-b0d4-9c59c50f73a2", - "name": "82c20255-6c78-425c-b0d4-9c59c50f73a2", - "status": "Succeeded", - "startTime": "2022-09-19T14:33:41.0916205Z", - "endTime": "2022-09-19T14:33:41.3728957Z", - "percentComplete": 100.0, - "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82c20255-6c78-425c-b0d4-9c59c50f73a2?api-version=2022-05-01\u0026operationResultResponseType=Location", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 201, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "761", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:34:11 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d09830b-da4c-425d-baaa-e99ba7361d10", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143411Z:1d09830b-da4c-425d-baaa-e99ba7361d10", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/19/2022 2:33:41 PM", - "location": "", - "properties": { - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "creationDate": "0001-01-01T00:00:00Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "failureReason": "None", - "useExistingSnapshot": false, - "provisioningState": "Creating" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:34:22 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5462299a-9731-4b77-a43b-d24d35f8c5ed", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143422Z:5462299a-9731-4b77-a43b-d24d35f8c5ed", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:34:33 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "592a6321-1328-4f40-b576-683936c4df5b", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143433Z:592a6321-1328-4f40-b576-683936c4df5b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:34:43 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cf46e72-2192-405c-aea3-43faf46cb801", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143444Z:1cf46e72-2192-405c-aea3-43faf46cb801", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:34:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5a21f42-7505-4d13-85bb-7c3276dac287", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143454Z:a5a21f42-7505-4d13-85bb-7c3276dac287", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:35:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cfeb804-007d-4ff4-9a5b-18d7add1a543", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143505Z:1cfeb804-007d-4ff4-9a5b-18d7add1a543", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:35:16 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0605a808-645a-4f15-ac54-b8daf8078c4f", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143516Z:0605a808-645a-4f15-ac54-b8daf8078c4f", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:35:26 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74c35e17-6351-48d8-a574-b44fe8b37160", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143526Z:74c35e17-6351-48d8-a574-b44fe8b37160", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:35:38 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed62404b-7502-457f-b0e6-50af640b75a9", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143539Z:ed62404b-7502-457f-b0e6-50af640b75a9", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:35:48 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ca257a9-6a5e-4204-8dc5-3d0a839432e3", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143549Z:8ca257a9-6a5e-4204-8dc5-3d0a839432e3", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false + "dataProtection": { + "backup": { + "backupEnabled": true, + "policyEnforced": false, + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault" + } + }, + "provisioningState": "Succeeded", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-70dd2307", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f2f3efb", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T11:02:12.8501409Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T11:09:18.5835871Z" } } }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:35:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e23e70a1-87d2-49fa-aa3c-f86a0516e60a", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143559Z:e23e70a1-87d2-49fa-aa3c-f86a0516e60a", - "X-Powered-By": "ASP.NET" + "Content-Length": "69", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "RequestBody": { "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" }, - "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6d8879d5-b638-4de2-9f7e-21c4b16bc016?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "542", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:36:10 GMT", + "Date": "Tue, 25 Oct 2022 11:09:20 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6d8879d5-b638-4de2-9f7e-21c4b16bc016?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c297b4f-ad98-4ca7-9625-fb56122716d3", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143611Z:7c297b4f-ad98-4ca7-9625-fb56122716d3", + "x-ms-correlation-request-id": "fc3d977e-2a0a-475e-94bb-76ab0d02fd00", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110920Z:fc3d977e-2a0a-475e-94bb-76ab0d02fd00", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4810,25 +2873,19 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", + "provisioningState": "Creating", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6d8879d5-b638-4de2-9f7e-21c4b16bc016?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4836,7 +2893,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:36:21 GMT", + "Date": "Tue, 25 Oct 2022 11:09:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4844,70 +2901,64 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5eaf17e5-15e1-463e-bc3a-aa378c1518c7", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143622Z:5eaf17e5-15e1-463e-bc3a-aa378c1518c7", + "x-ms-correlation-request-id": "63895c5c-c562-457c-a553-97960b360417", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110921Z:63895c5c-c562-457c-a553-97960b360417", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", - "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6d8879d5-b638-4de2-9f7e-21c4b16bc016", + "name": "6d8879d5-b638-4de2-9f7e-21c4b16bc016", + "status": "Succeeded", + "startTime": "2022-10-25T11:09:20.6364814Z", + "endTime": "2022-10-25T11:09:20.9177196Z", + "percentComplete": 100.0, "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6d8879d5-b638-4de2-9f7e-21c4b16bc016?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "763", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:36:32 GMT", + "Date": "Tue, 25 Oct 2022 11:09:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43bbfb32-d4b8-4fe3-bdbf-85e4a60ebb78", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143632Z:43bbfb32-d4b8-4fe3-bdbf-85e4a60ebb78", + "x-ms-correlation-request-id": "fde64032-17b6-4558-ae5c-c798ab3fe0d6", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110921Z:fde64032-17b6-4558-ae5c-c798ab3fe0d6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307/backups/sdk-py-tests-backup-2", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307/sdk-py-tests-backup-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "etag": "10/25/2022 11:09:20 AM", + "location": "", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "creationDate": "0001-01-01T00:00:00Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-70dd2307", - "useExistingSnapshot": false + "failureReason": "None", + "useExistingSnapshot": false, + "provisioningState": "Creating" } } }, @@ -4918,7 +2969,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4926,7 +2977,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:36:42 GMT", + "Date": "Tue, 25 Oct 2022 11:09:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4934,9 +2985,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "576c1f6b-2a84-45a0-935b-4aaab4468e64", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143643Z:576c1f6b-2a84-45a0-935b-4aaab4468e64", + "x-ms-correlation-request-id": "547938f2-fe66-4110-819e-ea907c9103bb", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110931Z:547938f2-fe66-4110-819e-ea907c9103bb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4945,12 +2996,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -4963,7 +3014,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4971,7 +3022,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:36:53 GMT", + "Date": "Tue, 25 Oct 2022 11:09:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4979,9 +3030,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b46226dc-3e95-437f-80fb-054b89269a9e", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143653Z:b46226dc-3e95-437f-80fb-054b89269a9e", + "x-ms-correlation-request-id": "66a6590d-1356-4af4-b53a-f386d371a7ff", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110942Z:66a6590d-1356-4af4-b53a-f386d371a7ff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -4990,12 +3041,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5008,7 +3059,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5016,7 +3067,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:37:04 GMT", + "Date": "Tue, 25 Oct 2022 11:09:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5024,9 +3075,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d277a78-a047-426e-ad7d-567c84cf62a6", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143704Z:4d277a78-a047-426e-ad7d-567c84cf62a6", + "x-ms-correlation-request-id": "0450977c-b526-4723-a1ae-925acd7048d8", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T110952Z:0450977c-b526-4723-a1ae-925acd7048d8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5035,12 +3086,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5053,7 +3104,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5061,7 +3112,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:37:15 GMT", + "Date": "Tue, 25 Oct 2022 11:10:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5069,9 +3120,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59c700c3-5f4d-45af-8d66-6898c5bfc8ae", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143715Z:59c700c3-5f4d-45af-8d66-6898c5bfc8ae", + "x-ms-correlation-request-id": "0dbafcaa-e0b6-444d-9e83-6c1db6c759e5", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111003Z:0dbafcaa-e0b6-444d-9e83-6c1db6c759e5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5080,12 +3131,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5098,7 +3149,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5106,7 +3157,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:37:26 GMT", + "Date": "Tue, 25 Oct 2022 11:10:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5114,9 +3165,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ee5d0f3-56b7-42fa-820a-af175c0876ab", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143726Z:0ee5d0f3-56b7-42fa-820a-af175c0876ab", + "x-ms-correlation-request-id": "8a0af722-d464-4422-b3cc-ce345a076844", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111013Z:8a0af722-d464-4422-b3cc-ce345a076844", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5125,12 +3176,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5143,7 +3194,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5151,7 +3202,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:37:37 GMT", + "Date": "Tue, 25 Oct 2022 11:10:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5159,9 +3210,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53470f7e-058d-4342-b0e6-32881f09ce9c", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143737Z:53470f7e-058d-4342-b0e6-32881f09ce9c", + "x-ms-correlation-request-id": "e47db429-a02f-458b-b000-69582c315619", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111025Z:e47db429-a02f-458b-b000-69582c315619", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5170,12 +3221,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5188,7 +3239,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5196,7 +3247,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:37:47 GMT", + "Date": "Tue, 25 Oct 2022 11:10:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5204,9 +3255,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "656de11e-1614-423c-ae45-6885ce693552", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143748Z:656de11e-1614-423c-ae45-6885ce693552", + "x-ms-correlation-request-id": "964e1544-4add-4427-9146-7aa355385938", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111036Z:964e1544-4add-4427-9146-7aa355385938", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5215,12 +3266,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5233,7 +3284,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5241,7 +3292,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:37:58 GMT", + "Date": "Tue, 25 Oct 2022 11:10:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5249,9 +3300,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ec36354-da8a-496a-8d43-cc1fe0e4a0e2", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143758Z:6ec36354-da8a-496a-8d43-cc1fe0e4a0e2", + "x-ms-correlation-request-id": "6bd60456-6a84-4968-9d61-67976aab95df", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111046Z:6bd60456-6a84-4968-9d61-67976aab95df", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5260,12 +3311,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5278,7 +3329,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5286,7 +3337,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:38:08 GMT", + "Date": "Tue, 25 Oct 2022 11:10:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5294,9 +3345,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aaf0feea-aa13-4545-9ec3-384e1c5587e0", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143809Z:aaf0feea-aa13-4545-9ec3-384e1c5587e0", + "x-ms-correlation-request-id": "69303872-fc89-4617-a21d-8c98099b4b69", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111058Z:69303872-fc89-4617-a21d-8c98099b4b69", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5305,12 +3356,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5323,7 +3374,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5331,7 +3382,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:38:18 GMT", + "Date": "Tue, 25 Oct 2022 11:11:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5339,9 +3390,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf3b2da2-d8da-47dd-b7a4-8b59f7764224", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143819Z:bf3b2da2-d8da-47dd-b7a4-8b59f7764224", + "x-ms-correlation-request-id": "fc8de0d9-31f4-4e18-b4d7-3050862d50a4", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111109Z:fc8de0d9-31f4-4e18-b4d7-3050862d50a4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5350,12 +3401,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5368,7 +3419,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5376,7 +3427,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:38:30 GMT", + "Date": "Tue, 25 Oct 2022 11:11:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5384,9 +3435,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71fe6f96-3cce-4acd-96ac-9080d7da8b35", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143830Z:71fe6f96-3cce-4acd-96ac-9080d7da8b35", + "x-ms-correlation-request-id": "196d27a4-d2b7-4c65-9e3c-d0f896b2f1a4", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111119Z:196d27a4-d2b7-4c65-9e3c-d0f896b2f1a4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5395,12 +3446,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5413,7 +3464,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5421,7 +3472,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:38:41 GMT", + "Date": "Tue, 25 Oct 2022 11:11:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5429,9 +3480,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db8c996f-b3da-43a2-ba47-5e932423ea9f", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143842Z:db8c996f-b3da-43a2-ba47-5e932423ea9f", + "x-ms-correlation-request-id": "0aec72ed-f30c-481a-a135-83c89dfd5dd2", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111130Z:0aec72ed-f30c-481a-a135-83c89dfd5dd2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5440,12 +3491,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5458,7 +3509,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5466,7 +3517,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:38:52 GMT", + "Date": "Tue, 25 Oct 2022 11:11:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5474,9 +3525,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77bdbe20-17b0-46ee-9855-654893e668a1", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143852Z:77bdbe20-17b0-46ee-9855-654893e668a1", + "x-ms-correlation-request-id": "f0a6f082-d6ed-42ba-acdd-4e6ebf1c5d43", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111140Z:f0a6f082-d6ed-42ba-acdd-4e6ebf1c5d43", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5485,12 +3536,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5503,7 +3554,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5511,7 +3562,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:39:03 GMT", + "Date": "Tue, 25 Oct 2022 11:11:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5519,9 +3570,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db7fec91-d95a-406e-a0ac-c3830a8d4edf", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143903Z:db7fec91-d95a-406e-a0ac-c3830a8d4edf", + "x-ms-correlation-request-id": "88314e03-bf53-4854-9c13-dfb5e6f36b80", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111151Z:88314e03-bf53-4854-9c13-dfb5e6f36b80", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5530,12 +3581,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5548,7 +3599,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5556,7 +3607,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:39:13 GMT", + "Date": "Tue, 25 Oct 2022 11:12:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5564,9 +3615,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9682ca9a-925b-4ce3-b5bb-bed7e9d341cd", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143914Z:9682ca9a-925b-4ce3-b5bb-bed7e9d341cd", + "x-ms-correlation-request-id": "7ce46c67-f925-4d54-a63c-178c5e4fc1b6", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111202Z:7ce46c67-f925-4d54-a63c-178c5e4fc1b6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5575,12 +3626,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5593,7 +3644,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5601,7 +3652,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:39:24 GMT", + "Date": "Tue, 25 Oct 2022 11:12:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5609,9 +3660,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b1a1315-6d92-4c86-97e8-7eb4770d3217", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143924Z:6b1a1315-6d92-4c86-97e8-7eb4770d3217", + "x-ms-correlation-request-id": "b6c9d0f2-d6a6-49b7-9cce-3b793696e657", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111213Z:b6c9d0f2-d6a6-49b7-9cce-3b793696e657", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5620,12 +3671,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5638,7 +3689,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5646,7 +3697,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:39:37 GMT", + "Date": "Tue, 25 Oct 2022 11:12:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5654,9 +3705,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f91d17ec-fab4-4f2c-b896-3760c0ba6899", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143938Z:f91d17ec-fab4-4f2c-b896-3760c0ba6899", + "x-ms-correlation-request-id": "16c898a1-57d6-47a2-a59c-629b92f42799", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111224Z:16c898a1-57d6-47a2-a59c-629b92f42799", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5665,12 +3716,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5683,7 +3734,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5691,7 +3742,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:39:47 GMT", + "Date": "Tue, 25 Oct 2022 11:12:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5699,9 +3750,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86ac4f31-5066-49cc-a148-21b0dbb2d291", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143948Z:86ac4f31-5066-49cc-a148-21b0dbb2d291", + "x-ms-correlation-request-id": "e449d6ff-3898-4c42-8398-2212332c98f3", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111234Z:e449d6ff-3898-4c42-8398-2212332c98f3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5710,12 +3761,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5728,7 +3779,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5736,7 +3787,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:39:59 GMT", + "Date": "Tue, 25 Oct 2022 11:12:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5744,9 +3795,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00f96db7-40cc-4de3-aa1a-24ab9b783a00", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-routing-request-id": "WESTEUROPE:20220919T143959Z:00f96db7-40cc-4de3-aa1a-24ab9b783a00", + "x-ms-correlation-request-id": "317cd51d-5660-409d-a50b-80307956ceea", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111246Z:317cd51d-5660-409d-a50b-80307956ceea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5755,12 +3806,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5773,7 +3824,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5781,7 +3832,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:40:10 GMT", + "Date": "Tue, 25 Oct 2022 11:12:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5789,9 +3840,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "591e2cdb-ae38-45a9-abe9-cd565b7475ce", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144010Z:591e2cdb-ae38-45a9-abe9-cd565b7475ce", + "x-ms-correlation-request-id": "eb43df42-2ec8-4c19-add2-bdee51742bea", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111256Z:eb43df42-2ec8-4c19-add2-bdee51742bea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5800,12 +3851,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5818,7 +3869,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5826,7 +3877,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:40:20 GMT", + "Date": "Tue, 25 Oct 2022 11:13:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5834,9 +3885,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ce59713-bacd-4a98-8c5f-f6096e4735f7", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144021Z:0ce59713-bacd-4a98-8c5f-f6096e4735f7", + "x-ms-correlation-request-id": "9cd54c10-68e6-439e-8df4-54fefe8160ac", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111307Z:9cd54c10-68e6-439e-8df4-54fefe8160ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5845,12 +3896,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5863,7 +3914,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5871,7 +3922,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:40:31 GMT", + "Date": "Tue, 25 Oct 2022 11:13:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5879,9 +3930,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb91e078-706c-46da-84c8-93cedcad0af0", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144031Z:eb91e078-706c-46da-84c8-93cedcad0af0", + "x-ms-correlation-request-id": "0337a7ce-6b76-40e3-8900-8012d8a5bc92", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111317Z:0337a7ce-6b76-40e3-8900-8012d8a5bc92", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5890,12 +3941,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5908,7 +3959,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5916,7 +3967,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:40:41 GMT", + "Date": "Tue, 25 Oct 2022 11:13:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5924,9 +3975,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d016ca50-727b-4a65-ad4f-6097ebcc188a", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144042Z:d016ca50-727b-4a65-ad4f-6097ebcc188a", + "x-ms-correlation-request-id": "a24b1812-b6ee-4ccd-bed7-da4a71f70026", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111328Z:a24b1812-b6ee-4ccd-bed7-da4a71f70026", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5935,12 +3986,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5953,7 +4004,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5961,7 +4012,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:40:52 GMT", + "Date": "Tue, 25 Oct 2022 11:13:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5969,9 +4020,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06c64f7d-6970-438b-ad41-18b615331def", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144053Z:06c64f7d-6970-438b-ad41-18b615331def", + "x-ms-correlation-request-id": "60ad11ff-f8fa-460c-9575-3339da8a7981", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111339Z:60ad11ff-f8fa-460c-9575-3339da8a7981", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -5980,12 +4031,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -5998,7 +4049,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6006,7 +4057,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:41:03 GMT", + "Date": "Tue, 25 Oct 2022 11:13:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6014,9 +4065,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28a1ab04-6995-4143-89c3-ad98cf5f34f3", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144103Z:28a1ab04-6995-4143-89c3-ad98cf5f34f3", + "x-ms-correlation-request-id": "96038957-a9d9-49f9-be67-851470dd24b9", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111350Z:96038957-a9d9-49f9-be67-851470dd24b9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6025,12 +4076,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -6043,7 +4094,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6051,7 +4102,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:41:13 GMT", + "Date": "Tue, 25 Oct 2022 11:14:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6059,9 +4110,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9fda67fd-fbfa-42ee-9583-c2b815698942", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144114Z:9fda67fd-fbfa-42ee-9583-c2b815698942", + "x-ms-correlation-request-id": "05b0cb94-c28f-4797-bb8b-3c6389a260e7", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111400Z:05b0cb94-c28f-4797-bb8b-3c6389a260e7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6070,12 +4121,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", + "creationDate": "2022-10-25T11:09:20Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -6088,7 +4139,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6096,7 +4147,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:41:24 GMT", + "Date": "Tue, 25 Oct 2022 11:14:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6104,9 +4155,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d71b6dd4-4bf6-49d5-a46d-2871239f89d0", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144125Z:d71b6dd4-4bf6-49d5-a46d-2871239f89d0", + "x-ms-correlation-request-id": "a4cd9808-dda7-465d-9688-ee83af9dfe01", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111411Z:a4cd9808-dda7-465d-9688-ee83af9dfe01", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6115,12 +4166,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, + "creationDate": "2022-10-25T11:09:31Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -6133,7 +4184,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6141,7 +4192,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:41:25 GMT", + "Date": "Tue, 25 Oct 2022 11:14:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6149,9 +4200,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfe818f9-f8bb-4911-b32b-02c61ab7b823", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144126Z:dfe818f9-f8bb-4911-b32b-02c61ab7b823", + "x-ms-correlation-request-id": "0b227686-fc01-4b16-ba7b-316f44fb619e", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111412Z:0b227686-fc01-4b16-ba7b-316f44fb619e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6162,12 +4213,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:25:56Z", - "backupId": "71bd4675-4cab-e7bc-ab4f-51af67064992", - "size": 0, + "creationDate": "2022-10-25T11:07:49Z", + "backupId": "d1405209-7bf5-aac9-2f56-48d43e67577c", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -6178,12 +4229,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T14:33:41Z", - "backupId": "c73ab382-3ff4-52dc-42da-ae8c9c90fa7c", - "size": 0, + "creationDate": "2022-10-25T11:09:31Z", + "backupId": "2fe90ebe-26f7-5bf8-e58e-850ddfcecf51", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-70dd2307", "useExistingSnapshot": false } @@ -6198,7 +4249,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6206,7 +4257,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:41:25 GMT", + "Date": "Tue, 25 Oct 2022 11:14:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6214,9 +4265,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40cb5aa8-e7a0-411a-95f7-35911d20dafd", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144126Z:40cb5aa8-e7a0-411a-95f7-35911d20dafd", + "x-ms-correlation-request-id": "0792db00-d489-44f3-bbcf-73266ca71cdc", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111412Z:0792db00-d489-44f3-bbcf-73266ca71cdc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6239,7 +4290,7 @@ "Connection": "keep-alive", "Content-Length": "413", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -6258,31 +4309,31 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/db9db88e-60ca-4686-b47e-0b6e50097d9d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84b2f8c1-f1ae-46fb-8444-ffa4d437edb9?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "2743", + "Content-Length": "2742", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:41:26 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A41%3A27.1947899Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:14:13 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A14%3A13.598661Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/db9db88e-60ca-4686-b47e-0b6e50097d9d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84b2f8c1-f1ae-46fb-8444-ffa4d437edb9?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9c46541-1001-4d80-9027-7fbbb59f2695", + "x-ms-correlation-request-id": "bb350ea1-f4a3-4227-84a0-d5b3f218b2d7", "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144127Z:b9c46541-1001-4d80-9027-7fbbb59f2695", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111413Z:bb350ea1-f4a3-4227-84a0-d5b3f218b2d7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A41%3A27.1947899Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A14%3A13.598661Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:25:24.2463093Z" + "CreatedOnDate": "2022-10-25T11:09:18.4154393Z" }, "properties": { "dataProtection": { @@ -6293,7 +4344,7 @@ } }, "provisioningState": "Patching", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-70dd2307", "usageThreshold": 107374182400, @@ -6321,7 +4372,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_a1505bef", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f2f3efb", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -6336,8 +4387,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "mountTargetId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "ipAddress": "10.0.0.4" } ], @@ -6356,21 +4407,61 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:20:36.3479161Z", + "createdAt": "2022-10-25T11:02:12.8501409Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:33:40.2838002Z" + "lastModifiedAt": "2022-10-25T11:09:18.5835871Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84b2f8c1-f1ae-46fb-8444-ffa4d437edb9?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:14:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a2a5324f-550d-40fe-8afd-3847119da119", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111413Z:a2a5324f-550d-40fe-8afd-3847119da119", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84b2f8c1-f1ae-46fb-8444-ffa4d437edb9", + "name": "84b2f8c1-f1ae-46fb-8444-ffa4d437edb9", + "status": "Patching", + "startTime": "2022-10-25T11:14:13.5942518Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/db9db88e-60ca-4686-b47e-0b6e50097d9d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84b2f8c1-f1ae-46fb-8444-ffa4d437edb9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6378,7 +4469,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:41:57 GMT", + "Date": "Tue, 25 Oct 2022 11:14:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6386,17 +4477,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "141aa9db-10cd-4bda-8c01-8fc3ac83e249", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144157Z:141aa9db-10cd-4bda-8c01-8fc3ac83e249", + "x-ms-correlation-request-id": "753731e2-1916-4a33-8979-04c1cbbd8a5e", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111444Z:753731e2-1916-4a33-8979-04c1cbbd8a5e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/db9db88e-60ca-4686-b47e-0b6e50097d9d", - "name": "db9db88e-60ca-4686-b47e-0b6e50097d9d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84b2f8c1-f1ae-46fb-8444-ffa4d437edb9", + "name": "84b2f8c1-f1ae-46fb-8444-ffa4d437edb9", "status": "Succeeded", - "startTime": "2022-09-19T14:41:27.1974162Z", - "endTime": "2022-09-19T14:41:29.8547047Z", + "startTime": "2022-10-25T11:14:13.5942518Z", + "endTime": "2022-10-25T11:14:18.9223799Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" @@ -6404,13 +4495,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/db9db88e-60ca-4686-b47e-0b6e50097d9d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/84b2f8c1-f1ae-46fb-8444-ffa4d437edb9?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6418,7 +4509,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:41:57 GMT", + "Date": "Tue, 25 Oct 2022 11:14:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6426,19 +4517,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6728edd-51cc-4532-aa55-4d6365de369b", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144157Z:d6728edd-51cc-4532-aa55-4d6365de369b", + "x-ms-correlation-request-id": "39b7f6df-138e-43b4-81a5-7f477df4b85e", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111444Z:39b7f6df-138e-43b4-81a5-7f477df4b85e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A41%3A29.8612007Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A14%3A18.9146305Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:25:24.2463093Z" + "CreatedOnDate": "2022-10-25T11:09:18.4154393Z" }, "properties": { "dataProtection": { @@ -6448,12 +4539,12 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault" } }, - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-70dd2307", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", "usageThreshold": 107374182400, - "usedBytes": 0, + "usedBytes": 356352, "exportPolicy": { "rules": [ { @@ -6479,19 +4570,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_a1505bef", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f2f3efb", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", - "poolId": "d84595e4-dbf5-36bb-9952-b94532119f37", + "poolId": "1fe88703-290e-4c77-9f47-260f38b5dd36", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "mountTargetId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "startIp": "", "endIp": "", "gateway": "", @@ -6523,10 +4614,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:20:36.3479161Z", + "createdAt": "2022-10-25T11:02:12.8501409Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:41:27.0656673Z" + "lastModifiedAt": "2022-10-25T11:14:13.449037Z" } } }, @@ -6537,7 +4628,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -6545,15 +4636,15 @@ "Cache-Control": "no-cache", "Content-Length": "77", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:42:00 GMT", + "Date": "Tue, 25 Oct 2022 11:14:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c10dba30-03e4-4f7f-8dfa-ecfb1a4410f0", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144200Z:c10dba30-03e4-4f7f-8dfa-ecfb1a4410f0", + "x-ms-correlation-request-id": "bf511f73-67d5-4967-a6ff-a3140ec3cabe", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111447Z:bf511f73-67d5-4967-a6ff-a3140ec3cabe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6570,7 +4661,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6578,7 +4669,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:42:01 GMT", + "Date": "Tue, 25 Oct 2022 11:14:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6586,9 +4677,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2f1dae3-16e5-4b46-8e73-d2060f73a16d", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144201Z:a2f1dae3-16e5-4b46-8e73-d2060f73a16d", + "x-ms-correlation-request-id": "9e62a645-c222-4124-84b2-b78d84f9331a", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111447Z:9e62a645-c222-4124-84b2-b78d84f9331a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6611,7 +4702,7 @@ "Connection": "keep-alive", "Content-Length": "413", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -6633,8 +4724,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:42:01 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T14%3A42%3A01.9320909Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:14:47 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A14%3A48.4158092Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6642,19 +4733,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a72d2e6c-7fef-48cd-a573-793c6f9d6600", + "x-ms-correlation-request-id": "b3474d68-6a78-4865-9464-01a4a8e750da", "x-ms-ratelimit-remaining-subscription-writes": "1189", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144202Z:a72d2e6c-7fef-48cd-a573-793c6f9d6600", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111448Z:b3474d68-6a78-4865-9464-01a4a8e750da", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A42%3A01.9320909Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A14%3A48.4158092Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:25:24.2463093Z" + "CreatedOnDate": "2022-10-25T11:09:18.4154393Z" }, "properties": { "dataProtection": { @@ -6665,7 +4756,7 @@ } }, "provisioningState": "Succeeded", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-70dd2307", "usageThreshold": 107374182400, @@ -6693,7 +4784,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_a1505bef", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f2f3efb", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -6708,8 +4799,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "mountTargetId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "ipAddress": "10.0.0.4" } ], @@ -6728,10 +4819,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:20:36.3479161Z", + "createdAt": "2022-10-25T11:02:12.8501409Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:42:01.8056148Z" + "lastModifiedAt": "2022-10-25T11:14:48.2577425Z" } } }, @@ -6742,7 +4833,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -6750,15 +4841,15 @@ "Cache-Control": "no-cache", "Content-Length": "77", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:42:04 GMT", + "Date": "Tue, 25 Oct 2022 11:14:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0700f923-8d86-41f3-9275-a1c4d44ef4b3", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144204Z:0700f923-8d86-41f3-9275-a1c4d44ef4b3", + "x-ms-correlation-request-id": "e662d9ed-dba4-4287-9d81-b2a34f234f87", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111450Z:e662d9ed-dba4-4287-9d81-b2a34f234f87", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6775,7 +4866,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6783,7 +4874,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:42:04 GMT", + "Date": "Tue, 25 Oct 2022 11:14:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6791,9 +4882,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c73b3cb6-85ce-48a9-a5ac-c2c744b6963e", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144204Z:c73b3cb6-85ce-48a9-a5ac-c2c744b6963e", + "x-ms-correlation-request-id": "c115ea8d-5267-4667-9961-946409448227", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111452Z:c115ea8d-5267-4667-9961-946409448227", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -6808,36 +4899,196 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9619d21d-1116-4ddd-8c2b-002b36bc0986?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 14:42:05 GMT", + "Date": "Tue, 25 Oct 2022 11:14:52 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9619d21d-1116-4ddd-8c2b-002b36bc0986?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "559c134b-efdb-430c-8d60-7060ecf30c44", + "x-ms-correlation-request-id": "a08eff72-4e76-44ad-b204-53c201e88ef5", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144205Z:559c134b-efdb-430c-8d60-7060ecf30c44", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111453Z:a08eff72-4e76-44ad-b204-53c201e88ef5", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9619d21d-1116-4ddd-8c2b-002b36bc0986?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:14:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "394f8e66-808f-4fee-825e-92c75922a59c", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111453Z:394f8e66-808f-4fee-825e-92c75922a59c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8", + "name": "115384ec-fe9a-44fe-a689-2d8d6283bee8", + "status": "Deleting", + "startTime": "2022-10-25T11:14:53.2264812Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:15:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "72506881-2bd7-4e7e-b73d-edb306c965dc", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111523Z:72506881-2bd7-4e7e-b73d-edb306c965dc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8", + "name": "115384ec-fe9a-44fe-a689-2d8d6283bee8", + "status": "Deleting", + "startTime": "2022-10-25T11:14:53.2264812Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:15:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2be41a3b-84e7-41c7-84e6-dadc1c73d1e9", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111554Z:2be41a3b-84e7-41c7-84e6-dadc1c73d1e9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8", + "name": "115384ec-fe9a-44fe-a689-2d8d6283bee8", + "status": "Deleting", + "startTime": "2022-10-25T11:14:53.2264812Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:16:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "06a2e2a1-7d86-482d-a22c-0112e6216c1a", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111624Z:06a2e2a1-7d86-482d-a22c-0112e6216c1a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8", + "name": "115384ec-fe9a-44fe-a689-2d8d6283bee8", + "status": "Deleting", + "startTime": "2022-10-25T11:14:53.2264812Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6845,7 +5096,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:42:35 GMT", + "Date": "Tue, 25 Oct 2022 11:16:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6853,16 +5104,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21a16a80-9ac1-4d12-84b7-42d72620b68c", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144236Z:21a16a80-9ac1-4d12-84b7-42d72620b68c", + "x-ms-correlation-request-id": "99a49a04-8b9b-4477-bf97-ed81d9e941d7", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111654Z:99a49a04-8b9b-4477-bf97-ed81d9e941d7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9619d21d-1116-4ddd-8c2b-002b36bc0986", - "name": "9619d21d-1116-4ddd-8c2b-002b36bc0986", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8", + "name": "115384ec-fe9a-44fe-a689-2d8d6283bee8", "status": "Deleting", - "startTime": "2022-09-19T14:42:05.643146Z", + "startTime": "2022-10-25T11:14:53.2264812Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -6871,13 +5122,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9619d21d-1116-4ddd-8c2b-002b36bc0986?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6885,7 +5136,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:43:05 GMT", + "Date": "Tue, 25 Oct 2022 11:17:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6893,16 +5144,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1624def5-29b0-4283-856a-35f0c7cc0f9a", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144306Z:1624def5-29b0-4283-856a-35f0c7cc0f9a", + "x-ms-correlation-request-id": "d1ff0958-7ca0-4998-81b2-02f5ec7c8f3f", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111724Z:d1ff0958-7ca0-4998-81b2-02f5ec7c8f3f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9619d21d-1116-4ddd-8c2b-002b36bc0986", - "name": "9619d21d-1116-4ddd-8c2b-002b36bc0986", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8", + "name": "115384ec-fe9a-44fe-a689-2d8d6283bee8", "status": "Deleting", - "startTime": "2022-09-19T14:42:05.643146Z", + "startTime": "2022-10-25T11:14:53.2264812Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -6911,13 +5162,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9619d21d-1116-4ddd-8c2b-002b36bc0986?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6925,7 +5176,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:43:36 GMT", + "Date": "Tue, 25 Oct 2022 11:17:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6933,17 +5184,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02b8bd23-ce36-4339-9c68-8ca6089508d1", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144336Z:02b8bd23-ce36-4339-9c68-8ca6089508d1", + "x-ms-correlation-request-id": "392745c9-4901-4a33-ad77-d3df7393cdfa", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111755Z:392745c9-4901-4a33-ad77-d3df7393cdfa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9619d21d-1116-4ddd-8c2b-002b36bc0986", - "name": "9619d21d-1116-4ddd-8c2b-002b36bc0986", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8", + "name": "115384ec-fe9a-44fe-a689-2d8d6283bee8", "status": "Succeeded", - "startTime": "2022-09-19T14:42:05.643146Z", - "endTime": "2022-09-19T14:43:18.3152815Z", + "startTime": "2022-10-25T11:14:53.2264812Z", + "endTime": "2022-10-25T11:17:31.5510837Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307" @@ -6951,13 +5202,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9619d21d-1116-4ddd-8c2b-002b36bc0986?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/115384ec-fe9a-44fe-a689-2d8d6283bee8?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6965,7 +5216,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:43:36 GMT", + "Date": "Tue, 25 Oct 2022 11:17:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6973,19 +5224,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef61170c-1198-4230-8f2f-9bacc557559d", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144337Z:ef61170c-1198-4230-8f2f-9bacc557559d", + "x-ms-correlation-request-id": "3cdb6e9c-719f-4a35-bc2b-179870e141bc", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T111755Z:3cdb6e9c-719f-4a35-bc2b-179870e141bc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1/sdk-py-tests-vol-3-70dd2307", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A43%3A01.2707409Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A17%3A26.3257128Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:25:24.2463093Z" + "CreatedOnDate": "2022-10-25T11:09:18.4154393Z" }, "properties": { "dataProtection": { @@ -6995,12 +5246,12 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/vaults/cbsvault" } }, - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-70dd2307", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", "usageThreshold": 107374182400, - "usedBytes": 0, + "usedBytes": 356352, "exportPolicy": { "rules": [ { @@ -7026,19 +5277,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_a1505bef", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_7f2f3efb", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-70dd2307", - "poolId": "d84595e4-dbf5-36bb-9952-b94532119f37", + "poolId": "1fe88703-290e-4c77-9f47-260f38b5dd36", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", - "fileSystemId": "cfd2cdbf-a22b-fae7-b1a2-a18f4e75e12c", + "mountTargetId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", + "fileSystemId": "d1cc9099-099c-9a2b-1ac9-d4fe1f02aa0f", "startIp": "", "endIp": "", "gateway": "", @@ -7070,10 +5321,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:20:36.3479161Z", + "createdAt": "2022-10-25T11:02:12.8501409Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:42:01.8056148Z" + "lastModifiedAt": "2022-10-25T11:14:48.2577425Z" } } }, @@ -7084,7 +5335,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -7092,14 +5343,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:46:57 GMT", + "Date": "Tue, 25 Oct 2022 11:21:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4594d3d1-9de3-4acf-9940-1c1b40a3cda6", + "x-ms-correlation-request-id": "4011c08f-a4bb-4976-8580-7290bb24a0ea", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144658Z:4594d3d1-9de3-4acf-9940-1c1b40a3cda6" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112118Z:4011c08f-a4bb-4976-8580-7290bb24a0ea" }, "ResponseBody": { "error": { @@ -7116,36 +5367,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/171e8735-ece4-42b3-81b5-19d87ca9d71e?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e853164b-0af5-4060-8351-56306bf2a17a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 14:47:09 GMT", + "Date": "Tue, 25 Oct 2022 11:21:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/171e8735-ece4-42b3-81b5-19d87ca9d71e?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e853164b-0af5-4060-8351-56306bf2a17a?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "535ebd94-b976-4502-9ea7-3b83ea00a6e4", + "x-ms-correlation-request-id": "7f4d9b0d-1af8-448b-998e-4fe898b12b18", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144710Z:535ebd94-b976-4502-9ea7-3b83ea00a6e4", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112132Z:7f4d9b0d-1af8-448b-998e-4fe898b12b18", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/171e8735-ece4-42b3-81b5-19d87ca9d71e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e853164b-0af5-4060-8351-56306bf2a17a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7153,7 +5404,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:47:39 GMT", + "Date": "Tue, 25 Oct 2022 11:21:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7161,17 +5412,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "523792cf-84e7-4748-9164-44eefe9eeaa2", + "x-ms-correlation-request-id": "d7c99059-52c0-4d57-9576-f117c06afb31", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144740Z:523792cf-84e7-4748-9164-44eefe9eeaa2", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112132Z:d7c99059-52c0-4d57-9576-f117c06afb31", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e853164b-0af5-4060-8351-56306bf2a17a", + "name": "e853164b-0af5-4060-8351-56306bf2a17a", + "status": "Deleting", + "startTime": "2022-10-25T11:21:32.0438063Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e853164b-0af5-4060-8351-56306bf2a17a?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:22:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6155bd02-809a-4cc1-8f55-e08720ae19d7", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112202Z:6155bd02-809a-4cc1-8f55-e08720ae19d7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/171e8735-ece4-42b3-81b5-19d87ca9d71e", - "name": "171e8735-ece4-42b3-81b5-19d87ca9d71e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e853164b-0af5-4060-8351-56306bf2a17a", + "name": "e853164b-0af5-4060-8351-56306bf2a17a", "status": "Succeeded", - "startTime": "2022-09-19T14:47:10.1896105Z", - "endTime": "2022-09-19T14:47:11.0289478Z", + "startTime": "2022-10-25T11:21:32.0438063Z", + "endTime": "2022-10-25T11:21:33.1689321Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1" @@ -7179,13 +5470,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/171e8735-ece4-42b3-81b5-19d87ca9d71e?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e853164b-0af5-4060-8351-56306bf2a17a?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7193,7 +5484,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:47:40 GMT", + "Date": "Tue, 25 Oct 2022 11:22:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7201,22 +5492,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0c7826c-f3a0-46b3-83eb-70dc6827506e", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144740Z:b0c7826c-f3a0-46b3-83eb-70dc6827506e", + "x-ms-correlation-request-id": "b2cb1576-fc2b-4fb2-a91a-2cf6aea450dc", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112202Z:b2cb1576-fc2b-4fb2-a91a-2cf6aea450dc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-70dd2307/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A47%3A10.1886574Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A21%3A32.0300024Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:19:45.3884112Z" + "CreatedOnDate": "2022-10-25T11:01:58.3686689Z" }, "properties": { - "poolId": "d84595e4-dbf5-36bb-9952-b94532119f37", + "poolId": "1fe88703-290e-4c77-9f47-260f38b5dd36", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307/capacityPools/sdk-py-tests-pool-1", @@ -7230,10 +5521,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:19:52.5839529Z", + "createdAt": "2022-10-25T11:01:59.3424462Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:19:52.5839529Z" + "lastModifiedAt": "2022-10-25T11:01:59.3424462Z" } } }, @@ -7245,20 +5536,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 14:47:51 GMT", + "Date": "Tue, 25 Oct 2022 11:22:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79735694-e147-4b39-97b7-fe0bb3450fd5", + "x-ms-correlation-request-id": "1ce95f7a-65ca-45ab-8b0b-388dff61986b", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144751Z:79735694-e147-4b39-97b7-fe0bb3450fd5" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112213Z:1ce95f7a-65ca-45ab-8b0b-388dff61986b" }, "ResponseBody": null }, @@ -7270,20 +5561,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 14:48:01 GMT", + "Date": "Tue, 25 Oct 2022 11:22:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "431102fb-75c1-4109-a3f2-5f458d7b1752", + "x-ms-correlation-request-id": "69157678-0881-4342-8994-014a39ebdad2", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144801Z:431102fb-75c1-4109-a3f2-5f458d7b1752" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112223Z:69157678-0881-4342-8994-014a39ebdad2" }, "ResponseBody": null }, @@ -7295,20 +5586,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 14:48:11 GMT", + "Date": "Tue, 25 Oct 2022 11:22:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8543adc0-d588-49cc-890b-9ced8e25afa8", + "x-ms-correlation-request-id": "601dfe4d-4b42-480a-b043-0989ab36fcdc", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144811Z:8543adc0-d588-49cc-890b-9ced8e25afa8" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112233Z:601dfe4d-4b42-480a-b043-0989ab36fcdc" }, "ResponseBody": null }, @@ -7320,20 +5611,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 14:48:21 GMT", + "Date": "Tue, 25 Oct 2022 11:22:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0cdc2db3-13f5-4718-883a-ddf7de3bedf8", + "x-ms-correlation-request-id": "4118450c-e7f9-47bc-a580-1d5f2aeeb29e", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144822Z:0cdc2db3-13f5-4718-883a-ddf7de3bedf8" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112244Z:4118450c-e7f9-47bc-a580-1d5f2aeeb29e" }, "ResponseBody": null }, @@ -7344,7 +5635,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -7352,14 +5643,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:48:31 GMT", + "Date": "Tue, 25 Oct 2022 11:22:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c11f7d00-75a3-4a1d-ae9d-dbf883e877f7", + "x-ms-correlation-request-id": "b1a19c61-ab48-495f-b4ca-f81e85a2febd", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144832Z:c11f7d00-75a3-4a1d-ae9d-dbf883e877f7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112254Z:b1a19c61-ab48-495f-b4ca-f81e85a2febd" }, "ResponseBody": { "error": { @@ -7376,36 +5667,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d50e27a8-d700-493e-b45a-7345149e6011?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5a1af982-a38a-46b7-ba1f-38e481969fe1?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 14:48:33 GMT", + "Date": "Tue, 25 Oct 2022 11:22:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d50e27a8-d700-493e-b45a-7345149e6011?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5a1af982-a38a-46b7-ba1f-38e481969fe1?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e85c2b1f-1fe9-4807-8ff6-d8f16dca1b48", + "x-ms-correlation-request-id": "59f5d298-3d4f-4238-82d2-480302c7cf0b", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144833Z:e85c2b1f-1fe9-4807-8ff6-d8f16dca1b48", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112255Z:59f5d298-3d4f-4238-82d2-480302c7cf0b", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d50e27a8-d700-493e-b45a-7345149e6011?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5a1af982-a38a-46b7-ba1f-38e481969fe1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7413,7 +5704,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:03 GMT", + "Date": "Tue, 25 Oct 2022 11:22:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7421,17 +5712,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1d8f2c9-e4ff-49f1-a62f-a63fbfc44074", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144903Z:d1d8f2c9-e4ff-49f1-a62f-a63fbfc44074", + "x-ms-correlation-request-id": "8357ddba-a582-4025-9646-2cfa8b9aa97d", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112256Z:8357ddba-a582-4025-9646-2cfa8b9aa97d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d50e27a8-d700-493e-b45a-7345149e6011", - "name": "d50e27a8-d700-493e-b45a-7345149e6011", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5a1af982-a38a-46b7-ba1f-38e481969fe1", + "name": "5a1af982-a38a-46b7-ba1f-38e481969fe1", "status": "Succeeded", - "startTime": "2022-09-19T14:48:33.5946862Z", - "endTime": "2022-09-19T14:48:33.6572587Z", + "startTime": "2022-10-25T11:22:55.7090621Z", + "endTime": "2022-10-25T11:22:55.7559349Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307" @@ -7439,13 +5730,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d50e27a8-d700-493e-b45a-7345149e6011?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5a1af982-a38a-46b7-ba1f-38e481969fe1?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7453,7 +5744,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:03 GMT", + "Date": "Tue, 25 Oct 2022 11:22:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7461,19 +5752,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d4abab7-3ca3-4946-a49d-dd2157df8473", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144904Z:1d4abab7-3ca3-4946-a49d-dd2157df8473", + "x-ms-correlation-request-id": "8dd09762-73d4-4aad-b29f-820c12886b91", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112256Z:8dd09762-73d4-4aad-b29f-820c12886b91", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307", "name": "sdk-py-tests-acc-1-70dd2307", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T14%3A48%3A33.6044682Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A22%3A55.6973858Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T14:19:10.9270563Z" + "CreatedOnDate": "2022-10-25T11:01:53.9940244Z" }, "properties": { "encryption": { @@ -7484,10 +5775,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T14:19:12.2457768Z", + "createdAt": "2022-10-25T11:01:55.1367512Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T14:19:12.2457768Z" + "lastModifiedAt": "2022-10-25T11:01:55.1367512Z" } } }, @@ -7498,50 +5789,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:49:03 GMT", + "Date": "Tue, 25 Oct 2022 11:22:56 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d65eac7-d94b-4e84-81f3-476af2f55fb3", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144904Z:1d65eac7-d94b-4e84-81f3-476af2f55fb3" + "x-ms-correlation-request-id": "c1440bbc-0c94-4621-b0b6-c1d6a9564166", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112256Z:c1440bbc-0c94-4621-b0b6-c1d6a9564166", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-70dd2307\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-70dd2307?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3a72d6e7-1932-43b8-a220-16a18bd15fed?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/3e600e77-8e52-445e-8014-3f0dd7c3d106?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 14:49:04 GMT", + "Date": "Tue, 25 Oct 2022 11:22:56 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/3a72d6e7-1932-43b8-a220-16a18bd15fed?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/3e600e77-8e52-445e-8014-3f0dd7c3d106?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -7550,10 +5843,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c441f293-8448-4c52-a662-22ba46cae2b0", - "x-ms-correlation-request-id": "b70f79d1-2a7f-446d-9d4d-66d493131490", + "x-ms-arm-service-request-id": "e0590a0e-2d1f-4b81-98bb-dc7d7eb97175", + "x-ms-correlation-request-id": "74afcea5-c395-4f5d-8acc-ea8122826353", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T144905Z:b70f79d1-2a7f-446d-9d4d-66d493131490" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T112257Z:74afcea5-c395-4f5d-8acc-ea8122826353" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_update_backup.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_update_backup.json index 2606eec72c33..3b7a21f26753 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_update_backup.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup.pyTestNetAppBackuptest_update_backup.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:28 GMT", + "Date": "Tue, 25 Oct 2022 11:52:49 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:28 GMT", + "Date": "Tue, 25 Oct 2022 11:52:49 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "86b7eb51-507e-41cb-b94a-fa7c3e0d27a9", + "client-request-id": "ecdda101-b84d-49f5-b583-c6b984954288", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "86b7eb51-507e-41cb-b94a-fa7c3e0d27a9", + "client-request-id": "ecdda101-b84d-49f5-b583-c6b984954288", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:28 GMT", + "Date": "Tue, 25 Oct 2022 11:52:49 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a076991f-30f4-4c05-953f-cb93cb4d75f5?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6692a445-4429-40a3-a266-89bdee4179e0?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:36 GMT", + "Date": "Tue, 25 Oct 2022 11:52:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "5461c967-d43e-41a4-b689-ae8f260988b5", - "x-ms-correlation-request-id": "e1f975b3-ff9a-4bb3-9de4-95dde9cd5072", + "x-ms-arm-service-request-id": "e858d5e2-4713-4638-93a7-90ad9b0d9f46", + "x-ms-correlation-request-id": "46ee4f65-51a4-42a5-b9f8-3ba54828e972", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151636Z:e1f975b3-ff9a-4bb3-9de4-95dde9cd5072" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115259Z:46ee4f65-51a4-42a5-b9f8-3ba54828e972" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-b93a23ce", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce", - "etag": "W/\u00224f805010-0dce-450f-8290-f3a781d1bd93\u0022", + "etag": "W/\u0022ace9eb6a-e324-423f-bd6e-db27da283131\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:16:30.8611402Z" + "CreatedOnDate": "2022-10-25T11:52:52.0957439Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "85a5bb1e-9f38-43d9-9a79-89cc009ec038", + "resourceGuid": "a4f0ae1e-b1f7-4f48-8b87-32222692b19a", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a076991f-30f4-4c05-953f-cb93cb4d75f5?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6692a445-4429-40a3-a266-89bdee4179e0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:39 GMT", + "Date": "Tue, 25 Oct 2022 11:52:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "438bcc4d-3d24-4561-96c5-71d6826ecbcd", - "x-ms-correlation-request-id": "c23cc19d-1f89-4b78-a9b0-c25563eb0d24", + "x-ms-arm-service-request-id": "e37c0e23-2585-47f1-a4b8-3ec6881cdcb2", + "x-ms-correlation-request-id": "9bca242b-a52b-4af4-830b-83b9fd35db42", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151640Z:c23cc19d-1f89-4b78-a9b0-c25563eb0d24" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115259Z:9bca242b-a52b-4af4-830b-83b9fd35db42" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:40 GMT", - "ETag": "W/\u00229bca464f-198f-45d4-a059-af7d9017a498\u0022", + "Date": "Tue, 25 Oct 2022 11:52:59 GMT", + "ETag": "W/\u002211afb6a7-7065-4ca5-a638-2cf8d65497ae\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7f1dd8b6-5a9f-497e-8770-8ee7b6c5813e", - "x-ms-correlation-request-id": "1446be24-0737-40f7-a94e-91d0f837428a", + "x-ms-arm-service-request-id": "ce7a2b55-91db-4c0c-ad0c-9a88ec957f90", + "x-ms-correlation-request-id": "6cf175f6-f1cf-41ab-9c38-616c315c47d8", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151640Z:1446be24-0737-40f7-a94e-91d0f837428a" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115259Z:6cf175f6-f1cf-41ab-9c38-616c315c47d8" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-b93a23ce", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce", - "etag": "W/\u00229bca464f-198f-45d4-a059-af7d9017a498\u0022", + "etag": "W/\u002211afb6a7-7065-4ca5-a638-2cf8d65497ae\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:16:30.8611402Z" + "CreatedOnDate": "2022-10-25T11:52:52.0957439Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "85a5bb1e-9f38-43d9-9a79-89cc009ec038", + "resourceGuid": "a4f0ae1e-b1f7-4f48-8b87-32222692b19a", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/85aca8e3-dbb4-4cc4-be68-7b4a82325b8d?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b8027258-10a2-4932-9137-dc72ad779c20?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:40 GMT", + "Date": "Tue, 25 Oct 2022 11:52:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "65e8f073-14dc-4434-ba48-85f62612cd2f", - "x-ms-correlation-request-id": "65828100-5087-483d-9012-d294ca882427", + "x-ms-arm-service-request-id": "d8a63ac1-86f2-4ac9-aae9-5832613d5e52", + "x-ms-correlation-request-id": "2c11303e-40a1-4a6f-aca0-c26a13c14963", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151641Z:65828100-5087-483d-9012-d294ca882427" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115300Z:2c11303e-40a1-4a6f-aca0-c26a13c14963" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default", - "etag": "W/\u0022ba2f4c7e-9d7e-4025-8970-c11c28320b3e\u0022", + "etag": "W/\u00228a92013a-cad9-455e-921d-3d555d2a4288\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022ba2f4c7e-9d7e-4025-8970-c11c28320b3e\u0022", + "etag": "W/\u00228a92013a-cad9-455e-921d-3d555d2a4288\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/85aca8e3-dbb4-4cc4-be68-7b4a82325b8d?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b8027258-10a2-4932-9137-dc72ad779c20?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:43 GMT", + "Date": "Tue, 25 Oct 2022 11:53:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "33bb7e8e-8b43-4e2c-8de2-5dd8a1a51e1f", - "x-ms-correlation-request-id": "4ed79cb8-23d7-4d81-885d-4a6d686cb8c2", + "x-ms-arm-service-request-id": "4e95400c-6b07-4bca-834c-6f0dfb4de486", + "x-ms-correlation-request-id": "722867e0-d718-4e52-81b7-5b833c982cf6", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151644Z:4ed79cb8-23d7-4d81-885d-4a6d686cb8c2" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115300Z:722867e0-d718-4e52-81b7-5b833c982cf6" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:44 GMT", - "ETag": "W/\u0022a2a4f633-e100-4442-ad8f-f75e91622925\u0022", + "Date": "Tue, 25 Oct 2022 11:53:00 GMT", + "ETag": "W/\u00221c87b9d0-b2dd-4e3b-a304-9f9c85ef69c0\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b32c762d-c487-4e70-878b-a24e3a94dfda", - "x-ms-correlation-request-id": "5dbac77a-18e0-464d-a4a5-faa8cbcb753b", + "x-ms-arm-service-request-id": "15b59b8c-73e6-488d-be2a-1753a344a242", + "x-ms-correlation-request-id": "3e2e2049-61a5-49c9-afd1-67e44253f884", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151645Z:5dbac77a-18e0-464d-a4a5-faa8cbcb753b" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115301Z:3e2e2049-61a5-49c9-afd1-67e44253f884" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default", - "etag": "W/\u0022a2a4f633-e100-4442-ad8f-f75e91622925\u0022", + "etag": "W/\u00221c87b9d0-b2dd-4e3b-a304-9f9c85ef69c0\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022a2a4f633-e100-4442-ad8f-f75e91622925\u0022", + "etag": "W/\u00221c87b9d0-b2dd-4e3b-a304-9f9c85ef69c0\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:45 GMT", + "Date": "Tue, 25 Oct 2022 11:53:03 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:45 GMT", + "Date": "Tue, 25 Oct 2022 11:53:03 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "f0228e74-80d5-4bbc-8870-73e9a1737b87", + "client-request-id": "4fc17ec8-2c28-406c-be6d-f2bd2b9f9120", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "f0228e74-80d5-4bbc-8870-73e9a1737b87", + "client-request-id": "4fc17ec8-2c28-406c-be6d-f2bd2b9f9120", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:45 GMT", + "Date": "Tue, 25 Oct 2022 11:53:03 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6f8f0deb-0248-4d83-a40d-bb4b3b44de5c?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87aef6e-2218-4bb6-8d09-17e1b7650b2d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:16:49 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T15%3A16%3A48.4175762Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:53:07 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A53%3A07.0131106Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d65b9870-a90f-4955-b152-ddb323e16e74", + "x-ms-correlation-request-id": "fe0cca45-f808-4ed2-8c9f-aad239a203d4", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151649Z:d65b9870-a90f-4955-b152-ddb323e16e74", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115308Z:fe0cca45-f808-4ed2-8c9f-aad239a203d4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce", "name": "sdk-py-tests-acc-1-b93a23ce", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A16%3A48.4175762Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A53%3A07.0131106Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:16:46.3782642Z" + "CreatedOnDate": "2022-10-25T11:53:04.8021955Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T15:16:47.4623619Z", + "createdAt": "2022-10-25T11:53:05.9573524Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:16:47.4623619Z" + "lastModifiedAt": "2022-10-25T11:53:05.9573524Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6f8f0deb-0248-4d83-a40d-bb4b3b44de5c?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87aef6e-2218-4bb6-8d09-17e1b7650b2d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:17:20 GMT", + "Date": "Tue, 25 Oct 2022 11:53:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2591ca81-7393-4f04-8421-eefcfb235f30", + "x-ms-correlation-request-id": "053dcf8a-3fd9-4a2e-bb1b-6f301be5eace", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151720Z:2591ca81-7393-4f04-8421-eefcfb235f30", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115308Z:053dcf8a-3fd9-4a2e-bb1b-6f301be5eace", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6f8f0deb-0248-4d83-a40d-bb4b3b44de5c", - "name": "6f8f0deb-0248-4d83-a40d-bb4b3b44de5c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87aef6e-2218-4bb6-8d09-17e1b7650b2d", + "name": "a87aef6e-2218-4bb6-8d09-17e1b7650b2d", "status": "Succeeded", - "startTime": "2022-09-19T15:16:48.4232065Z", - "endTime": "2022-09-19T15:16:48.4700926Z", + "startTime": "2022-10-25T11:53:07.0276819Z", + "endTime": "2022-10-25T11:53:07.0744962Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:17:20 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T15%3A16%3A48.4759703Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:53:08 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A53%3A07.0787995Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "420201ec-2ffc-47f7-8c72-5ef8defe8201", + "x-ms-correlation-request-id": "b8a8ecf5-a637-4099-8956-1a3235b912fa", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151720Z:420201ec-2ffc-47f7-8c72-5ef8defe8201", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115309Z:b8a8ecf5-a637-4099-8956-1a3235b912fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce", "name": "sdk-py-tests-acc-1-b93a23ce", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A16%3A48.4759703Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A53%3A07.0787995Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:16:46.3782642Z" + "CreatedOnDate": "2022-10-25T11:53:04.8021955Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T15:16:47.4623619Z", + "createdAt": "2022-10-25T11:53:05.9573524Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:16:47.4623619Z" + "lastModifiedAt": "2022-10-25T11:53:05.9573524Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f281d5-fbff-4a6b-9a8f-50b27c2ea13e?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/507bbe8b-e8a8-4e74-9054-79119018a3a8?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "920", + "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:17:23 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T15%3A17%3A22.3068983Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:53:11 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A53%3A10.8619082Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0520f3e4-359a-4b2f-942a-1d450a2c31e2", + "x-ms-correlation-request-id": "b926eb07-fb0e-4ab7-83d0-42e92ac511f7", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151723Z:0520f3e4-359a-4b2f-942a-1d450a2c31e2", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115312Z:b926eb07-fb0e-4ab7-83d0-42e92ac511f7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A17%3A22.3068983Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A53%3A10.8619082Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:17:20.8470771Z" + "CreatedOnDate": "2022-10-25T11:53:09.3658664Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T15:17:22.116515Z", + "createdAt": "2022-10-25T11:53:10.6472412Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:17:22.116515Z" + "lastModifiedAt": "2022-10-25T11:53:10.6472412Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f281d5-fbff-4a6b-9a8f-50b27c2ea13e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/507bbe8b-e8a8-4e74-9054-79119018a3a8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:17:53 GMT", + "Date": "Tue, 25 Oct 2022 11:53:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4034b8a0-c22f-465a-87a4-c97f13f5d4c4", + "x-ms-correlation-request-id": "24b4329c-1254-4fe6-8fbd-0720dfc62d52", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151753Z:4034b8a0-c22f-465a-87a4-c97f13f5d4c4", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115312Z:24b4329c-1254-4fe6-8fbd-0720dfc62d52", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37f281d5-fbff-4a6b-9a8f-50b27c2ea13e", - "name": "37f281d5-fbff-4a6b-9a8f-50b27c2ea13e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/507bbe8b-e8a8-4e74-9054-79119018a3a8", + "name": "507bbe8b-e8a8-4e74-9054-79119018a3a8", "status": "Succeeded", - "startTime": "2022-09-19T15:17:22.3083352Z", - "endTime": "2022-09-19T15:17:23.0114516Z", + "startTime": "2022-10-25T11:53:10.9189052Z", + "endTime": "2022-10-25T11:53:11.9033673Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:17:53 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T15%3A17%3A23.0043869Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:53:11 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A53%3A11.7431479Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ab5262e-45cc-42f1-932c-f7be5f59ce05", + "x-ms-correlation-request-id": "3e3ef422-76ce-4a91-b713-3b3e46c54104", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151753Z:3ab5262e-45cc-42f1-932c-f7be5f59ce05", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115312Z:3e3ef422-76ce-4a91-b713-3b3e46c54104", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A17%3A23.0043869Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A53%3A11.7431479Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:17:20.8470771Z" + "CreatedOnDate": "2022-10-25T11:53:09.3658664Z" }, "properties": { - "poolId": "9fee49a9-8e2f-cd2a-bac1-da5c570dbd63", + "poolId": "4c59fdb1-3fda-8a54-eefa-c5d2ea98829b", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T15:17:22.116515Z", + "createdAt": "2022-10-25T11:53:10.6472412Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:17:22.116515Z" + "lastModifiedAt": "2022-10-25T11:53:10.6472412Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "1585", + "Content-Length": "1583", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:18:07 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T15%3A18%3A07.0119516Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:53:25 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A53%3A24.5570721Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "002d65f2-4232-4c39-85e7-534c4ab35478", + "x-ms-correlation-request-id": "6f8da68c-8d58-4485-8c30-54bc031e8225", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151807Z:002d65f2-4232-4c39-85e7-534c4ab35478", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115325Z:6f8da68c-8d58-4485-8c30-54bc031e8225", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A18%3A07.0119516Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A53%3A24.5570721Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:18:04.1882914Z" + "CreatedOnDate": "2022-10-25T11:53:22.9861239Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T15:18:05.1349495Z", + "createdAt": "2022-10-25T11:53:24.282224Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:18:05.1349495Z" + "lastModifiedAt": "2022-10-25T11:53:24.282224Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:18:38 GMT", + "Date": "Tue, 25 Oct 2022 11:53:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6aef093-fb57-45e3-8c31-105d4fb88887", + "x-ms-correlation-request-id": "f5fa9ea1-2207-42e6-92e2-43aff54969fd", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151838Z:f6aef093-fb57-45e3-8c31-105d4fb88887", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115325Z:f5fa9ea1-2207-42e6-92e2-43aff54969fd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d", - "name": "0ac602a7-fd98-4025-b34f-e9d5a4bc438d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", "status": "Creating", - "startTime": "2022-09-19T15:18:07.0111088Z", + "startTime": "2022-10-25T11:53:24.5647437Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:19:07 GMT", + "Date": "Tue, 25 Oct 2022 11:53:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b69eef66-2e99-4988-b385-b51c3d444c4c", + "x-ms-correlation-request-id": "b070f989-c3df-456e-8bab-a59e6de65938", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151908Z:b69eef66-2e99-4988-b385-b51c3d444c4c", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115356Z:b070f989-c3df-456e-8bab-a59e6de65938", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d", - "name": "0ac602a7-fd98-4025-b34f-e9d5a4bc438d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", "status": "Creating", - "startTime": "2022-09-19T15:18:07.0111088Z", + "startTime": "2022-10-25T11:53:24.5647437Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:19:37 GMT", + "Date": "Tue, 25 Oct 2022 11:54:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77261b94-9e34-4c03-86f8-b6a548abe81e", + "x-ms-correlation-request-id": "5d3501ce-cfe8-4bb3-9031-04e8e57da011", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T151938Z:77261b94-9e34-4c03-86f8-b6a548abe81e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115426Z:5d3501ce-cfe8-4bb3-9031-04e8e57da011", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d", - "name": "0ac602a7-fd98-4025-b34f-e9d5a4bc438d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", "status": "Creating", - "startTime": "2022-09-19T15:18:07.0111088Z", + "startTime": "2022-10-25T11:53:24.5647437Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:20:07 GMT", + "Date": "Tue, 25 Oct 2022 11:54:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e736927c-4e1e-491a-92fb-9301581b71b9", + "x-ms-correlation-request-id": "6e15908c-c9a3-4a77-a26b-12db9c7d1e81", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152008Z:e736927c-4e1e-491a-92fb-9301581b71b9", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115456Z:6e15908c-c9a3-4a77-a26b-12db9c7d1e81", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d", - "name": "0ac602a7-fd98-4025-b34f-e9d5a4bc438d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", "status": "Creating", - "startTime": "2022-09-19T15:18:07.0111088Z", + "startTime": "2022-10-25T11:53:24.5647437Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:20:38 GMT", + "Date": "Tue, 25 Oct 2022 11:55:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "070f8fcf-df6b-44cd-a264-23f10b45d89e", + "x-ms-correlation-request-id": "dd37fd22-1769-4b7f-bde8-e8b16800478d", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152039Z:070f8fcf-df6b-44cd-a264-23f10b45d89e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115526Z:dd37fd22-1769-4b7f-bde8-e8b16800478d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d", - "name": "0ac602a7-fd98-4025-b34f-e9d5a4bc438d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", "status": "Creating", - "startTime": "2022-09-19T15:18:07.0111088Z", + "startTime": "2022-10-25T11:53:24.5647437Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:21:09 GMT", + "Date": "Tue, 25 Oct 2022 11:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2a66d06-1693-40ef-bd6f-44435660636a", + "x-ms-correlation-request-id": "556154af-ec2d-40cb-901f-18e2d2f3fa41", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152109Z:b2a66d06-1693-40ef-bd6f-44435660636a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115557Z:556154af-ec2d-40cb-901f-18e2d2f3fa41", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d", - "name": "0ac602a7-fd98-4025-b34f-e9d5a4bc438d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", "status": "Creating", - "startTime": "2022-09-19T15:18:07.0111088Z", + "startTime": "2022-10-25T11:53:24.5647437Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:21:38 GMT", + "Date": "Tue, 25 Oct 2022 11:56:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1824f52d-5c23-4d0e-ae32-064d04aa3a86", + "x-ms-correlation-request-id": "c30262ca-be42-4bbf-9075-d13bb0b93dbb", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152139Z:1824f52d-5c23-4d0e-ae32-064d04aa3a86", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115627Z:c30262ca-be42-4bbf-9075-d13bb0b93dbb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d", - "name": "0ac602a7-fd98-4025-b34f-e9d5a4bc438d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", "status": "Creating", - "startTime": "2022-09-19T15:18:07.0111088Z", + "startTime": "2022-10-25T11:53:24.5647437Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:22:09 GMT", + "Date": "Tue, 25 Oct 2022 11:56:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1486,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a2c4053-a9e8-4f9c-85dc-fed0770ba64a", + "x-ms-correlation-request-id": "371f8fc4-1471-4d1f-9a22-656a0e1a8811", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152210Z:5a2c4053-a9e8-4f9c-85dc-fed0770ba64a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115657Z:371f8fc4-1471-4d1f-9a22-656a0e1a8811", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", + "status": "Creating", + "startTime": "2022-10-25T11:53:24.5647437Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:57:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a81b9662-2884-43dc-a011-a1a42d579a77", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115727Z:a81b9662-2884-43dc-a011-a1a42d579a77", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", + "status": "Creating", + "startTime": "2022-10-25T11:53:24.5647437Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:57:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "735726da-6075-48a1-bae9-65f0b654b86e", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115758Z:735726da-6075-48a1-bae9-65f0b654b86e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", + "status": "Creating", + "startTime": "2022-10-25T11:53:24.5647437Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:58:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e9184d4b-5014-4603-92bd-2b907f6a0a88", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115828Z:e9184d4b-5014-4603-92bd-2b907f6a0a88", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ac602a7-fd98-4025-b34f-e9d5a4bc438d", - "name": "0ac602a7-fd98-4025-b34f-e9d5a4bc438d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9b0887c-cd94-4d22-b023-2545c7e405da", + "name": "c9b0887c-cd94-4d22-b023-2545c7e405da", "status": "Succeeded", - "startTime": "2022-09-19T15:18:07.0111088Z", - "endTime": "2022-09-19T15:22:07.7703921Z", + "startTime": "2022-10-25T11:53:24.5647437Z", + "endTime": "2022-10-25T11:58:06.3014228Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" @@ -1509,7 +1630,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1638,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:22:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T15%3A22%3A07.7668462Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:58:28 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A58%3A06.2956359Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1647,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aae6cfd9-601d-4815-89b4-4f6e65427461", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152210Z:aae6cfd9-601d-4815-89b4-4f6e65427461", + "x-ms-correlation-request-id": "4450fa2a-9026-4a25-a224-749299ca235a", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115828Z:4450fa2a-9026-4a25-a224-749299ca235a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A22%3A07.7668462Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A58%3A06.2956359Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:18:04.1882914Z" + "CreatedOnDate": "2022-10-25T11:53:22.9861239Z" }, "properties": { - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b93a23ce", "usageThreshold": 107374182400, @@ -1569,7 +1690,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_bd219beb", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6da679d8", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1705,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", + "mountTargetId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1726,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T15:18:05.1349495Z", + "createdAt": "2022-10-25T11:53:24.282224Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:18:05.1349495Z" + "lastModifiedAt": "2022-10-25T11:53:24.282224Z" } } }, @@ -1619,7 +1740,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1627,8 +1748,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:22:21 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T15%3A22%3A07.7668462Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:58:38 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A58%3A06.2956359Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1636,22 +1757,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d3c5d45-fad1-49df-9394-6270059b77bb", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152221Z:3d3c5d45-fad1-49df-9394-6270059b77bb", + "x-ms-correlation-request-id": "079ac9b7-e9db-4b2f-8103-c3029e6bf8b2", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115839Z:079ac9b7-e9db-4b2f-8103-c3029e6bf8b2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A22%3A07.7668462Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A58%3A06.2956359Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:18:04.1882914Z" + "CreatedOnDate": "2022-10-25T11:53:22.9861239Z" }, "properties": { - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b93a23ce", "usageThreshold": 107374182400, @@ -1679,7 +1800,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_bd219beb", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6da679d8", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1694,8 +1815,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", + "mountTargetId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", "ipAddress": "10.0.0.4" } ], @@ -1715,10 +1836,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T15:18:05.1349495Z", + "createdAt": "2022-10-25T11:53:24.282224Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:18:05.1349495Z" + "lastModifiedAt": "2022-10-25T11:53:24.282224Z" } } }, @@ -1729,7 +1850,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1737,7 +1858,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:22:21 GMT", + "Date": "Tue, 25 Oct 2022 11:58:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1745,9 +1866,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "216fac18-7c3d-4994-9512-cc08f5c1ca2e", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152221Z:216fac18-7c3d-4994-9512-cc08f5c1ca2e", + "x-ms-correlation-request-id": "47d5bba9-a83b-4849-8bf6-8f46c651cd10", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115839Z:47d5bba9-a83b-4849-8bf6-8f46c651cd10", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1770,7 +1891,7 @@ "Connection": "keep-alive", "Content-Length": "412", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1789,35 +1910,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad989472-8456-40d8-a1f3-a15511a56daf?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ba5e880-b320-49c5-a809-3f934b03f85f?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "2480", + "Content-Length": "2478", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:22:22 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T15%3A22%3A22.2841431Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 11:58:40 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T11%3A58%3A40.4142247Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad989472-8456-40d8-a1f3-a15511a56daf?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ba5e880-b320-49c5-a809-3f934b03f85f?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7a57812b-94f7-4938-a828-ed9457a7a9b3", + "x-ms-correlation-request-id": "8d48bfab-9dfb-4f78-b9b4-45e3b3976f59", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152222Z:7a57812b-94f7-4938-a828-ed9457a7a9b3", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115840Z:8d48bfab-9dfb-4f78-b9b4-45e3b3976f59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A22%3A22.2841431Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A58%3A40.4142247Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:18:04.1882914Z" + "CreatedOnDate": "2022-10-25T11:53:22.9861239Z" }, "properties": { "provisioningState": "Patching", - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b93a23ce", "usageThreshold": 107374182400, @@ -1845,7 +1966,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_bd219beb", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6da679d8", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1860,8 +1981,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", + "mountTargetId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", "ipAddress": "10.0.0.4" } ], @@ -1880,21 +2001,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T15:18:05.1349495Z", + "createdAt": "2022-10-25T11:53:24.282224Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:18:05.1349495Z" + "lastModifiedAt": "2022-10-25T11:53:24.282224Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad989472-8456-40d8-a1f3-a15511a56daf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ba5e880-b320-49c5-a809-3f934b03f85f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1902,7 +2023,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:22:52 GMT", + "Date": "Tue, 25 Oct 2022 11:58:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1910,17 +2031,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a359b216-f208-44aa-8275-44f7d6cb845c", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152252Z:a359b216-f208-44aa-8275-44f7d6cb845c", + "x-ms-correlation-request-id": "6cad4a8c-09e8-487c-852a-08c210a60df5", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115840Z:6cad4a8c-09e8-487c-852a-08c210a60df5", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ba5e880-b320-49c5-a809-3f934b03f85f", + "name": "0ba5e880-b320-49c5-a809-3f934b03f85f", + "status": "Patching", + "startTime": "2022-10-25T11:58:40.421705Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ba5e880-b320-49c5-a809-3f934b03f85f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:59:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ed2c2a57-70fb-44e5-8a22-2a9e53e17545", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115911Z:ed2c2a57-70fb-44e5-8a22-2a9e53e17545", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad989472-8456-40d8-a1f3-a15511a56daf", - "name": "ad989472-8456-40d8-a1f3-a15511a56daf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ba5e880-b320-49c5-a809-3f934b03f85f", + "name": "0ba5e880-b320-49c5-a809-3f934b03f85f", "status": "Succeeded", - "startTime": "2022-09-19T15:22:22.2800773Z", - "endTime": "2022-09-19T15:22:26.0460388Z", + "startTime": "2022-10-25T11:58:40.421705Z", + "endTime": "2022-10-25T11:58:44.7970862Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" @@ -1928,13 +2089,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad989472-8456-40d8-a1f3-a15511a56daf?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ba5e880-b320-49c5-a809-3f934b03f85f?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1942,7 +2103,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:22:52 GMT", + "Date": "Tue, 25 Oct 2022 11:59:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1950,19 +2111,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "940d2580-37af-457a-8309-3323038d5cd4", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152252Z:940d2580-37af-457a-8309-3323038d5cd4", + "x-ms-correlation-request-id": "32924643-fede-405e-8b96-aeb623482117", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115912Z:32924643-fede-405e-8b96-aeb623482117", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T15%3A22%3A26.0498864Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T11%3A58%3A44.7887346Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T15:22:21.9045101Z" + "CreatedOnDate": "2022-10-25T11:58:40.0641933Z" }, "properties": { "dataProtection": { @@ -1972,12 +2133,12 @@ "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault" } }, - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b93a23ce", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", "usageThreshold": 107374182400, - "usedBytes": 0, + "usedBytes": 360448, "exportPolicy": { "rules": [ { @@ -2003,19 +2164,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_bd219beb", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6da679d8", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", - "poolId": "9fee49a9-8e2f-cd2a-bac1-da5c570dbd63", + "poolId": "4c59fdb1-3fda-8a54-eefa-c5d2ea98829b", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", + "mountTargetId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", "startIp": "", "endIp": "", "gateway": "", @@ -2047,10 +2208,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T15:18:05.1349495Z", + "createdAt": "2022-10-25T11:53:24.282224Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T15:22:22.102986Z" + "lastModifiedAt": "2022-10-25T11:58:40.2760351Z" } } }, @@ -2063,7 +2224,7 @@ "Connection": "keep-alive", "Content-Length": "69", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -2073,20 +2234,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ace0c519-b26b-4f5f-88e0-ded72c65816d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7401639-ebaa-49e3-9355-f20de9424e43?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "560", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:22:52 GMT", + "Date": "Tue, 25 Oct 2022 11:59:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ace0c519-b26b-4f5f-88e0-ded72c65816d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7401639-ebaa-49e3-9355-f20de9424e43?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffbabfee-d765-4c29-a9b7-6cc984a1d5d7", + "x-ms-correlation-request-id": "f92290b7-c4f5-44b7-9236-1f606cd5c41b", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152253Z:ffbabfee-d765-4c29-a9b7-6cc984a1d5d7", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115912Z:f92290b7-c4f5-44b7-9236-1f606cd5c41b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2101,13 +2262,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ace0c519-b26b-4f5f-88e0-ded72c65816d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7401639-ebaa-49e3-9355-f20de9424e43?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2115,7 +2276,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:23:22 GMT", + "Date": "Tue, 25 Oct 2022 11:59:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2123,17 +2284,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17d2d5de-d7f4-4516-a6a6-d4b03b9de73b", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152323Z:17d2d5de-d7f4-4516-a6a6-d4b03b9de73b", + "x-ms-correlation-request-id": "1b689a7e-07a6-4a95-a2e5-2a98807c54e4", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115912Z:1b689a7e-07a6-4a95-a2e5-2a98807c54e4", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7401639-ebaa-49e3-9355-f20de9424e43", + "name": "b7401639-ebaa-49e3-9355-f20de9424e43", + "status": "Creating", + "startTime": "2022-10-25T11:59:12.5103741Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7401639-ebaa-49e3-9355-f20de9424e43?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 11:59:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "62c478dc-3b95-4c8c-ad9d-4657be5164ab", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115943Z:62c478dc-3b95-4c8c-ad9d-4657be5164ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ace0c519-b26b-4f5f-88e0-ded72c65816d", - "name": "ace0c519-b26b-4f5f-88e0-ded72c65816d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7401639-ebaa-49e3-9355-f20de9424e43", + "name": "b7401639-ebaa-49e3-9355-f20de9424e43", "status": "Succeeded", - "startTime": "2022-09-19T15:22:53.2988397Z", - "endTime": "2022-09-19T15:22:53.4863652Z", + "startTime": "2022-10-25T11:59:12.5103741Z", + "endTime": "2022-10-25T11:59:12.8541858Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce" @@ -2141,41 +2342,41 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ace0c519-b26b-4f5f-88e0-ded72c65816d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7401639-ebaa-49e3-9355-f20de9424e43?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "779", + "Content-Length": "781", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:23:23 GMT", + "Date": "Tue, 25 Oct 2022 11:59:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dcbb1d2f-8b21-480b-9169-305041608a3d", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152323Z:dcbb1d2f-8b21-480b-9169-305041608a3d", + "x-ms-correlation-request-id": "497dc37e-24c5-4c04-a910-8ece3526553d", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115943Z:497dc37e-24c5-4c04-a910-8ece3526553d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/19/2022 3:22:53 PM", + "etag": "10/25/2022 11:59:12 AM", "location": "", "properties": { - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", "creationDate": "0001-01-01T00:00:00Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", "failureReason": "None", @@ -2191,7 +2392,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2199,7 +2400,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:23:34 GMT", + "Date": "Tue, 25 Oct 2022 11:59:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2207,9 +2408,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "431804a2-83f0-4027-9085-06d74d0d563d", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152335Z:431804a2-83f0-4027-9085-06d74d0d563d", + "x-ms-correlation-request-id": "ad7acdf7-790a-47a5-b262-73b2355bf029", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T115954Z:ad7acdf7-790a-47a5-b262-73b2355bf029", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2218,12 +2419,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2236,7 +2437,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2244,7 +2445,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:23:44 GMT", + "Date": "Tue, 25 Oct 2022 12:00:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2252,9 +2453,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9f7d420-6e61-4697-afbe-e24042e5a286", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152345Z:c9f7d420-6e61-4697-afbe-e24042e5a286", + "x-ms-correlation-request-id": "4dfb932e-acbd-4f00-838b-9e8c54221231", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120005Z:4dfb932e-acbd-4f00-838b-9e8c54221231", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2263,12 +2464,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2281,7 +2482,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2289,7 +2490,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:23:55 GMT", + "Date": "Tue, 25 Oct 2022 12:00:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2297,9 +2498,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0be157f0-5c81-4751-8bf9-3eb8f9f662dc", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152356Z:0be157f0-5c81-4751-8bf9-3eb8f9f662dc", + "x-ms-correlation-request-id": "4cd68378-9ef3-4b04-ad5c-2eb9dbd2adb2", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120016Z:4cd68378-9ef3-4b04-ad5c-2eb9dbd2adb2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2308,12 +2509,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2326,7 +2527,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2334,7 +2535,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:24:07 GMT", + "Date": "Tue, 25 Oct 2022 12:00:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2342,9 +2543,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8127f27e-a68e-4f9c-b7b5-c17d87c8902b", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152407Z:8127f27e-a68e-4f9c-b7b5-c17d87c8902b", + "x-ms-correlation-request-id": "3d107e9d-5968-468f-8e17-6aad030ed041", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120027Z:3d107e9d-5968-468f-8e17-6aad030ed041", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2353,12 +2554,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2371,7 +2572,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2379,7 +2580,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:24:17 GMT", + "Date": "Tue, 25 Oct 2022 12:00:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2387,9 +2588,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "123cef61-14e9-47a4-9913-2b7d46b85285", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152417Z:123cef61-14e9-47a4-9913-2b7d46b85285", + "x-ms-correlation-request-id": "7301667d-02d8-447b-a492-cf1e65f1df5d", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120038Z:7301667d-02d8-447b-a492-cf1e65f1df5d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2398,12 +2599,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2416,7 +2617,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2424,7 +2625,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:24:28 GMT", + "Date": "Tue, 25 Oct 2022 12:00:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2432,9 +2633,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1fb983b3-4b7d-4bed-ad05-9d2bc9f8f368", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152428Z:1fb983b3-4b7d-4bed-ad05-9d2bc9f8f368", + "x-ms-correlation-request-id": "4f4e2cb7-81ba-4593-b90f-eb1832bbbd61", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120048Z:4f4e2cb7-81ba-4593-b90f-eb1832bbbd61", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2443,12 +2644,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2461,7 +2662,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2469,7 +2670,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:24:39 GMT", + "Date": "Tue, 25 Oct 2022 12:00:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2477,9 +2678,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c33cb17a-ece6-4d6f-a7bd-914a09f88612", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152439Z:c33cb17a-ece6-4d6f-a7bd-914a09f88612", + "x-ms-correlation-request-id": "750b9051-37af-4a83-8a02-facbf2c15083", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120100Z:750b9051-37af-4a83-8a02-facbf2c15083", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2488,12 +2689,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2506,7 +2707,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2514,7 +2715,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:24:50 GMT", + "Date": "Tue, 25 Oct 2022 12:01:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2522,9 +2723,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "220069df-7794-46fb-a6ba-9d4e1c2c6a76", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152450Z:220069df-7794-46fb-a6ba-9d4e1c2c6a76", + "x-ms-correlation-request-id": "6d1c8896-7e58-485f-ab5e-e33e5318ac23", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120110Z:6d1c8896-7e58-485f-ab5e-e33e5318ac23", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2533,12 +2734,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2551,7 +2752,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2559,7 +2760,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:25:01 GMT", + "Date": "Tue, 25 Oct 2022 12:01:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2567,9 +2768,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bad72d80-27f4-403b-a190-90a462dec1a3", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152502Z:bad72d80-27f4-403b-a190-90a462dec1a3", + "x-ms-correlation-request-id": "00fac7be-82dd-449c-9ede-bb0a70b6303d", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120121Z:00fac7be-82dd-449c-9ede-bb0a70b6303d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2578,12 +2779,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2596,7 +2797,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2604,7 +2805,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:25:12 GMT", + "Date": "Tue, 25 Oct 2022 12:01:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2612,9 +2813,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d046b6e-e387-4314-abdf-bf8b284d7bf5", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152512Z:8d046b6e-e387-4314-abdf-bf8b284d7bf5", + "x-ms-correlation-request-id": "dd2cc098-3e53-44e4-8b14-6b1df74a090c", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120132Z:dd2cc098-3e53-44e4-8b14-6b1df74a090c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2623,12 +2824,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2641,7 +2842,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2649,7 +2850,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:25:22 GMT", + "Date": "Tue, 25 Oct 2022 12:01:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2657,9 +2858,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66db5ff9-39bb-4570-ad21-592a5cb8b54c", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152523Z:66db5ff9-39bb-4570-ad21-592a5cb8b54c", + "x-ms-correlation-request-id": "fc1ad45a-3405-495c-8fd7-3db6de30495f", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120143Z:fc1ad45a-3405-495c-8fd7-3db6de30495f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2668,12 +2869,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2686,7 +2887,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2694,7 +2895,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:25:33 GMT", + "Date": "Tue, 25 Oct 2022 12:01:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2702,9 +2903,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d397210a-7147-4a68-bc83-1e29c54450dd", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152534Z:d397210a-7147-4a68-bc83-1e29c54450dd", + "x-ms-correlation-request-id": "2db0ebb6-d4dd-4e7c-bd78-4eba3fb6d70f", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120154Z:2db0ebb6-d4dd-4e7c-bd78-4eba3fb6d70f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2713,12 +2914,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2731,7 +2932,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2739,7 +2940,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:25:43 GMT", + "Date": "Tue, 25 Oct 2022 12:02:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2747,9 +2948,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a286cff1-f5fc-4c05-b84e-ddf9b39fac93", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152544Z:a286cff1-f5fc-4c05-b84e-ddf9b39fac93", + "x-ms-correlation-request-id": "daa04383-4e7f-461e-9baf-2d02c7e10236", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120204Z:daa04383-4e7f-461e-9baf-2d02c7e10236", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2758,12 +2959,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2776,7 +2977,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2784,7 +2985,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:25:54 GMT", + "Date": "Tue, 25 Oct 2022 12:02:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2792,9 +2993,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "573c6ea0-1f20-431e-8c43-e5d6d6f8f507", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152555Z:573c6ea0-1f20-431e-8c43-e5d6d6f8f507", + "x-ms-correlation-request-id": "d24466c1-f71c-4ef5-aa67-bb455b8e8555", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120215Z:d24466c1-f71c-4ef5-aa67-bb455b8e8555", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2803,12 +3004,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2821,7 +3022,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2829,7 +3030,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:26:05 GMT", + "Date": "Tue, 25 Oct 2022 12:02:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2837,9 +3038,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6adfa88-86e9-48d8-86e5-a69f05479910", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152606Z:b6adfa88-86e9-48d8-86e5-a69f05479910", + "x-ms-correlation-request-id": "20adb4a0-2895-4517-956d-c48ed02f12e3", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120226Z:20adb4a0-2895-4517-956d-c48ed02f12e3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2848,12 +3049,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2866,7 +3067,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2874,7 +3075,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:26:17 GMT", + "Date": "Tue, 25 Oct 2022 12:02:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2882,9 +3083,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35facf07-400f-4421-83d6-c621c906e4ff", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152617Z:35facf07-400f-4421-83d6-c621c906e4ff", + "x-ms-correlation-request-id": "5420257b-87b8-411c-b4d1-be3caea4c747", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120237Z:5420257b-87b8-411c-b4d1-be3caea4c747", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2893,12 +3094,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2911,7 +3112,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2919,7 +3120,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:26:27 GMT", + "Date": "Tue, 25 Oct 2022 12:02:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2927,9 +3128,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ca45f61-cab4-4421-adbf-e2317c2de8c9", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152627Z:7ca45f61-cab4-4421-adbf-e2317c2de8c9", + "x-ms-correlation-request-id": "6afff8d3-ea0a-4ba6-b6dc-2909ab19f3d6", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120247Z:6afff8d3-ea0a-4ba6-b6dc-2909ab19f3d6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2938,12 +3139,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -2956,7 +3157,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2964,7 +3165,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:26:38 GMT", + "Date": "Tue, 25 Oct 2022 12:02:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2972,9 +3173,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4eda64d9-72a9-4f7d-8ca6-ace743df73a0", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152638Z:4eda64d9-72a9-4f7d-8ca6-ace743df73a0", + "x-ms-correlation-request-id": "bc31c7be-33f0-4ad8-aff2-7f9e34590f92", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120259Z:bc31c7be-33f0-4ad8-aff2-7f9e34590f92", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2983,12 +3184,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3001,7 +3202,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3009,7 +3210,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:26:49 GMT", + "Date": "Tue, 25 Oct 2022 12:03:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3017,9 +3218,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c953c714-5e56-4b61-b7ac-e89a1d00e522", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152650Z:c953c714-5e56-4b61-b7ac-e89a1d00e522", + "x-ms-correlation-request-id": "055260d1-3787-448b-b1cc-22ec0a403bae", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120309Z:055260d1-3787-448b-b1cc-22ec0a403bae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3028,12 +3229,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3046,7 +3247,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3054,7 +3255,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:27:00 GMT", + "Date": "Tue, 25 Oct 2022 12:03:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3062,9 +3263,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8869b6ac-5283-4c82-8a0e-a34b530e2122", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152700Z:8869b6ac-5283-4c82-8a0e-a34b530e2122", + "x-ms-correlation-request-id": "0528bbb9-e117-476a-a861-ff0327e83589", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120320Z:0528bbb9-e117-476a-a861-ff0327e83589", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3073,12 +3274,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3091,7 +3292,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3099,7 +3300,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:27:11 GMT", + "Date": "Tue, 25 Oct 2022 12:03:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3107,9 +3308,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4168515e-7bed-4741-b66e-5e7551f8b97b", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152711Z:4168515e-7bed-4741-b66e-5e7551f8b97b", + "x-ms-correlation-request-id": "fd97573f-3fd8-437c-a519-112b0d6cdca9", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120331Z:fd97573f-3fd8-437c-a519-112b0d6cdca9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3118,12 +3319,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3136,7 +3337,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3144,7 +3345,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:27:21 GMT", + "Date": "Tue, 25 Oct 2022 12:03:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3152,9 +3353,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ce28594-8453-4905-a17f-4e6f1fe80aa2", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152722Z:8ce28594-8453-4905-a17f-4e6f1fe80aa2", + "x-ms-correlation-request-id": "24beee65-d04a-48b7-b0e3-ad915d66c051", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120342Z:24beee65-d04a-48b7-b0e3-ad915d66c051", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3163,12 +3364,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3181,7 +3382,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3189,7 +3390,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:27:32 GMT", + "Date": "Tue, 25 Oct 2022 12:03:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3197,9 +3398,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a49b1557-8458-40d4-ba32-5b9900382306", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152733Z:a49b1557-8458-40d4-ba32-5b9900382306", + "x-ms-correlation-request-id": "a7ace555-38dd-47de-b8e2-20eb565e9f72", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120353Z:a7ace555-38dd-47de-b8e2-20eb565e9f72", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3208,12 +3409,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3226,7 +3427,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3234,7 +3435,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:27:43 GMT", + "Date": "Tue, 25 Oct 2022 12:04:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3242,9 +3443,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22924876-adf9-40d7-b4f9-ba85df35691c", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152743Z:22924876-adf9-40d7-b4f9-ba85df35691c", + "x-ms-correlation-request-id": "b9e916ad-84e6-40a3-9084-9318625a6efa", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120404Z:b9e916ad-84e6-40a3-9084-9318625a6efa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3253,12 +3454,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3271,7 +3472,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3279,7 +3480,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:27:53 GMT", + "Date": "Tue, 25 Oct 2022 12:04:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3287,9 +3488,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8175a46-eee7-47e6-baaa-44aba2ad010b", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152754Z:e8175a46-eee7-47e6-baaa-44aba2ad010b", + "x-ms-correlation-request-id": "82777911-ce5b-4e8b-8a05-9a6d77bb8ad3", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120415Z:82777911-ce5b-4e8b-8a05-9a6d77bb8ad3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3298,12 +3499,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3316,7 +3517,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3324,7 +3525,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:04 GMT", + "Date": "Tue, 25 Oct 2022 12:04:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3332,9 +3533,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3218dc77-e2fa-485c-bdba-b4239de96b7e", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152805Z:3218dc77-e2fa-485c-bdba-b4239de96b7e", + "x-ms-correlation-request-id": "734d1407-5283-4b99-a660-8b07c16ba603", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120425Z:734d1407-5283-4b99-a660-8b07c16ba603", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3343,12 +3544,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3361,7 +3562,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3369,7 +3570,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:16 GMT", + "Date": "Tue, 25 Oct 2022 12:04:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3377,9 +3578,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4625c1d5-894a-4372-95a9-4792d1bca269", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152816Z:4625c1d5-894a-4372-95a9-4792d1bca269", + "x-ms-correlation-request-id": "14d5cc48-ff2e-4d95-9f1d-7b9ebf28b02f", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120436Z:14d5cc48-ff2e-4d95-9f1d-7b9ebf28b02f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3388,12 +3589,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3406,7 +3607,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3414,7 +3615,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:26 GMT", + "Date": "Tue, 25 Oct 2022 12:04:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3422,9 +3623,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9067c1ff-2a5e-4b39-b83b-c02a133fdfb5", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152826Z:9067c1ff-2a5e-4b39-b83b-c02a133fdfb5", + "x-ms-correlation-request-id": "387e8998-8d89-4e87-9b08-b297f95dc2ba", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120447Z:387e8998-8d89-4e87-9b08-b297f95dc2ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3433,12 +3634,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", + "creationDate": "2022-10-25T11:59:12Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", "size": 0, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Creating", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3451,7 +3652,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3459,7 +3660,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:37 GMT", + "Date": "Tue, 25 Oct 2022 12:04:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3467,9 +3668,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18360b8b-42ed-4bf9-864a-4f868d9d5b8d", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152838Z:18360b8b-42ed-4bf9-864a-4f868d9d5b8d", + "x-ms-correlation-request-id": "d0abab4a-314a-48c6-b397-028edbb21edf", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120458Z:d0abab4a-314a-48c6-b397-028edbb21edf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3478,12 +3679,12 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, + "creationDate": "2022-10-25T11:59:29Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } @@ -3491,30 +3692,37 @@ }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "65", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "properties": { + "label": "label1", + "useExistingSnapshot": false + } + }, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0bb3b5f-4079-4fa1-9f62-06c9a00901be?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "600", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:48 GMT", + "Date": "Tue, 25 Oct 2022 12:04:59 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0bb3b5f-4079-4fa1-9f62-06c9a00901be?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0696f0d7-111a-4411-a3ca-257b5cd61947", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152848Z:0696f0d7-111a-4411-a3ca-257b5cd61947", + "x-ms-correlation-request-id": "afd4a967-b449-4ab2-be3d-225268c09c2c", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120459Z:afd4a967-b449-4ab2-be3d-225268c09c2c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3523,25 +3731,20 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "label": "label1", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0bb3b5f-4079-4fa1-9f62-06c9a00901be?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3549,7 +3752,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:58 GMT", + "Date": "Tue, 25 Oct 2022 12:04:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3557,36 +3760,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "951a5445-6890-4e6e-bfdf-efa6fd5bed92", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152858Z:951a5445-6890-4e6e-bfdf-efa6fd5bed92", + "x-ms-correlation-request-id": "48323c4f-e2e4-4917-86fc-79a321b9af2f", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120500Z:48323c4f-e2e4-4917-86fc-79a321b9af2f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0bb3b5f-4079-4fa1-9f62-06c9a00901be", + "name": "e0bb3b5f-4079-4fa1-9f62-06c9a00901be", + "status": "Patching", + "startTime": "2022-10-25T12:04:59.5581843Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0bb3b5f-4079-4fa1-9f62-06c9a00901be?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3594,7 +3792,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:11 GMT", + "Date": "Tue, 25 Oct 2022 12:05:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3602,36 +3800,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d7cbbee-e7df-4a24-92cb-5ecc8678a308", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152911Z:4d7cbbee-e7df-4a24-92cb-5ecc8678a308", + "x-ms-correlation-request-id": "bce74503-15bf-459a-b914-66df847b3ef0", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120530Z:bce74503-15bf-459a-b914-66df847b3ef0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0bb3b5f-4079-4fa1-9f62-06c9a00901be", + "name": "e0bb3b5f-4079-4fa1-9f62-06c9a00901be", + "status": "Succeeded", + "startTime": "2022-10-25T12:04:59.5581843Z", + "endTime": "2022-10-25T12:04:59.980061Z", + "percentComplete": 100.0, "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0bb3b5f-4079-4fa1-9f62-06c9a00901be?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3639,7 +3832,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:22 GMT", + "Date": "Tue, 25 Oct 2022 12:05:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3647,25 +3840,28 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edfa79b1-31f9-4c76-8b66-deb46518374a", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152922Z:edfa79b1-31f9-4c76-8b66-deb46518374a", + "x-ms-correlation-request-id": "f0c73205-1e4a-45ea-b6b7-10727cab1435", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120530Z:f0c73205-1e4a-45ea-b6b7-10727cab1435", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "etag": "10/25/2022 12:04:59 PM", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "creationDate": "2022-10-25T11:59:29Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "label": "label1", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false + "useExistingSnapshot": false, + "provisioningState": "Accepted" } } }, @@ -3676,7 +3872,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3684,7 +3880,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:32 GMT", + "Date": "Tue, 25 Oct 2022 12:05:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3692,9 +3888,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab6a2548-751b-4707-b84b-9216f95655cf", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152933Z:ab6a2548-751b-4707-b84b-9216f95655cf", + "x-ms-correlation-request-id": "3a9c1453-8cb6-4158-9c9b-dc2099cc84f3", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120531Z:3a9c1453-8cb6-4158-9c9b-dc2099cc84f3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -3703,25 +3899,26 @@ "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", "location": "westus2", "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, + "creationDate": "2022-10-25T11:59:29Z", + "backupId": "6c28da1c-c5e8-f52f-089c-2b1073e38405", + "size": 339968, "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", + "label": "label1", + "provisioningState": "Succeeded", + "failureReason": "None", "volumeName": "sdk-py-tests-vol-3-b93a23ce", "useExistingSnapshot": false } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3729,7 +3926,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:43 GMT", + "Date": "Tue, 25 Oct 2022 12:05:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3737,81 +3934,163 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db143fa7-ce29-4d65-b8bd-274dbfeab883", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152944Z:db143fa7-ce29-4d65-b8bd-274dbfeab883", + "x-ms-correlation-request-id": "3f680b1e-772d-4d01-b493-1025a42adf51", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120532Z:3f680b1e-772d-4d01-b493-1025a42adf51", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", - "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false - } + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault", + "name": "sdk-py-tests-acc-1-b93a23ce/cbsvault", + "type": "Microsoft.NetApp/netAppAccounts/vaults", + "properties": {} + } + ] } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce?api-version=2022-05-01", + "RequestMethod": "PATCH", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "413", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "properties": { + "serviceLevel": "Premium", + "usageThreshold": 107374182400, + "dataProtection": { + "backup": { + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault", + "backupEnabled": false + } + }, + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0 + } + }, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee4cfec-548b-495c-97b4-71364835f3d1?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "2741", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:54 GMT", + "Date": "Tue, 25 Oct 2022 12:05:32 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A05%3A33.019212Z\u0027\u0022", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee4cfec-548b-495c-97b4-71364835f3d1?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9796654e-c483-4e6c-9186-dbfabbc71378", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-routing-request-id": "WESTEUROPE:20220919T152954Z:9796654e-c483-4e6c-9186-dbfabbc71378", + "x-ms-correlation-request-id": "803ceed6-d8dd-4dff-9c18-44d236c14223", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120533Z:803ceed6-d8dd-4dff-9c18-44d236c14223", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", + "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A05%3A33.019212Z\u0027\u0022", "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T11:58:40.0641933Z" + }, "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false + "dataProtection": { + "backup": { + "backupEnabled": true, + "policyEnforced": false, + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault" + } + }, + "provisioningState": "Patching", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-b93a23ce", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6da679d8", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T11:53:24.282224Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T11:58:40.2760351Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee4cfec-548b-495c-97b4-71364835f3d1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3819,7 +4098,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:30:04 GMT", + "Date": "Tue, 25 Oct 2022 12:05:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3827,36 +4106,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "234cd0eb-ce74-4f32-937f-c7f4fd1731c0", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-routing-request-id": "WESTEUROPE:20220919T153005Z:234cd0eb-ce74-4f32-937f-c7f4fd1731c0", + "x-ms-correlation-request-id": "df87ebe4-bf3f-4f7c-b2c5-348046a0a6e6", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120533Z:df87ebe4-bf3f-4f7c-b2c5-348046a0a6e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee4cfec-548b-495c-97b4-71364835f3d1", + "name": "0ee4cfec-548b-495c-97b4-71364835f3d1", + "status": "Patching", + "startTime": "2022-10-25T12:05:33.0135718Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee4cfec-548b-495c-97b4-71364835f3d1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3864,7 +4138,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:30:15 GMT", + "Date": "Tue, 25 Oct 2022 12:06:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3872,36 +4146,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "359f1b06-3032-4b44-b7dc-50c85c24813d", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-routing-request-id": "WESTEUROPE:20220919T153016Z:359f1b06-3032-4b44-b7dc-50c85c24813d", + "x-ms-correlation-request-id": "5610059e-48c5-4b2d-b513-75a5be384711", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120603Z:5610059e-48c5-4b2d-b513-75a5be384711", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee4cfec-548b-495c-97b4-71364835f3d1", + "name": "0ee4cfec-548b-495c-97b4-71364835f3d1", + "status": "Succeeded", + "startTime": "2022-10-25T12:05:33.0135718Z", + "endTime": "2022-10-25T12:05:38.9828745Z", + "percentComplete": 100.0, "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee4cfec-548b-495c-97b4-71364835f3d1?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3909,7 +4178,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:30:26 GMT", + "Date": "Tue, 25 Oct 2022 12:06:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3917,36 +4186,181 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "649883c5-a3d9-4cf3-95af-a35eb96e99f8", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-routing-request-id": "WESTEUROPE:20220919T153027Z:649883c5-a3d9-4cf3-95af-a35eb96e99f8", + "x-ms-correlation-request-id": "fcc065ab-12b6-47f0-bc5b-ed6655f62ed1", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120603Z:fcc065ab-12b6-47f0-bc5b-ed6655f62ed1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", + "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A05%3A38.9748144Z\u0027\u0022", "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T11:58:40.0641933Z" + }, "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false + "dataProtection": { + "backup": { + "backupEnabled": false, + "policyEnforced": false, + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault" + } + }, + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-b93a23ce", + "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", + "usageThreshold": 107374182400, + "usedBytes": 360448, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv4": false, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6da679d8", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", + "poolId": "4c59fdb1-3fda-8a54-eefa-c5d2ea98829b", + "mountTargets": [ + { + "provisioningState": "", + "mountTargetId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "startIp": "", + "endIp": "", + "gateway": "", + "netmask": "", + "subnet": "", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "encryptionKeySource": "Microsoft.NetApp", + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "encrypted": true, + "smbAccessBasedEnumeration": "Disabled", + "smbNonBrowsable": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T11:53:24.282224Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T12:05:32.8960521Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "77", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:06:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a9e0ea46-53e2-4187-9f97-cffb3478c583", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120607Z:a9e0ea46-53e2-4187-9f97-cffb3478c583", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "NotFound", + "message": "The requested Backup was not found." + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce?api-version=2022-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 12:06:07 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e7f7d05c-db4f-44fe-aafb-5ef9131be2c4", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120607Z:e7f7d05c-db4f-44fe-aafb-5ef9131be2c4", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3954,7 +4368,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:30:36 GMT", + "Date": "Tue, 25 Oct 2022 12:06:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3962,83 +4376,111 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d36ad0a1-b39c-44b8-999c-9a314c6f1824", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-routing-request-id": "WESTEUROPE:20220919T153037Z:d36ad0a1-b39c-44b8-999c-9a314c6f1824", + "x-ms-correlation-request-id": "ac7dcd7c-0a28-4825-a5e6-7baa48f55d15", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120608Z:ac7dcd7c-0a28-4825-a5e6-7baa48f55d15", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6", + "name": "f725fb7e-ca96-494a-8757-7db113cf3ae6", + "status": "Deleting", + "startTime": "2022-10-25T12:06:07.6366041Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when creating - FAILED - azure resource config error", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", - "RequestMethod": "PATCH", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6?api-version=2022-05-01", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "65", - "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, - "RequestBody": { + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:06:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "441a3a97-0931-4ce0-994a-473c18412815", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120638Z:441a3a97-0931-4ce0-994a-473c18412815", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6", + "name": "f725fb7e-ca96-494a-8757-7db113cf3ae6", + "status": "Deleting", + "startTime": "2022-10-25T12:06:07.6366041Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "label": "label1", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, - "StatusCode": 202, + "RequestBody": null, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2d0518b3-e28f-48b2-87b3-87f26347b2f0?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "600", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:30:37 GMT", + "Date": "Tue, 25 Oct 2022 12:07:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2d0518b3-e28f-48b2-87b3-87f26347b2f0?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05bf9881-1ed5-4495-a98c-5ae189cba2df", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-routing-request-id": "WESTEUROPE:20220919T153038Z:05bf9881-1ed5-4495-a98c-5ae189cba2df", + "x-ms-correlation-request-id": "bfbfc070-1f41-4a06-906f-0153d3fe46cb", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120708Z:bfbfc070-1f41-4a06-906f-0153d3fe46cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6", + "name": "f725fb7e-ca96-494a-8757-7db113cf3ae6", + "status": "Deleting", + "startTime": "2022-10-25T12:06:07.6366041Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", - "label": "label1", - "useExistingSnapshot": false + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2d0518b3-e28f-48b2-87b3-87f26347b2f0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4046,7 +4488,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:31:07 GMT", + "Date": "Tue, 25 Oct 2022 12:07:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4054,31 +4496,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94c1a9f8-ec4a-4a2b-9c1c-264a6f8566a5", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-routing-request-id": "WESTEUROPE:20220919T153108Z:94c1a9f8-ec4a-4a2b-9c1c-264a6f8566a5", + "x-ms-correlation-request-id": "9bd1d1d4-91f5-4e2d-8d3f-beba855412e3", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120738Z:9bd1d1d4-91f5-4e2d-8d3f-beba855412e3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2d0518b3-e28f-48b2-87b3-87f26347b2f0", - "name": "2d0518b3-e28f-48b2-87b3-87f26347b2f0", - "status": "Succeeded", - "startTime": "2022-09-19T15:30:37.9301798Z", - "endTime": "2022-09-19T15:30:38.7443145Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6", + "name": "f725fb7e-ca96-494a-8757-7db113cf3ae6", + "status": "Deleting", + "startTime": "2022-10-25T12:06:07.6366041Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce" + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2d0518b3-e28f-48b2-87b3-87f26347b2f0?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4086,7 +4528,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:31:07 GMT", + "Date": "Tue, 25 Oct 2022 12:08:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4094,39 +4536,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2079527-0478-4207-be24-de6f89d0bd64", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-routing-request-id": "WESTEUROPE:20220919T153108Z:c2079527-0478-4207-be24-de6f89d0bd64", + "x-ms-correlation-request-id": "99465cba-90b6-4ee6-9e83-68916ee9f179", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120809Z:99465cba-90b6-4ee6-9e83-68916ee9f179", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", - "etag": "9/19/2022 3:30:38 PM", - "location": "westus2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6", + "name": "f725fb7e-ca96-494a-8757-7db113cf3ae6", + "status": "Succeeded", + "startTime": "2022-10-25T12:06:07.6366041Z", + "endTime": "2022-10-25T12:08:08.3545111Z", + "percentComplete": 100.0, "properties": { - "fileSystemId": "1d41b4ac-2c17-bd57-9c59-161e8b3a31cc", - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "label": "label1", - "failureReason": "None", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false, - "provisioningState": "Accepted" + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f725fb7e-ca96-494a-8757-7db113cf3ae6?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4134,7 +4568,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:31:08 GMT", + "Date": "Tue, 25 Oct 2022 12:08:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4142,27 +4576,631 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bd2c43e-3cc7-4097-bcd6-b6c6d607af4c", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-routing-request-id": "WESTEUROPE:20220919T153109Z:8bd2c43e-3cc7-4097-bcd6-b6c6d607af4c", + "x-ms-correlation-request-id": "24ff7d6c-50dc-4eaa-90ce-c6405ad2ee24", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T120809Z:24ff7d6c-50dc-4eaa-90ce-c6405ad2ee24", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce/backups/sdk-py-tests-backup-1-b93a23ce", - "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce/sdk-py-tests-backup-1-b93a23ce", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/backups", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", + "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b93a23ce", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A07%3A59.0958439Z\u0027\u0022", "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T11:58:40.0641933Z" + }, "properties": { - "creationDate": "2022-09-19T15:22:53Z", - "backupId": "a4498877-4adb-996b-c953-af37485da829", - "size": 0, - "backupType": "Manual", - "provisioningState": "Failed", - "failureReason": "Error when updating - Backup not found", - "volumeName": "sdk-py-tests-vol-3-b93a23ce", - "useExistingSnapshot": false - } - } + "dataProtection": { + "backup": { + "backupEnabled": false, + "policyEnforced": false, + "vaultId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/vaults/cbsvault" + } + }, + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-b93a23ce", + "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", + "usageThreshold": 107374182400, + "usedBytes": 360448, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv4": false, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6da679d8", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce", + "poolId": "4c59fdb1-3fda-8a54-eefa-c5d2ea98829b", + "mountTargets": [ + { + "provisioningState": "", + "mountTargetId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "fileSystemId": "7b1c6b42-9b8c-ff75-8d9b-067b6161f70d", + "startIp": "", + "endIp": "", + "gateway": "", + "netmask": "", + "subnet": "", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "encryptionKeySource": "Microsoft.NetApp", + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "encrypted": true, + "smbAccessBasedEnumeration": "Disabled", + "smbNonBrowsable": "Disabled", + "provisioningState": "Deleting" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T11:53:24.282224Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T12:05:32.8960521Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "324", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:11:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8d093503-82f9-408a-b9f1-a5cd9d5490d7", + "x-ms-failure-cause": "gateway", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121133Z:8d093503-82f9-408a-b9f1-a5cd9d5490d7" + }, + "ResponseBody": { + "error": { + "code": "ResourceNotFound", + "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b93a23ce\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5eb0e904-1b20-4b06-882b-cf10ff6d9286?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 12:11:46 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5eb0e904-1b20-4b06-882b-cf10ff6d9286?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6c1d3c4e-130b-45df-9639-6b778aa80c9b", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121146Z:6c1d3c4e-130b-45df-9639-6b778aa80c9b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5eb0e904-1b20-4b06-882b-cf10ff6d9286?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:11:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cf316913-b1dd-4d59-af71-f89c8af1f95f", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121146Z:cf316913-b1dd-4d59-af71-f89c8af1f95f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5eb0e904-1b20-4b06-882b-cf10ff6d9286", + "name": "5eb0e904-1b20-4b06-882b-cf10ff6d9286", + "status": "Deleting", + "startTime": "2022-10-25T12:11:46.1852662Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5eb0e904-1b20-4b06-882b-cf10ff6d9286?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:12:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "40e61686-c19c-46d6-9c5b-c0a6dbe02b1a", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121216Z:40e61686-c19c-46d6-9c5b-c0a6dbe02b1a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5eb0e904-1b20-4b06-882b-cf10ff6d9286", + "name": "5eb0e904-1b20-4b06-882b-cf10ff6d9286", + "status": "Succeeded", + "startTime": "2022-10-25T12:11:46.1852662Z", + "endTime": "2022-10-25T12:11:47.4675455Z", + "percentComplete": 100.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5eb0e904-1b20-4b06-882b-cf10ff6d9286?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:12:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1a6a77eb-7f23-4536-898f-c757773157e2", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121217Z:1a6a77eb-7f23-4536-898f-c757773157e2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1", + "name": "sdk-py-tests-acc-1-b93a23ce/sdk-py-tests-pool-1", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A11%3A46.1467223Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T11:53:09.3658664Z" + }, + "properties": { + "poolId": "4c59fdb1-3fda-8a54-eefa-c5d2ea98829b", + "serviceLevel": "Premium", + "size": 4398046511104, + "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1", + "qosType": "Auto", + "totalThroughputMibps": 256.0, + "utilizedThroughputMibps": 0.0, + "encryptionType": "Single", + "coolAccess": false, + "provisioningState": "Deleting" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T11:53:10.6472412Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T11:53:10.6472412Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Date": "Tue, 25 Oct 2022 12:12:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "65ef90a9-0d2a-4d55-a058-1a2bf42010b0", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121227Z:65ef90a9-0d2a-4d55-a058-1a2bf42010b0" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Date": "Tue, 25 Oct 2022 12:12:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "624ee6ef-8206-458e-8938-84b9b2a8bd31", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121237Z:624ee6ef-8206-458e-8938-84b9b2a8bd31" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Date": "Tue, 25 Oct 2022 12:12:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3c3c0010-59fd-4662-b19e-1d2f30b8ba6a", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121248Z:3c3c0010-59fd-4662-b19e-1d2f30b8ba6a" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Date": "Tue, 25 Oct 2022 12:12:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "28d430a7-4703-4a5c-8238-d9fec8701835", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121258Z:28d430a7-4703-4a5c-8238-d9fec8701835" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "288", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:13:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "9d9c92a6-c8c4-438d-b84c-25a6d978cfca", + "x-ms-failure-cause": "gateway", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121308Z:9d9c92a6-c8c4-438d-b84c-25a6d978cfca" + }, + "ResponseBody": { + "error": { + "code": "ResourceNotFound", + "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce/capacityPools/sdk-py-tests-pool-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce?api-version=2022-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/064bc7a1-732d-48bb-93d2-8fbd3855f83d?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 12:13:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/064bc7a1-732d-48bb-93d2-8fbd3855f83d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "26923114-de30-47be-92ba-efd93d6edc96", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121310Z:26923114-de30-47be-92ba-efd93d6edc96", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/064bc7a1-732d-48bb-93d2-8fbd3855f83d?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:13:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f0d646bb-b2f0-4ede-b011-6fd8a744b33c", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121310Z:f0d646bb-b2f0-4ede-b011-6fd8a744b33c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/064bc7a1-732d-48bb-93d2-8fbd3855f83d", + "name": "064bc7a1-732d-48bb-93d2-8fbd3855f83d", + "status": "Succeeded", + "startTime": "2022-10-25T12:13:10.0311474Z", + "endTime": "2022-10-25T12:13:10.078099Z", + "percentComplete": 100.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/064bc7a1-732d-48bb-93d2-8fbd3855f83d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:13:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bdf7c77d-c39e-4b7c-b03e-96b6bdb42c10", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121310Z:bdf7c77d-c39e-4b7c-b03e-96b6bdb42c10", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce", + "name": "sdk-py-tests-acc-1-b93a23ce", + "type": "Microsoft.NetApp/netAppAccounts", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A13%3A10.0230708Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T11:53:04.8021955Z" + }, + "properties": { + "encryption": { + "keySource": "Microsoft.NetApp" + }, + "provisioningState": "Deleting" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T11:53:05.9573524Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T11:53:05.9573524Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "255", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:13:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f2534e26-4963-4750-bd23-5ca282df6789", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121311Z:f2534e26-4963-4750-bd23-5ca282df6789", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "ResourceNotFound", + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b93a23ce\u0027 is not found." + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b93a23ce?api-version=2022-05-01", + "RequestMethod": "DELETE", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/dba7e686-dcb0-48a0-92ea-efd017c3fb1e?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 12:13:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/dba7e686-dcb0-48a0-92ea-efd017c3fb1e?api-version=2022-05-01", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "f8c8b10a-350d-458f-aa70-fe583d8c65a1", + "x-ms-correlation-request-id": "a7a0854a-3285-4dcf-a49d-3f6fa776357f", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T121312Z:a7a0854a-3285-4dcf-a49d-3f6fa776357f" + }, + "ResponseBody": null } ], "Variables": {} diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_create_delete_backup_policy.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_create_delete_backup_policy.json index 25051c561f9e..e86050849a0e 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_create_delete_backup_policy.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_create_delete_backup_policy.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:34:53 GMT", + "Date": "Tue, 25 Oct 2022 10:25:48 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:34:53 GMT", + "Date": "Tue, 25 Oct 2022 10:25:48 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "e5227f19-cd54-420e-977b-9292fc48577a", + "client-request-id": "23ec4ad3-668a-4a6c-a3ea-d2d718804eb8", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "e5227f19-cd54-420e-977b-9292fc48577a", + "client-request-id": "23ec4ad3-668a-4a6c-a3ea-d2d718804eb8", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:34:53 GMT", + "Date": "Tue, 25 Oct 2022 10:25:48 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fc15d45-81d0-489b-8d30-ed66e2811512?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2d5b67c-d7a0-4a09-b37f-792aa62ef98e?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:35:01 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A35%3A00.8210526Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:25:58 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A25%3A57.7161327Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "413e42af-60d1-4f45-9276-f0f33547535c", + "x-ms-correlation-request-id": "5b59c5d6-5bbf-420c-97d7-d3ee27beb149", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133502Z:413e42af-60d1-4f45-9276-f0f33547535c", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102558Z:5b59c5d6-5bbf-420c-97d7-d3ee27beb149", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f", "name": "sdk-py-tests-acc-1-fc67306f", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A35%3A00.8210526Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A25%3A57.7161327Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:34:58.2343579Z" + "CreatedOnDate": "2022-10-25T10:25:53.6745217Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:34:59.9106115Z", + "createdAt": "2022-10-25T10:25:56.6323406Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:34:59.9106115Z" + "lastModifiedAt": "2022-10-25T10:25:56.6323406Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fc15d45-81d0-489b-8d30-ed66e2811512?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2d5b67c-d7a0-4a09-b37f-792aa62ef98e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:35:31 GMT", + "Date": "Tue, 25 Oct 2022 10:25:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9e1ed8e-5fd8-4660-9ee6-1987646b753d", + "x-ms-correlation-request-id": "65eeaa09-a031-4deb-8e28-dc1673b1187d", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133532Z:f9e1ed8e-5fd8-4660-9ee6-1987646b753d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102559Z:65eeaa09-a031-4deb-8e28-dc1673b1187d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fc15d45-81d0-489b-8d30-ed66e2811512", - "name": "4fc15d45-81d0-489b-8d30-ed66e2811512", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2d5b67c-d7a0-4a09-b37f-792aa62ef98e", + "name": "c2d5b67c-d7a0-4a09-b37f-792aa62ef98e", "status": "Succeeded", - "startTime": "2022-09-19T13:35:00.8196851Z", - "endTime": "2022-09-19T13:35:00.8978283Z", + "startTime": "2022-10-25T10:25:57.7103886Z", + "endTime": "2022-10-25T10:25:57.7884848Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:35:32 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A35%3A00.8883366Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:25:58 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A25%3A57.7952747Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97fb7e7c-07eb-4d2f-be38-af7db76c2976", + "x-ms-correlation-request-id": "276e2f79-9399-473e-ba7a-6c70d678e371", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133532Z:97fb7e7c-07eb-4d2f-be38-af7db76c2976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102559Z:276e2f79-9399-473e-ba7a-6c70d678e371", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f", "name": "sdk-py-tests-acc-1-fc67306f", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A35%3A00.8883366Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A25%3A57.7952747Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:34:58.2343579Z" + "CreatedOnDate": "2022-10-25T10:25:53.6745217Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:34:59.9106115Z", + "createdAt": "2022-10-25T10:25:56.6323406Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:34:59.9106115Z" + "lastModifiedAt": "2022-10-25T10:25:56.6323406Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "134", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -400,30 +400,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b15ee94-53f5-4eb6-9db5-b93b11ba9493?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d66188cb-e0eb-4b10-b69b-546d33817eea?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "881", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:35:34 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A35%3A34.4335796Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:26:01 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A26%3A01.1901453Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "368ab8e9-cc19-4679-b039-489dbd04724a", + "x-ms-correlation-request-id": "0ba19356-af7e-4ee7-81d8-141a21340df6", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133535Z:368ab8e9-cc19-4679-b039-489dbd04724a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102602Z:0ba19356-af7e-4ee7-81d8-141a21340df6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-fc67306f/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A35%3A34.4335796Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A26%3A01.1901453Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:35:33.2985547Z" + "CreatedOnDate": "2022-10-25T10:25:59.8994670Z" }, "properties": { "enabled": true, @@ -435,21 +435,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:35:34.2705909Z", + "createdAt": "2022-10-25T10:26:01.0246045Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:35:34.2705909Z" + "lastModifiedAt": "2022-10-25T10:26:01.0246045Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b15ee94-53f5-4eb6-9db5-b93b11ba9493?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d66188cb-e0eb-4b10-b69b-546d33817eea?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -457,7 +457,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:36:05 GMT", + "Date": "Tue, 25 Oct 2022 10:26:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -465,17 +465,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4885857b-da0b-45ea-8468-9b3f1adfad2a", + "x-ms-correlation-request-id": "66d3d9f4-6f24-4238-9cd7-19b10e5da2a9", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133605Z:4885857b-da0b-45ea-8468-9b3f1adfad2a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102602Z:66d3d9f4-6f24-4238-9cd7-19b10e5da2a9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b15ee94-53f5-4eb6-9db5-b93b11ba9493", - "name": "0b15ee94-53f5-4eb6-9db5-b93b11ba9493", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d66188cb-e0eb-4b10-b69b-546d33817eea", + "name": "d66188cb-e0eb-4b10-b69b-546d33817eea", "status": "Succeeded", - "startTime": "2022-09-19T13:35:34.4291808Z", - "endTime": "2022-09-19T13:35:35.5386828Z", + "startTime": "2022-10-25T10:26:01.1947116Z", + "endTime": "2022-10-25T10:26:01.9916075Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1" @@ -489,7 +489,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -497,8 +497,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:36:06 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A35%3A35.5476806Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:26:01 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A26%3A01.9958763Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -506,23 +506,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb9ea5d1-be0d-4aa2-9e85-77c908614cf8", + "x-ms-correlation-request-id": "d8479078-1d38-4a15-9880-307feab33ed6", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133606Z:fb9ea5d1-be0d-4aa2-9e85-77c908614cf8", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102602Z:d8479078-1d38-4a15-9880-307feab33ed6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-fc67306f/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A35%3A35.5476806Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A26%3A01.9958763Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:35:33.2985547Z" + "CreatedOnDate": "2022-10-25T10:25:59.8994670Z" }, "properties": { "enabled": true, - "backupPolicyId": "f0e80281-381f-11ed-8554-2e12f04d8f72", + "backupPolicyId": "6c9d5b12-544f-11ed-ba37-768357df5023", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -532,10 +532,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:35:34.2705909Z", + "createdAt": "2022-10-25T10:26:01.0246045Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:35:34.2705909Z" + "lastModifiedAt": "2022-10-25T10:26:01.0246045Z" } } }, @@ -546,7 +546,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -554,7 +554,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:36:06 GMT", + "Date": "Tue, 25 Oct 2022 10:26:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -562,9 +562,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a344f3d-1d30-498b-ba07-188d603bb599", + "x-ms-correlation-request-id": "ac6e4dbc-2254-4336-aa4d-a9871bedb4a2", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133606Z:9a344f3d-1d30-498b-ba07-188d603bb599", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102603Z:ac6e4dbc-2254-4336-aa4d-a9871bedb4a2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -573,14 +573,14 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-fc67306f/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A35%3A35.5476806Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A26%3A01.9958763Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:35:33.2985547Z" + "CreatedOnDate": "2022-10-25T10:25:59.8994670Z" }, "properties": { "enabled": true, - "backupPolicyId": "f0e80281-381f-11ed-8554-2e12f04d8f72", + "backupPolicyId": "6c9d5b12-544f-11ed-ba37-768357df5023", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -590,10 +590,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:35:34.2705909Z", + "createdAt": "2022-10-25T10:26:01.0246045Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:35:34.2705909Z" + "lastModifiedAt": "2022-10-25T10:26:01.0246045Z" } } ] @@ -607,36 +607,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6d72cf34-f488-4067-b434-480c13143a02?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67acbfbf-e009-4615-ba81-e249463d3885?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:36:07 GMT", + "Date": "Tue, 25 Oct 2022 10:26:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6d72cf34-f488-4067-b434-480c13143a02?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67acbfbf-e009-4615-ba81-e249463d3885?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bb5fdb2-d0ba-4257-91ae-7bfd23f94dc9", + "x-ms-correlation-request-id": "7bb1e446-3ebe-44ac-8d32-5dfa55c1b92d", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133607Z:9bb5fdb2-d0ba-4257-91ae-7bfd23f94dc9", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102603Z:7bb1e446-3ebe-44ac-8d32-5dfa55c1b92d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6d72cf34-f488-4067-b434-480c13143a02?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67acbfbf-e009-4615-ba81-e249463d3885?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -644,7 +644,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:36:37 GMT", + "Date": "Tue, 25 Oct 2022 10:26:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -652,17 +652,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15d62c32-284c-474a-bfb5-e32cfcf8b9ee", + "x-ms-correlation-request-id": "640421e4-dbde-400f-8d39-0623ebb01b48", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133637Z:15d62c32-284c-474a-bfb5-e32cfcf8b9ee", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102604Z:640421e4-dbde-400f-8d39-0623ebb01b48", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6d72cf34-f488-4067-b434-480c13143a02", - "name": "6d72cf34-f488-4067-b434-480c13143a02", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67acbfbf-e009-4615-ba81-e249463d3885", + "name": "67acbfbf-e009-4615-ba81-e249463d3885", "status": "Succeeded", - "startTime": "2022-09-19T13:36:07.4955057Z", - "endTime": "2022-09-19T13:36:07.6528291Z", + "startTime": "2022-10-25T10:26:03.6792133Z", + "endTime": "2022-10-25T10:26:03.8667624Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1" @@ -670,13 +670,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6d72cf34-f488-4067-b434-480c13143a02?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67acbfbf-e009-4615-ba81-e249463d3885?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -684,7 +684,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:36:37 GMT", + "Date": "Tue, 25 Oct 2022 10:26:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -692,23 +692,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b04a34dc-c187-4e1f-925f-4bf283a9eee2", + "x-ms-correlation-request-id": "99dfda2b-8161-4a1c-9c9b-3c881168f0bc", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133638Z:b04a34dc-c187-4e1f-925f-4bf283a9eee2", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102604Z:99dfda2b-8161-4a1c-9c9b-3c881168f0bc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-fc67306f/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A36%3A07.4915955Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A26%3A03.6799147Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:35:33.2985547Z" + "CreatedOnDate": "2022-10-25T10:25:59.8994670Z" }, "properties": { "enabled": true, - "backupPolicyId": "f0e80281-381f-11ed-8554-2e12f04d8f72", + "backupPolicyId": "6c9d5b12-544f-11ed-ba37-768357df5023", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -719,10 +719,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:35:34.2705909Z", + "createdAt": "2022-10-25T10:26:01.0246045Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:35:34.2705909Z" + "lastModifiedAt": "2022-10-25T10:26:01.0246045Z" } } }, @@ -733,27 +733,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "298", + "Content-Length": "299", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:36:39 GMT", + "Date": "Tue, 25 Oct 2022 10:26:05 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f9f392a-9b48-46b0-80ac-45efa05c256e", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133640Z:2f9f392a-9b48-46b0-80ac-45efa05c256e" + "x-ms-correlation-request-id": "00607f52-0a14-4270-998f-4c8984cfafc5", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102606Z:00607f52-0a14-4270-998f-4c8984cfafc5", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f/backupPolicies/sdk-py-tests-backup-policy-1\u0027 is not found." } } }, @@ -764,7 +766,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -772,7 +774,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:36:40 GMT", + "Date": "Tue, 25 Oct 2022 10:26:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -780,9 +782,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e266b0f9-803a-4b81-ac97-759f88c855fd", + "x-ms-correlation-request-id": "1c834668-da18-4e5f-96e9-c6f72f591148", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133640Z:e266b0f9-803a-4b81-ac97-759f88c855fd", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102657Z:1c834668-da18-4e5f-96e9-c6f72f591148", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -797,36 +799,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2591a1f-9855-4256-bcec-458f1b87de6d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e56815b-5370-4845-9bd9-0539a54d0f41?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:36:41 GMT", + "Date": "Tue, 25 Oct 2022 10:27:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2591a1f-9855-4256-bcec-458f1b87de6d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e56815b-5370-4845-9bd9-0539a54d0f41?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e48d0199-56d7-4139-a4a3-ea0eb237b1fe", + "x-ms-correlation-request-id": "373e799b-b53c-4013-8207-6edf4c1795d4", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133641Z:e48d0199-56d7-4139-a4a3-ea0eb237b1fe", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102703Z:373e799b-b53c-4013-8207-6edf4c1795d4", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2591a1f-9855-4256-bcec-458f1b87de6d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e56815b-5370-4845-9bd9-0539a54d0f41?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -834,7 +836,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:37:11 GMT", + "Date": "Tue, 25 Oct 2022 10:27:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -842,17 +844,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "788afc2c-329c-41f0-8521-28b86b2281c4", + "x-ms-correlation-request-id": "74184778-922c-4baa-8d35-aaad12781b7e", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133711Z:788afc2c-329c-41f0-8521-28b86b2281c4", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102703Z:74184778-922c-4baa-8d35-aaad12781b7e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2591a1f-9855-4256-bcec-458f1b87de6d", - "name": "f2591a1f-9855-4256-bcec-458f1b87de6d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e56815b-5370-4845-9bd9-0539a54d0f41", + "name": "6e56815b-5370-4845-9bd9-0539a54d0f41", "status": "Succeeded", - "startTime": "2022-09-19T13:36:41.3245825Z", - "endTime": "2022-09-19T13:36:41.3714637Z", + "startTime": "2022-10-25T10:27:03.4595017Z", + "endTime": "2022-10-25T10:27:03.5063883Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f" @@ -860,13 +862,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2591a1f-9855-4256-bcec-458f1b87de6d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e56815b-5370-4845-9bd9-0539a54d0f41?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -874,7 +876,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:37:11 GMT", + "Date": "Tue, 25 Oct 2022 10:27:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -882,19 +884,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "994ce5d6-0a9a-44a2-8d5c-fe763da13a30", + "x-ms-correlation-request-id": "1923e761-d6cf-4f85-b148-bee21b494033", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133712Z:994ce5d6-0a9a-44a2-8d5c-fe763da13a30", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102704Z:1923e761-d6cf-4f85-b148-bee21b494033", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f", "name": "sdk-py-tests-acc-1-fc67306f", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A36%3A41.3273764Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A03.446856Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:34:58.2343579Z" + "CreatedOnDate": "2022-10-25T10:25:53.6745217Z" }, "properties": { "encryption": { @@ -905,10 +907,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:34:59.9106115Z", + "createdAt": "2022-10-25T10:25:56.6323406Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:34:59.9106115Z" + "lastModifiedAt": "2022-10-25T10:25:56.6323406Z" } } }, @@ -919,27 +921,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:37:11 GMT", + "Date": "Tue, 25 Oct 2022 10:27:04 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fbe72dbc-7d07-4f98-96f3-4e2af13d3113", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133712Z:fbe72dbc-7d07-4f98-96f3-4e2af13d3113" + "x-ms-correlation-request-id": "bd86c5f5-53e3-47ee-b8e2-d4b0d9d04c63", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102704Z:bd86c5f5-53e3-47ee-b8e2-d4b0d9d04c63", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-fc67306f\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_get_backup_policy_by_name.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_get_backup_policy_by_name.json index d81cc9a15075..832745be04f2 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_get_backup_policy_by_name.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_get_backup_policy_by_name.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:41:20 GMT", + "Date": "Tue, 25 Oct 2022 10:28:23 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:41:20 GMT", + "Date": "Tue, 25 Oct 2022 10:28:23 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "1daed386-c44b-4aa3-bd02-cdbc41660057", + "client-request-id": "8b1e90ee-b5fb-4716-9af5-bab546affa51", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "1daed386-c44b-4aa3-bd02-cdbc41660057", + "client-request-id": "8b1e90ee-b5fb-4716-9af5-bab546affa51", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:41:20 GMT", + "Date": "Tue, 25 Oct 2022 10:28:23 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6f97f452-afd5-4199-89d4-871cb71d3f22?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae5d5bb3-6747-4638-80e8-2a5dd9c47f14?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "706", + "Content-Length": "705", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:41:29 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A41%3A27.7272638Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:28:27 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A26.870611Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebdf4f4f-8067-4478-85d2-aadb8235c3e3", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134129Z:ebdf4f4f-8067-4478-85d2-aadb8235c3e3", + "x-ms-correlation-request-id": "d6436a5b-a562-46d4-b2a9-15bf99561d09", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102828Z:d6436a5b-a562-46d4-b2a9-15bf99561d09", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3", "name": "sdk-py-tests-acc-1-9c012fa3", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A41%3A27.7272638Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A26.870611Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:41:23.7185369Z" + "CreatedOnDate": "2022-10-25T10:28:25.0430100Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:41:26.8034073Z", + "createdAt": "2022-10-25T10:28:26.7166057Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:41:26.8034073Z" + "lastModifiedAt": "2022-10-25T10:28:26.7166057Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6f97f452-afd5-4199-89d4-871cb71d3f22?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae5d5bb3-6747-4638-80e8-2a5dd9c47f14?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:41:59 GMT", + "Date": "Tue, 25 Oct 2022 10:28:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d2ea426-c8af-48f4-b4e0-305b0131a023", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134159Z:3d2ea426-c8af-48f4-b4e0-305b0131a023", + "x-ms-correlation-request-id": "6c64ade0-2ae9-4a48-92fa-1112d753f1e9", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102828Z:6c64ade0-2ae9-4a48-92fa-1112d753f1e9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6f97f452-afd5-4199-89d4-871cb71d3f22", - "name": "6f97f452-afd5-4199-89d4-871cb71d3f22", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae5d5bb3-6747-4638-80e8-2a5dd9c47f14", + "name": "ae5d5bb3-6747-4638-80e8-2a5dd9c47f14", "status": "Succeeded", - "startTime": "2022-09-19T13:41:27.7294029Z", - "endTime": "2022-09-19T13:41:27.7762829Z", + "startTime": "2022-10-25T10:28:26.8769088Z", + "endTime": "2022-10-25T10:28:26.955103Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:41:59 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A41%3A27.7825263Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:28:27 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A26.9584109Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10b1de2d-2f85-436b-a59c-fb4add4779ad", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134200Z:10b1de2d-2f85-436b-a59c-fb4add4779ad", + "x-ms-correlation-request-id": "2b556c18-35ab-47d0-924d-fa3539388f71", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102828Z:2b556c18-35ab-47d0-924d-fa3539388f71", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3", "name": "sdk-py-tests-acc-1-9c012fa3", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A41%3A27.7825263Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A26.9584109Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:41:23.7185369Z" + "CreatedOnDate": "2022-10-25T10:28:25.0430100Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:41:26.8034073Z", + "createdAt": "2022-10-25T10:28:26.7166057Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:41:26.8034073Z" + "lastModifiedAt": "2022-10-25T10:28:26.7166057Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "134", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -400,30 +400,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/33e7e27f-aa77-4c07-9ef6-4bd43f683d45?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3978c742-6a6a-4acb-822c-3a952fe7416b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "881", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:42:02 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A42%3A01.8835037Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:28:30 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A30.8084009Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e90f28c-0c7b-4041-8dcf-cb8da4f3a48c", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134203Z:9e90f28c-0c7b-4041-8dcf-cb8da4f3a48c", + "x-ms-correlation-request-id": "3a3f94c8-776b-4264-99e8-05b638b4190c", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102831Z:3a3f94c8-776b-4264-99e8-05b638b4190c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-9c012fa3/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A42%3A01.8835037Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A30.8084009Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:42:00.3951494Z" + "CreatedOnDate": "2022-10-25T10:28:29.1960415Z" }, "properties": { "enabled": true, @@ -435,21 +435,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:42:01.7329551Z", + "createdAt": "2022-10-25T10:28:30.6402861Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:42:01.7329551Z" + "lastModifiedAt": "2022-10-25T10:28:30.6402861Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/33e7e27f-aa77-4c07-9ef6-4bd43f683d45?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3978c742-6a6a-4acb-822c-3a952fe7416b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -457,7 +457,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:42:32 GMT", + "Date": "Tue, 25 Oct 2022 10:28:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -465,17 +465,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6e3225e-0965-4af0-9c04-6e002e34f04a", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134233Z:e6e3225e-0965-4af0-9c04-6e002e34f04a", + "x-ms-correlation-request-id": "e212c54b-65d8-4722-9b1f-54d9a1684b7c", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102832Z:e212c54b-65d8-4722-9b1f-54d9a1684b7c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/33e7e27f-aa77-4c07-9ef6-4bd43f683d45", - "name": "33e7e27f-aa77-4c07-9ef6-4bd43f683d45", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3978c742-6a6a-4acb-822c-3a952fe7416b", + "name": "3978c742-6a6a-4acb-822c-3a952fe7416b", "status": "Succeeded", - "startTime": "2022-09-19T13:42:01.8870034Z", - "endTime": "2022-09-19T13:42:02.9339675Z", + "startTime": "2022-10-25T10:28:30.8148341Z", + "endTime": "2022-10-25T10:28:31.7231154Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1" @@ -489,7 +489,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -497,8 +497,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:42:33 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A42%3A02.9365852Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:28:31 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A31.7237039Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -506,23 +506,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49152175-e85d-4a04-ae9f-31abe97c8a25", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134233Z:49152175-e85d-4a04-ae9f-31abe97c8a25", + "x-ms-correlation-request-id": "a2feb762-879d-46a1-bbea-01850fbc7b25", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102832Z:a2feb762-879d-46a1-bbea-01850fbc7b25", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-9c012fa3/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A42%3A02.9365852Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A31.7237039Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:42:00.3951494Z" + "CreatedOnDate": "2022-10-25T10:28:29.1960415Z" }, "properties": { "enabled": true, - "backupPolicyId": "d7ccca4b-3820-11ed-8554-2e12f04d8f72", + "backupPolicyId": "c5dc6300-544f-11ed-ba37-768357df5023", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -532,10 +532,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:42:01.7329551Z", + "createdAt": "2022-10-25T10:28:30.6402861Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:42:01.7329551Z" + "lastModifiedAt": "2022-10-25T10:28:30.6402861Z" } } }, @@ -546,7 +546,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -554,8 +554,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:42:33 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A42%3A02.9365852Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:28:32 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A31.7237039Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -563,23 +563,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e09f86f8-089f-4a5a-94a7-b9ec6f882b80", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134234Z:e09f86f8-089f-4a5a-94a7-b9ec6f882b80", + "x-ms-correlation-request-id": "dd008a4e-91dc-4663-bb50-fca4f4c22e7d", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102833Z:dd008a4e-91dc-4663-bb50-fca4f4c22e7d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-9c012fa3/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A42%3A02.9365852Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A31.7237039Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:42:00.3951494Z" + "CreatedOnDate": "2022-10-25T10:28:29.1960415Z" }, "properties": { "enabled": true, - "backupPolicyId": "d7ccca4b-3820-11ed-8554-2e12f04d8f72", + "backupPolicyId": "c5dc6300-544f-11ed-ba37-768357df5023", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -589,10 +589,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:42:01.7329551Z", + "createdAt": "2022-10-25T10:28:30.6402861Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:42:01.7329551Z" + "lastModifiedAt": "2022-10-25T10:28:30.6402861Z" } } }, @@ -604,36 +604,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd1baf91-152d-4f5c-96f0-362449812110?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df2eed58-470f-494d-a04f-9bfa72fa61f2?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:42:34 GMT", + "Date": "Tue, 25 Oct 2022 10:28:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd1baf91-152d-4f5c-96f0-362449812110?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df2eed58-470f-494d-a04f-9bfa72fa61f2?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1be0c13d-4b53-4ef2-885f-637ff116df0b", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134235Z:1be0c13d-4b53-4ef2-885f-637ff116df0b", + "x-ms-correlation-request-id": "80ac7d67-5192-4fe4-8886-fad3295a0077", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102833Z:80ac7d67-5192-4fe4-8886-fad3295a0077", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd1baf91-152d-4f5c-96f0-362449812110?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df2eed58-470f-494d-a04f-9bfa72fa61f2?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -641,7 +641,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:43:05 GMT", + "Date": "Tue, 25 Oct 2022 10:28:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -649,17 +649,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aaad9a1e-bc6e-4f81-b02d-9cde5d2b6fee", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134305Z:aaad9a1e-bc6e-4f81-b02d-9cde5d2b6fee", + "x-ms-correlation-request-id": "cb99be1c-c959-4b88-aefe-f211730fe40d", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102834Z:cb99be1c-c959-4b88-aefe-f211730fe40d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd1baf91-152d-4f5c-96f0-362449812110", - "name": "cd1baf91-152d-4f5c-96f0-362449812110", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df2eed58-470f-494d-a04f-9bfa72fa61f2", + "name": "df2eed58-470f-494d-a04f-9bfa72fa61f2", "status": "Succeeded", - "startTime": "2022-09-19T13:42:34.8654738Z", - "endTime": "2022-09-19T13:42:35.0999208Z", + "startTime": "2022-10-25T10:28:33.8022898Z", + "endTime": "2022-10-25T10:28:33.9586109Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1" @@ -667,13 +667,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd1baf91-152d-4f5c-96f0-362449812110?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df2eed58-470f-494d-a04f-9bfa72fa61f2?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -681,7 +681,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:43:05 GMT", + "Date": "Tue, 25 Oct 2022 10:28:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -689,23 +689,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "055d3147-aa7c-44ec-9cfd-818e26485922", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134305Z:055d3147-aa7c-44ec-9cfd-818e26485922", + "x-ms-correlation-request-id": "599b239e-8a1f-4c07-8c24-68ab11bbb664", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102834Z:599b239e-8a1f-4c07-8c24-68ab11bbb664", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-9c012fa3/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A42%3A34.8675674Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A33.795527Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:42:00.3951494Z" + "CreatedOnDate": "2022-10-25T10:28:29.1960415Z" }, "properties": { "enabled": true, - "backupPolicyId": "d7ccca4b-3820-11ed-8554-2e12f04d8f72", + "backupPolicyId": "c5dc6300-544f-11ed-ba37-768357df5023", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -716,10 +716,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:42:01.7329551Z", + "createdAt": "2022-10-25T10:28:30.6402861Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:42:01.7329551Z" + "lastModifiedAt": "2022-10-25T10:28:30.6402861Z" } } }, @@ -730,27 +730,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "298", + "Content-Length": "299", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:43:07 GMT", + "Date": "Tue, 25 Oct 2022 10:28:35 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d05ce2f4-1b57-4198-9c51-f38f64e76ea8", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134307Z:d05ce2f4-1b57-4198-9c51-f38f64e76ea8" + "x-ms-correlation-request-id": "87d905d0-cf76-4ba9-8890-e26d85d1885b", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102836Z:87d905d0-cf76-4ba9-8890-e26d85d1885b", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3/backupPolicies/sdk-py-tests-backup-policy-1\u0027 is not found." } } }, @@ -762,36 +764,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d884feb3-a0e3-43c4-8427-b855242a0976?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/932f7080-5003-47eb-acf8-56e355a69241?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:43:08 GMT", + "Date": "Tue, 25 Oct 2022 10:29:27 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d884feb3-a0e3-43c4-8427-b855242a0976?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/932f7080-5003-47eb-acf8-56e355a69241?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07d8eda0-df01-434a-b184-628af66a2e78", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134308Z:07d8eda0-df01-434a-b184-628af66a2e78", + "x-ms-correlation-request-id": "c38019f3-d7d5-4b79-8924-e16a241f17a7", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102928Z:c38019f3-d7d5-4b79-8924-e16a241f17a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d884feb3-a0e3-43c4-8427-b855242a0976?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/932f7080-5003-47eb-acf8-56e355a69241?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -799,7 +801,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:43:38 GMT", + "Date": "Tue, 25 Oct 2022 10:29:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -807,17 +809,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d333e2c-7622-4223-b76c-914f1e617c57", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134338Z:3d333e2c-7622-4223-b76c-914f1e617c57", + "x-ms-correlation-request-id": "74b91fc4-0ab8-4b87-9f77-55808d959970", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102928Z:74b91fc4-0ab8-4b87-9f77-55808d959970", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d884feb3-a0e3-43c4-8427-b855242a0976", - "name": "d884feb3-a0e3-43c4-8427-b855242a0976", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/932f7080-5003-47eb-acf8-56e355a69241", + "name": "932f7080-5003-47eb-acf8-56e355a69241", "status": "Succeeded", - "startTime": "2022-09-19T13:43:08.3890295Z", - "endTime": "2022-09-19T13:43:08.4359025Z", + "startTime": "2022-10-25T10:29:28.2236192Z", + "endTime": "2022-10-25T10:29:28.2861484Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3" @@ -825,13 +827,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d884feb3-a0e3-43c4-8427-b855242a0976?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/932f7080-5003-47eb-acf8-56e355a69241?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -839,7 +841,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:43:38 GMT", + "Date": "Tue, 25 Oct 2022 10:29:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -847,19 +849,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ddff388-75b9-4028-b127-fbc17b44ecf5", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134339Z:2ddff388-75b9-4028-b127-fbc17b44ecf5", + "x-ms-correlation-request-id": "17dfb3cd-b07c-4529-865e-fad06a8f748f", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102928Z:17dfb3cd-b07c-4529-865e-fad06a8f748f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3", "name": "sdk-py-tests-acc-1-9c012fa3", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A43%3A08.3936023Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A28.2206263Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:41:23.7185369Z" + "CreatedOnDate": "2022-10-25T10:28:25.0430100Z" }, "properties": { "encryption": { @@ -870,10 +872,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:41:26.8034073Z", + "createdAt": "2022-10-25T10:28:26.7166057Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:41:26.8034073Z" + "lastModifiedAt": "2022-10-25T10:28:26.7166057Z" } } }, @@ -884,27 +886,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:43:38 GMT", + "Date": "Tue, 25 Oct 2022 10:29:28 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee7e4f84-1415-48bc-bd4d-262941d009d8", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134339Z:ee7e4f84-1415-48bc-bd4d-262941d009d8" + "x-ms-correlation-request-id": "be35b3b4-e59a-4988-9b8d-73a8450f190b", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102929Z:be35b3b4-e59a-4988-9b8d-73a8450f190b", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9c012fa3\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_list_backup_policies.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_list_backup_policies.json index b0b5319044ee..da760321f854 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_list_backup_policies.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_list_backup_policies.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:37:43 GMT", + "Date": "Tue, 25 Oct 2022 10:27:04 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:37:44 GMT", + "Date": "Tue, 25 Oct 2022 10:27:05 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "184c47f3-afc5-4fea-900d-eec6b5aeeb07", + "client-request-id": "b386ae67-2424-487b-a5e5-62bd4d85de1a", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "184c47f3-afc5-4fea-900d-eec6b5aeeb07", + "client-request-id": "b386ae67-2424-487b-a5e5-62bd4d85de1a", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:37:44 GMT", + "Date": "Tue, 25 Oct 2022 10:27:05 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e336c3b5-2987-46ca-b354-a8028bac5cbd?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3ada3ae-1366-4300-948d-0776970f4f97?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "702", + "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:37:49 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A37%3A49.4568351Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:27:09 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A08.6289355Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60d507f8-bea6-40ca-9c5f-07a3ffbf03f9", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133750Z:60d507f8-bea6-40ca-9c5f-07a3ffbf03f9", + "x-ms-correlation-request-id": "49833278-e92e-4059-9c9a-e0cb7c325988", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102710Z:49833278-e92e-4059-9c9a-e0cb7c325988", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad", "name": "sdk-py-tests-acc-1-af962dad", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A37%3A49.4568351Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A08.6289355Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:37:46.3859963Z" + "CreatedOnDate": "2022-10-25T10:27:06.5988559Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:37:48.53452Z", + "createdAt": "2022-10-25T10:27:08.423184Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:37:48.53452Z" + "lastModifiedAt": "2022-10-25T10:27:08.423184Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e336c3b5-2987-46ca-b354-a8028bac5cbd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3ada3ae-1366-4300-948d-0776970f4f97?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:38:20 GMT", + "Date": "Tue, 25 Oct 2022 10:27:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7fef300e-a229-4c2b-ac16-4f4e694047d8", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133821Z:7fef300e-a229-4c2b-ac16-4f4e694047d8", + "x-ms-correlation-request-id": "3dd704e5-ee1a-4099-9bc0-d7bc6f86cdc4", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102710Z:3dd704e5-ee1a-4099-9bc0-d7bc6f86cdc4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e336c3b5-2987-46ca-b354-a8028bac5cbd", - "name": "e336c3b5-2987-46ca-b354-a8028bac5cbd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3ada3ae-1366-4300-948d-0776970f4f97", + "name": "f3ada3ae-1366-4300-948d-0776970f4f97", "status": "Succeeded", - "startTime": "2022-09-19T13:37:49.4600496Z", - "endTime": "2022-09-19T13:37:49.4913183Z", + "startTime": "2022-10-25T10:27:08.6311494Z", + "endTime": "2022-10-25T10:27:08.6936504Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:38:21 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A37%3A49.4966718Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:27:10 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A08.6918739Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f14a4a2f-fd68-4642-aa0c-35d90e6e1e9c", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133821Z:f14a4a2f-fd68-4642-aa0c-35d90e6e1e9c", + "x-ms-correlation-request-id": "c1495979-f1da-47d2-baf2-4fb62d4a8631", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102710Z:c1495979-f1da-47d2-baf2-4fb62d4a8631", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad", "name": "sdk-py-tests-acc-1-af962dad", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A37%3A49.4966718Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A08.6918739Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:37:46.3859963Z" + "CreatedOnDate": "2022-10-25T10:27:06.5988559Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:37:48.53452Z", + "createdAt": "2022-10-25T10:27:08.423184Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:37:48.53452Z" + "lastModifiedAt": "2022-10-25T10:27:08.423184Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "134", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -400,30 +400,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/46efa71d-eb16-4f3d-8a5d-c88ad3be5bf8?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/978b9c03-5c1d-456a-bd85-e64ff2da6c25?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "881", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:38:24 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A38%3A23.1916792Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:27:13 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A12.6146377Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "692e80c0-b636-4683-84b9-e45625ce6e3b", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133824Z:692e80c0-b636-4683-84b9-e45625ce6e3b", + "x-ms-correlation-request-id": "337097c8-7907-4ed8-8c29-d27bf3be6695", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102713Z:337097c8-7907-4ed8-8c29-d27bf3be6695", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-af962dad/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A38%3A23.1916792Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A12.6146377Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:38:21.7949499Z" + "CreatedOnDate": "2022-10-25T10:27:11.0325737Z" }, "properties": { "enabled": true, @@ -435,21 +435,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:38:23.0408656Z", + "createdAt": "2022-10-25T10:27:12.4726235Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:38:23.0408656Z" + "lastModifiedAt": "2022-10-25T10:27:12.4726235Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/46efa71d-eb16-4f3d-8a5d-c88ad3be5bf8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/978b9c03-5c1d-456a-bd85-e64ff2da6c25?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -457,7 +457,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:38:54 GMT", + "Date": "Tue, 25 Oct 2022 10:27:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -465,17 +465,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88a87da5-e9d6-4cec-bd2a-b002bc1f0c59", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133854Z:88a87da5-e9d6-4cec-bd2a-b002bc1f0c59", + "x-ms-correlation-request-id": "b15f155a-5807-4655-b92f-ad104c880cc7", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102713Z:b15f155a-5807-4655-b92f-ad104c880cc7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/46efa71d-eb16-4f3d-8a5d-c88ad3be5bf8", - "name": "46efa71d-eb16-4f3d-8a5d-c88ad3be5bf8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/978b9c03-5c1d-456a-bd85-e64ff2da6c25", + "name": "978b9c03-5c1d-456a-bd85-e64ff2da6c25", "status": "Succeeded", - "startTime": "2022-09-19T13:38:23.1890888Z", - "endTime": "2022-09-19T13:38:23.9859549Z", + "startTime": "2022-10-25T10:27:12.6235646Z", + "endTime": "2022-10-25T10:27:13.4204476Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1" @@ -489,7 +489,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -497,8 +497,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:38:54 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A38%3A23.9920884Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:27:13 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A13.4081919Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -506,23 +506,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e734132-4e96-483d-9ca9-3cd2f54dbd5c", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133855Z:3e734132-4e96-483d-9ca9-3cd2f54dbd5c", + "x-ms-correlation-request-id": "11e529be-5e05-44a2-8126-b4a9b5e41427", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102714Z:11e529be-5e05-44a2-8126-b4a9b5e41427", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-af962dad/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A38%3A23.9920884Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A13.4081919Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:38:21.7949499Z" + "CreatedOnDate": "2022-10-25T10:27:11.0325737Z" }, "properties": { "enabled": true, - "backupPolicyId": "554eb2e0-3820-11ed-8554-2e12f04d8f72", + "backupPolicyId": "972e6716-544f-11ed-8554-2e12f04d8f72", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -532,10 +532,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:38:23.0408656Z", + "createdAt": "2022-10-25T10:27:12.4726235Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:38:23.0408656Z" + "lastModifiedAt": "2022-10-25T10:27:12.4726235Z" } } }, @@ -548,7 +548,7 @@ "Connection": "keep-alive", "Content-Length": "134", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -561,30 +561,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d3d786-d2db-4780-bf48-d11301e65a70?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd274625-2588-4d25-958d-f21a23d279d5?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "881", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:38:57 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A38%3A56.9115266Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:27:16 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A16.0346664Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf60e2d4-1472-495c-8c21-638dea782a43", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133857Z:cf60e2d4-1472-495c-8c21-638dea782a43", + "x-ms-correlation-request-id": "f2d14363-fd00-4965-ae8e-7519a9e035a1", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102716Z:f2d14363-fd00-4965-ae8e-7519a9e035a1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2", "name": "sdk-py-tests-acc-1-af962dad/sdk-py-tests-backup-policy-2", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A38%3A56.9115266Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A16.0346664Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:38:55.6373279Z" + "CreatedOnDate": "2022-10-25T10:27:14.6270870Z" }, "properties": { "enabled": true, @@ -596,21 +596,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:38:56.7639112Z", + "createdAt": "2022-10-25T10:27:15.8990521Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:38:56.7639112Z" + "lastModifiedAt": "2022-10-25T10:27:15.8990521Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d3d786-d2db-4780-bf48-d11301e65a70?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd274625-2588-4d25-958d-f21a23d279d5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -618,7 +618,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:39:27 GMT", + "Date": "Tue, 25 Oct 2022 10:27:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -626,17 +626,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67320590-03a0-42a2-8e84-9ab889215dff", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133928Z:67320590-03a0-42a2-8e84-9ab889215dff", + "x-ms-correlation-request-id": "d03fce12-d49a-43e8-91c7-b9391a73b4a5", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102717Z:d03fce12-d49a-43e8-91c7-b9391a73b4a5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e9d3d786-d2db-4780-bf48-d11301e65a70", - "name": "e9d3d786-d2db-4780-bf48-d11301e65a70", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd274625-2588-4d25-958d-f21a23d279d5", + "name": "cd274625-2588-4d25-958d-f21a23d279d5", "status": "Succeeded", - "startTime": "2022-09-19T13:38:56.906002Z", - "endTime": "2022-09-19T13:38:57.577876Z", + "startTime": "2022-10-25T10:27:16.0386943Z", + "endTime": "2022-10-25T10:27:16.1011565Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2" @@ -650,7 +650,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -658,8 +658,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:39:27 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A38%3A57.5800536Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:27:17 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A16.0996612Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -667,23 +667,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f3f7c63-f19c-4db5-a4ae-1e6bee4ee22e", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133928Z:2f3f7c63-f19c-4db5-a4ae-1e6bee4ee22e", + "x-ms-correlation-request-id": "8f3a76b2-f1d9-4f60-a0aa-d81418784070", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102717Z:8f3a76b2-f1d9-4f60-a0aa-d81418784070", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2", "name": "sdk-py-tests-acc-1-af962dad/sdk-py-tests-backup-policy-2", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A38%3A57.5800536Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A16.0996612Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:38:55.6373279Z" + "CreatedOnDate": "2022-10-25T10:27:14.6270870Z" }, "properties": { "enabled": true, - "backupPolicyId": "69554dc0-3820-11ed-8554-2e12f04d8f72", + "backupPolicyId": "98ca0bfe-544f-11ed-8554-2e12f04d8f72", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -693,10 +693,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:38:56.7639112Z", + "createdAt": "2022-10-25T10:27:15.8990521Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:38:56.7639112Z" + "lastModifiedAt": "2022-10-25T10:27:15.8990521Z" } } }, @@ -707,7 +707,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -715,7 +715,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:39:28 GMT", + "Date": "Tue, 25 Oct 2022 10:27:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -723,9 +723,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad0a8377-61a3-4d42-bfbf-a84bebf61ef6", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133928Z:ad0a8377-61a3-4d42-bfbf-a84bebf61ef6", + "x-ms-correlation-request-id": "23f2a8e4-6dee-4593-8f90-749623ef321a", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102717Z:23f2a8e4-6dee-4593-8f90-749623ef321a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -734,14 +734,14 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-af962dad/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A38%3A23.9920884Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A13.4081919Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:38:21.7949499Z" + "CreatedOnDate": "2022-10-25T10:27:11.0325737Z" }, "properties": { "enabled": true, - "backupPolicyId": "554eb2e0-3820-11ed-8554-2e12f04d8f72", + "backupPolicyId": "972e6716-544f-11ed-8554-2e12f04d8f72", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -751,24 +751,24 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:38:23.0408656Z", + "createdAt": "2022-10-25T10:27:12.4726235Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:38:23.0408656Z" + "lastModifiedAt": "2022-10-25T10:27:12.4726235Z" } }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2", "name": "sdk-py-tests-acc-1-af962dad/sdk-py-tests-backup-policy-2", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A38%3A57.5800536Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A16.0996612Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:38:55.6373279Z" + "CreatedOnDate": "2022-10-25T10:27:14.6270870Z" }, "properties": { "enabled": true, - "backupPolicyId": "69554dc0-3820-11ed-8554-2e12f04d8f72", + "backupPolicyId": "98ca0bfe-544f-11ed-8554-2e12f04d8f72", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -778,10 +778,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:38:56.7639112Z", + "createdAt": "2022-10-25T10:27:15.8990521Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:38:56.7639112Z" + "lastModifiedAt": "2022-10-25T10:27:15.8990521Z" } } ] @@ -795,36 +795,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b70925f-451c-4fdc-86ca-a9a46d4b2e1b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1350a4c4-e2d0-4734-9dcc-38e084f6a109?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:39:28 GMT", + "Date": "Tue, 25 Oct 2022 10:27:18 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b70925f-451c-4fdc-86ca-a9a46d4b2e1b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1350a4c4-e2d0-4734-9dcc-38e084f6a109?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3fe6142-e5b7-4f51-b79f-19b22d7dd8b3", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133929Z:d3fe6142-e5b7-4f51-b79f-19b22d7dd8b3", + "x-ms-correlation-request-id": "b4455c48-2dc8-4c5a-a562-f6c367d6c5d8", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102718Z:b4455c48-2dc8-4c5a-a562-f6c367d6c5d8", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b70925f-451c-4fdc-86ca-a9a46d4b2e1b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1350a4c4-e2d0-4734-9dcc-38e084f6a109?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -832,7 +832,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:39:59 GMT", + "Date": "Tue, 25 Oct 2022 10:27:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -840,17 +840,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89123ba3-4654-4dca-b6bb-d71ba6271175", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134000Z:89123ba3-4654-4dca-b6bb-d71ba6271175", + "x-ms-correlation-request-id": "27854397-af4b-4818-a0bf-5fd51ea4b9ab", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102718Z:27854397-af4b-4818-a0bf-5fd51ea4b9ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b70925f-451c-4fdc-86ca-a9a46d4b2e1b", - "name": "7b70925f-451c-4fdc-86ca-a9a46d4b2e1b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1350a4c4-e2d0-4734-9dcc-38e084f6a109", + "name": "1350a4c4-e2d0-4734-9dcc-38e084f6a109", "status": "Succeeded", - "startTime": "2022-09-19T13:39:29.5554737Z", - "endTime": "2022-09-19T13:39:29.7429412Z", + "startTime": "2022-10-25T10:27:18.5393872Z", + "endTime": "2022-10-25T10:27:18.695566Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1" @@ -858,13 +858,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b70925f-451c-4fdc-86ca-a9a46d4b2e1b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1350a4c4-e2d0-4734-9dcc-38e084f6a109?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -872,7 +872,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:40:00 GMT", + "Date": "Tue, 25 Oct 2022 10:27:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -880,23 +880,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44f17f84-18fa-4d10-822b-c5a55e763f13", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134000Z:44f17f84-18fa-4d10-822b-c5a55e763f13", + "x-ms-correlation-request-id": "cded9102-0eeb-4ec3-a381-24caa3e36f6d", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102719Z:cded9102-0eeb-4ec3-a381-24caa3e36f6d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-af962dad/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A39%3A29.5579846Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A18.5362757Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:38:21.7949499Z" + "CreatedOnDate": "2022-10-25T10:27:11.0325737Z" }, "properties": { "enabled": true, - "backupPolicyId": "554eb2e0-3820-11ed-8554-2e12f04d8f72", + "backupPolicyId": "972e6716-544f-11ed-8554-2e12f04d8f72", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -907,10 +907,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:38:23.0408656Z", + "createdAt": "2022-10-25T10:27:12.4726235Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:38:23.0408656Z" + "lastModifiedAt": "2022-10-25T10:27:12.4726235Z" } } }, @@ -921,27 +921,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "298", + "Content-Length": "299", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:40:02 GMT", + "Date": "Tue, 25 Oct 2022 10:27:21 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c0ff043-29bb-4f39-874f-a7e16d114ff8", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134002Z:9c0ff043-29bb-4f39-874f-a7e16d114ff8" + "x-ms-correlation-request-id": "dd58adcf-f1fa-44d2-a0da-fc0c340c62a9", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102721Z:dd58adcf-f1fa-44d2-a0da-fc0c340c62a9", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-1\u0027 is not found." } } }, @@ -953,36 +955,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3579782b-e12c-407f-8583-628cd1a9b7ca?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8698156-a43b-450f-9867-d634edf462f5?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:40:03 GMT", + "Date": "Tue, 25 Oct 2022 10:27:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3579782b-e12c-407f-8583-628cd1a9b7ca?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8698156-a43b-450f-9867-d634edf462f5?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0cc4a993-80e6-4dc2-85b6-ff27ee4aa871", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134003Z:0cc4a993-80e6-4dc2-85b6-ff27ee4aa871", + "x-ms-correlation-request-id": "6823a285-eb7f-4fc4-8b69-bed32d617f93", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102722Z:6823a285-eb7f-4fc4-8b69-bed32d617f93", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3579782b-e12c-407f-8583-628cd1a9b7ca?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8698156-a43b-450f-9867-d634edf462f5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -990,7 +992,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:40:32 GMT", + "Date": "Tue, 25 Oct 2022 10:27:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -998,17 +1000,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2f446e4-6d65-4a3e-9f6b-d8ad7ae137d0", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134033Z:b2f446e4-6d65-4a3e-9f6b-d8ad7ae137d0", + "x-ms-correlation-request-id": "2b1ee32b-14e0-4d2b-b2a2-bec7ae72468c", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102722Z:2b1ee32b-14e0-4d2b-b2a2-bec7ae72468c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3579782b-e12c-407f-8583-628cd1a9b7ca", - "name": "3579782b-e12c-407f-8583-628cd1a9b7ca", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8698156-a43b-450f-9867-d634edf462f5", + "name": "a8698156-a43b-450f-9867-d634edf462f5", "status": "Succeeded", - "startTime": "2022-09-19T13:40:03.0910819Z", - "endTime": "2022-09-19T13:40:03.8410716Z", + "startTime": "2022-10-25T10:27:22.1552328Z", + "endTime": "2022-10-25T10:27:22.2958118Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2" @@ -1016,13 +1018,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3579782b-e12c-407f-8583-628cd1a9b7ca?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8698156-a43b-450f-9867-d634edf462f5?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1030,7 +1032,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:40:33 GMT", + "Date": "Tue, 25 Oct 2022 10:27:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1038,23 +1040,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cceeb97c-0001-4c03-a483-60304ce5fd1d", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134033Z:cceeb97c-0001-4c03-a483-60304ce5fd1d", + "x-ms-correlation-request-id": "fd900f97-d225-4226-bbec-df861737b58e", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102722Z:fd900f97-d225-4226-bbec-df861737b58e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2", "name": "sdk-py-tests-acc-1-af962dad/sdk-py-tests-backup-policy-2", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A40%3A03.0909944Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A27%3A22.1542178Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:38:55.6373279Z" + "CreatedOnDate": "2022-10-25T10:27:14.6270870Z" }, "properties": { "enabled": true, - "backupPolicyId": "69554dc0-3820-11ed-8554-2e12f04d8f72", + "backupPolicyId": "98ca0bfe-544f-11ed-8554-2e12f04d8f72", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -1065,10 +1067,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:38:56.7639112Z", + "createdAt": "2022-10-25T10:27:15.8990521Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:38:56.7639112Z" + "lastModifiedAt": "2022-10-25T10:27:15.8990521Z" } } }, @@ -1079,27 +1081,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "298", + "Content-Length": "299", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:40:35 GMT", + "Date": "Tue, 25 Oct 2022 10:27:24 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82443198-34ab-4d4e-8c53-0be17cc77384", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134035Z:82443198-34ab-4d4e-8c53-0be17cc77384" + "x-ms-correlation-request-id": "bd32966b-4f41-4b00-9e54-fdd882ca1884", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102725Z:bd32966b-4f41-4b00-9e54-fdd882ca1884", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad/backupPolicies/sdk-py-tests-backup-policy-2\u0027 is not found." } } }, @@ -1110,7 +1114,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1118,7 +1122,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:40:35 GMT", + "Date": "Tue, 25 Oct 2022 10:28:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1126,9 +1130,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84fed8cd-840b-49e1-ab09-1c8da85a012e", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134036Z:84fed8cd-840b-49e1-ab09-1c8da85a012e", + "x-ms-correlation-request-id": "0a2a239e-0a79-4ab5-86f5-c6cbcc25b5aa", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102816Z:0a2a239e-0a79-4ab5-86f5-c6cbcc25b5aa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1143,36 +1147,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb2b247c-0693-4965-80b0-b11580b87c09?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6a36bb72-9cbc-4ee4-844d-112eb5aa8662?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:40:36 GMT", + "Date": "Tue, 25 Oct 2022 10:28:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb2b247c-0693-4965-80b0-b11580b87c09?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6a36bb72-9cbc-4ee4-844d-112eb5aa8662?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7f24661-7c57-4b13-84ac-7b7af02ad8b2", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134037Z:d7f24661-7c57-4b13-84ac-7b7af02ad8b2", + "x-ms-correlation-request-id": "1f3f3a7c-9bd0-4612-bc18-7727f2696d1c", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102822Z:1f3f3a7c-9bd0-4612-bc18-7727f2696d1c", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb2b247c-0693-4965-80b0-b11580b87c09?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6a36bb72-9cbc-4ee4-844d-112eb5aa8662?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1180,7 +1184,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:41:06 GMT", + "Date": "Tue, 25 Oct 2022 10:28:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1188,17 +1192,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca97ba48-cd52-45d5-b025-9990cd7b40ba", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134107Z:ca97ba48-cd52-45d5-b025-9990cd7b40ba", + "x-ms-correlation-request-id": "bd1409b2-e223-4532-a01f-c1474c9b0232", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102822Z:bd1409b2-e223-4532-a01f-c1474c9b0232", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb2b247c-0693-4965-80b0-b11580b87c09", - "name": "fb2b247c-0693-4965-80b0-b11580b87c09", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6a36bb72-9cbc-4ee4-844d-112eb5aa8662", + "name": "6a36bb72-9cbc-4ee4-844d-112eb5aa8662", "status": "Succeeded", - "startTime": "2022-09-19T13:40:36.9181797Z", - "endTime": "2022-09-19T13:40:36.9650524Z", + "startTime": "2022-10-25T10:28:21.969Z", + "endTime": "2022-10-25T10:28:22.0628302Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad" @@ -1206,13 +1210,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb2b247c-0693-4965-80b0-b11580b87c09?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6a36bb72-9cbc-4ee4-844d-112eb5aa8662?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1220,7 +1224,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:41:06 GMT", + "Date": "Tue, 25 Oct 2022 10:28:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1228,19 +1232,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94b6fd26-ef1a-43e8-8326-bf5dd63de6fd", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134107Z:94b6fd26-ef1a-43e8-8326-bf5dd63de6fd", + "x-ms-correlation-request-id": "71915279-e34f-429c-afa4-664a04d2202a", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102822Z:71915279-e34f-429c-afa4-664a04d2202a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad", "name": "sdk-py-tests-acc-1-af962dad", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A40%3A36.9208321Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A28%3A21.9702445Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:37:46.3859963Z" + "CreatedOnDate": "2022-10-25T10:27:06.5988559Z" }, "properties": { "encryption": { @@ -1251,10 +1255,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:37:48.53452Z", + "createdAt": "2022-10-25T10:27:08.423184Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:37:48.53452Z" + "lastModifiedAt": "2022-10-25T10:27:08.423184Z" } } }, @@ -1265,27 +1269,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:41:07 GMT", + "Date": "Tue, 25 Oct 2022 10:28:22 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a606c5b-0f87-4f30-94e6-556fdb229c19", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134107Z:4a606c5b-0f87-4f30-94e6-556fdb229c19" + "x-ms-correlation-request-id": "6f866757-97d5-49b2-8042-2cad6ce67f85", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102822Z:6f866757-97d5-49b2-8042-2cad6ce67f85", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-af962dad\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_update_backup_policies.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_update_backup_policies.json index 4be087cfb3c8..57b0aeb0f3ca 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_update_backup_policies.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_backup_policies.pyTestNetAppBackupPoliciestest_update_backup_policies.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:43:48 GMT", + "Date": "Tue, 25 Oct 2022 10:29:28 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:43:49 GMT", + "Date": "Tue, 25 Oct 2022 10:29:28 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "19eb3eae-699d-4327-9cad-852d50bcee47", + "client-request-id": "a0832c66-eb1d-40de-912d-08278af22d0a", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "19eb3eae-699d-4327-9cad-852d50bcee47", + "client-request-id": "a0832c66-eb1d-40de-912d-08278af22d0a", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:43:49 GMT", + "Date": "Tue, 25 Oct 2022 10:29:29 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22692fe1-5e96-4bf7-826a-5ec224e7f623?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f20f46a-ba95-4c51-9433-86b06e1d58f7?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "704", + "Content-Length": "702", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:43:55 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A43%3A55.0927997Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:29:33 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A32.5559506Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cefe183-7afa-4812-b875-2cf2b85a4267", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134356Z:3cefe183-7afa-4812-b875-2cf2b85a4267", + "x-ms-correlation-request-id": "00367662-d6a7-487d-9b4c-b79b522532e6", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102933Z:00367662-d6a7-487d-9b4c-b79b522532e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74", "name": "sdk-py-tests-acc-1-cdf2e74", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A43%3A55.0927997Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A32.5559506Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:43:52.1633178Z" + "CreatedOnDate": "2022-10-25T10:29:30.9479432Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:43:54.1818252Z", + "createdAt": "2022-10-25T10:29:32.408164Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:43:54.1818252Z" + "lastModifiedAt": "2022-10-25T10:29:32.408164Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22692fe1-5e96-4bf7-826a-5ec224e7f623?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f20f46a-ba95-4c51-9433-86b06e1d58f7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:44:25 GMT", + "Date": "Tue, 25 Oct 2022 10:29:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4ef084d-9232-4c78-81f5-bb9cf2e306af", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134426Z:c4ef084d-9232-4c78-81f5-bb9cf2e306af", + "x-ms-correlation-request-id": "f57bd4d0-c834-419a-b7cc-22ff5e08530f", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102934Z:f57bd4d0-c834-419a-b7cc-22ff5e08530f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/22692fe1-5e96-4bf7-826a-5ec224e7f623", - "name": "22692fe1-5e96-4bf7-826a-5ec224e7f623", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2f20f46a-ba95-4c51-9433-86b06e1d58f7", + "name": "2f20f46a-ba95-4c51-9433-86b06e1d58f7", "status": "Succeeded", - "startTime": "2022-09-19T13:43:55.0881783Z", - "endTime": "2022-09-19T13:43:55.135079Z", + "startTime": "2022-10-25T10:29:32.5592894Z", + "endTime": "2022-10-25T10:29:32.6061661Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:44:26 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A43%3A55.1427658Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:29:33 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A32.6041382Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9463dc75-f0c4-4fb8-a45d-675d9b5c3b69", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134427Z:9463dc75-f0c4-4fb8-a45d-675d9b5c3b69", + "x-ms-correlation-request-id": "02df0da9-466a-4a17-857b-c9a64cd77822", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102934Z:02df0da9-466a-4a17-857b-c9a64cd77822", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74", "name": "sdk-py-tests-acc-1-cdf2e74", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A43%3A55.1427658Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A32.6041382Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:43:52.1633178Z" + "CreatedOnDate": "2022-10-25T10:29:30.9479432Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:43:54.1818252Z", + "createdAt": "2022-10-25T10:29:32.408164Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:43:54.1818252Z" + "lastModifiedAt": "2022-10-25T10:29:32.408164Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "134", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -400,30 +400,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bb914cc-ad4f-4760-938f-4aa37694ac89?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34719604-777c-432a-ac64-ae7b6701ecd1?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "879", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:44:29 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A44%3A28.6449439Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:29:36 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A36.1428824Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b94be456-351d-4bfb-bcbd-eaea59d72f08", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134430Z:b94be456-351d-4bfb-bcbd-eaea59d72f08", + "x-ms-correlation-request-id": "adf2bba8-f78f-4d2f-abb9-5aa0cd3651ce", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102937Z:adf2bba8-f78f-4d2f-abb9-5aa0cd3651ce", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-cdf2e74/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A44%3A28.6449439Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A36.1428824Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:44:27.3263443Z" + "CreatedOnDate": "2022-10-25T10:29:34.7160536Z" }, "properties": { "enabled": true, @@ -435,21 +435,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:44:28.4789904Z", + "createdAt": "2022-10-25T10:29:36.0043986Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:44:28.4789904Z" + "lastModifiedAt": "2022-10-25T10:29:36.0043986Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bb914cc-ad4f-4760-938f-4aa37694ac89?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34719604-777c-432a-ac64-ae7b6701ecd1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -457,7 +457,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:45:00 GMT", + "Date": "Tue, 25 Oct 2022 10:29:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -465,17 +465,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "741aa68c-9780-49b4-a46a-d1009189f7c4", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134500Z:741aa68c-9780-49b4-a46a-d1009189f7c4", + "x-ms-correlation-request-id": "d48b4bf0-04f4-40ff-9787-b703a2e4b87a", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102937Z:d48b4bf0-04f4-40ff-9787-b703a2e4b87a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bb914cc-ad4f-4760-938f-4aa37694ac89", - "name": "3bb914cc-ad4f-4760-938f-4aa37694ac89", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34719604-777c-432a-ac64-ae7b6701ecd1", + "name": "34719604-777c-432a-ac64-ae7b6701ecd1", "status": "Succeeded", - "startTime": "2022-09-19T13:44:28.6490264Z", - "endTime": "2022-09-19T13:44:29.5251937Z", + "startTime": "2022-10-25T10:29:36.1531046Z", + "endTime": "2022-10-25T10:29:36.9031149Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1" @@ -489,7 +489,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -497,8 +497,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:45:00 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A44%3A29.530293Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:29:37 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A36.887707Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -506,23 +506,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f463678-d7f2-4cd6-8a63-065bae1de30a", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134500Z:6f463678-d7f2-4cd6-8a63-065bae1de30a", + "x-ms-correlation-request-id": "24bd64a2-78c2-4649-aa24-7708ee570491", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102938Z:24bd64a2-78c2-4649-aa24-7708ee570491", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-cdf2e74/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A44%3A29.530293Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A36.887707Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:44:27.3263443Z" + "CreatedOnDate": "2022-10-25T10:29:34.7160536Z" }, "properties": { "enabled": true, - "backupPolicyId": "2f2eb4d1-3821-11ed-ba37-768357df5023", + "backupPolicyId": "ecb470ab-544f-11ed-8554-2e12f04d8f72", "dailyBackupsToKeep": 2, "weeklyBackupsToKeep": 0, "monthlyBackupsToKeep": 0, @@ -532,10 +532,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:44:28.4789904Z", + "createdAt": "2022-10-25T10:29:36.0043986Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:44:28.4789904Z" + "lastModifiedAt": "2022-10-25T10:29:36.0043986Z" } } }, @@ -548,7 +548,7 @@ "Connection": "keep-alive", "Content-Length": "134", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -561,36 +561,36 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1cf965d-a685-4f29-9fce-546d3db5d96f?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec67ce09-ca97-41fc-adbc-f58dcedb7a83?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "955", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:45:01 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A45%3A01.2234285Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:29:38 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A38.5617568Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1cf965d-a685-4f29-9fce-546d3db5d96f?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec67ce09-ca97-41fc-adbc-f58dcedb7a83?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97aea62c-5818-4481-982c-8a3606f425bf", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134501Z:97aea62c-5818-4481-982c-8a3606f425bf", + "x-ms-correlation-request-id": "d327fbcc-9028-456c-976a-9f5e16508af3", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102938Z:d327fbcc-9028-456c-976a-9f5e16508af3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-cdf2e74/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A45%3A01.2234285Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A38.5617568Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:44:27.3263443Z" + "CreatedOnDate": "2022-10-25T10:29:34.7160536Z" }, "properties": { "provisioningState": "Patching", "enabled": true, - "backupPolicyId": "2f2eb4d1-3821-11ed-ba37-768357df5023", + "backupPolicyId": "ecb470ab-544f-11ed-8554-2e12f04d8f72", "dailyBackupsToKeep": 0, "weeklyBackupsToKeep": 1, "monthlyBackupsToKeep": 0, @@ -599,21 +599,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:44:28.4789904Z", + "createdAt": "2022-10-25T10:29:36.0043986Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:44:28.4789904Z" + "lastModifiedAt": "2022-10-25T10:29:36.0043986Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1cf965d-a685-4f29-9fce-546d3db5d96f?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec67ce09-ca97-41fc-adbc-f58dcedb7a83?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -621,7 +621,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:45:31 GMT", + "Date": "Tue, 25 Oct 2022 10:29:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -629,17 +629,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c43aedd-e767-457e-8805-632dc174427b", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134531Z:0c43aedd-e767-457e-8805-632dc174427b", + "x-ms-correlation-request-id": "e5c2f7b3-8c68-4998-9d78-a0f7cdf78f8b", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102939Z:e5c2f7b3-8c68-4998-9d78-a0f7cdf78f8b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1cf965d-a685-4f29-9fce-546d3db5d96f", - "name": "e1cf965d-a685-4f29-9fce-546d3db5d96f", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ec67ce09-ca97-41fc-adbc-f58dcedb7a83", + "name": "ec67ce09-ca97-41fc-adbc-f58dcedb7a83", "status": "Succeeded", - "startTime": "2022-09-19T13:45:01.2143242Z", - "endTime": "2022-09-19T13:45:02.1050214Z", + "startTime": "2022-10-25T10:29:38.5751638Z", + "endTime": "2022-10-25T10:29:38.7626495Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1" @@ -653,7 +653,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -661,8 +661,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:45:31 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A45%3A02.1029046Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 10:29:38 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A38.7546479Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -670,24 +670,24 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e958a384-0300-4e1f-af61-9ae2300f40af", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134532Z:e958a384-0300-4e1f-af61-9ae2300f40af", + "x-ms-correlation-request-id": "9546861e-d633-4549-b197-2525c41c7c8e", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102939Z:9546861e-d633-4549-b197-2525c41c7c8e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-cdf2e74/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A45%3A02.1029046Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A38.7546479Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:45:00.8927784Z" + "CreatedOnDate": "2022-10-25T10:29:38.2591795Z" }, "properties": { "provisioningState": "Succeeded", "enabled": true, - "backupPolicyId": "2f2eb4d1-3821-11ed-ba37-768357df5023", + "backupPolicyId": "ecb470ab-544f-11ed-8554-2e12f04d8f72", "dailyBackupsToKeep": 0, "weeklyBackupsToKeep": 1, "monthlyBackupsToKeep": 0, @@ -696,10 +696,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:44:28.4789904Z", + "createdAt": "2022-10-25T10:29:36.0043986Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:45:01.0886445Z" + "lastModifiedAt": "2022-10-25T10:29:38.4279908Z" } } }, @@ -711,36 +711,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ceeccae4-bcc9-4494-9bc6-7ef413ecb3c1?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c5160b8-d218-40e9-9dfb-bb290929d6c1?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:45:32 GMT", + "Date": "Tue, 25 Oct 2022 10:29:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ceeccae4-bcc9-4494-9bc6-7ef413ecb3c1?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c5160b8-d218-40e9-9dfb-bb290929d6c1?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6401a35f-d572-4562-b4fe-3ad60eaaaece", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134532Z:6401a35f-d572-4562-b4fe-3ad60eaaaece", + "x-ms-correlation-request-id": "a79118e4-a501-4f45-94c2-b3ec821af50e", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102940Z:a79118e4-a501-4f45-94c2-b3ec821af50e", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ceeccae4-bcc9-4494-9bc6-7ef413ecb3c1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c5160b8-d218-40e9-9dfb-bb290929d6c1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -748,7 +748,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:46:02 GMT", + "Date": "Tue, 25 Oct 2022 10:29:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -756,17 +756,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "963a05c3-fa9f-4ad9-b75d-7a5896a96f19", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134603Z:963a05c3-fa9f-4ad9-b75d-7a5896a96f19", + "x-ms-correlation-request-id": "abca8f14-09a3-478d-9d3d-62108f9d3513", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102940Z:abca8f14-09a3-478d-9d3d-62108f9d3513", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ceeccae4-bcc9-4494-9bc6-7ef413ecb3c1", - "name": "ceeccae4-bcc9-4494-9bc6-7ef413ecb3c1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c5160b8-d218-40e9-9dfb-bb290929d6c1", + "name": "3c5160b8-d218-40e9-9dfb-bb290929d6c1", "status": "Succeeded", - "startTime": "2022-09-19T13:45:32.8225087Z", - "endTime": "2022-09-19T13:45:33.825567Z", + "startTime": "2022-10-25T10:29:39.9567237Z", + "endTime": "2022-10-25T10:29:40.0817425Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1" @@ -774,13 +774,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ceeccae4-bcc9-4494-9bc6-7ef413ecb3c1?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c5160b8-d218-40e9-9dfb-bb290929d6c1?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -788,7 +788,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:46:02 GMT", + "Date": "Tue, 25 Oct 2022 10:29:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -796,23 +796,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0067875c-4dc5-4eb7-a48c-0fe633c0f664", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134603Z:0067875c-4dc5-4eb7-a48c-0fe633c0f664", + "x-ms-correlation-request-id": "f3624bf8-388a-4322-aae6-f982161dc0a6", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102940Z:f3624bf8-388a-4322-aae6-f982161dc0a6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1", "name": "sdk-py-tests-acc-1-cdf2e74/sdk-py-tests-backup-policy-1", "type": "Microsoft.NetApp/netAppAccounts/backupPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A45%3A32.8316153Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A29%3A39.9569649Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:45:00.8927784Z" + "CreatedOnDate": "2022-10-25T10:29:38.2591795Z" }, "properties": { "enabled": true, - "backupPolicyId": "2f2eb4d1-3821-11ed-ba37-768357df5023", + "backupPolicyId": "ecb470ab-544f-11ed-8554-2e12f04d8f72", "dailyBackupsToKeep": 0, "weeklyBackupsToKeep": 1, "monthlyBackupsToKeep": 0, @@ -823,10 +823,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:44:28.4789904Z", + "createdAt": "2022-10-25T10:29:36.0043986Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:45:01.0886445Z" + "lastModifiedAt": "2022-10-25T10:29:38.4279908Z" } } }, @@ -837,27 +837,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "297", + "Content-Length": "298", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:46:05 GMT", + "Date": "Tue, 25 Oct 2022 10:29:42 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d83d8fa-1625-43f8-9f51-addd5878f8c0", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134605Z:2d83d8fa-1625-43f8-9f51-addd5878f8c0" + "x-ms-correlation-request-id": "895b5b42-3a45-4e68-8d82-4ab1ef063406", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T102942Z:895b5b42-3a45-4e68-8d82-4ab1ef063406", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74/backupPolicies/sdk-py-tests-backup-policy-1\u0027 is not found." } } }, @@ -869,36 +871,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2cf5255-0ce6-4bc4-9ed5-d4115d04694b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e22bb60-69b8-4f5b-abb4-b8bc8dba5b5e?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:46:05 GMT", + "Date": "Tue, 25 Oct 2022 10:30:34 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2cf5255-0ce6-4bc4-9ed5-d4115d04694b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e22bb60-69b8-4f5b-abb4-b8bc8dba5b5e?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28d06322-fbbc-4112-95cd-b4d5c8bb2d45", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134606Z:28d06322-fbbc-4112-95cd-b4d5c8bb2d45", + "x-ms-correlation-request-id": "4b168922-74a1-4e0b-9ff2-dcc0b4ef434a", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103034Z:4b168922-74a1-4e0b-9ff2-dcc0b4ef434a", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2cf5255-0ce6-4bc4-9ed5-d4115d04694b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e22bb60-69b8-4f5b-abb4-b8bc8dba5b5e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -906,7 +908,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:46:35 GMT", + "Date": "Tue, 25 Oct 2022 10:30:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -914,17 +916,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e4fba3c-090c-4b33-941b-59a7802e3a93", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134636Z:2e4fba3c-090c-4b33-941b-59a7802e3a93", + "x-ms-correlation-request-id": "ad325ec8-ab06-4f10-a6b6-32ea483d72f2", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103034Z:ad325ec8-ab06-4f10-a6b6-32ea483d72f2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2cf5255-0ce6-4bc4-9ed5-d4115d04694b", - "name": "b2cf5255-0ce6-4bc4-9ed5-d4115d04694b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e22bb60-69b8-4f5b-abb4-b8bc8dba5b5e", + "name": "3e22bb60-69b8-4f5b-abb4-b8bc8dba5b5e", "status": "Succeeded", - "startTime": "2022-09-19T13:46:06.2273944Z", - "endTime": "2022-09-19T13:46:06.3368647Z", + "startTime": "2022-10-25T10:30:34.3509696Z", + "endTime": "2022-10-25T10:30:34.5074018Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74" @@ -932,13 +934,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2cf5255-0ce6-4bc4-9ed5-d4115d04694b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e22bb60-69b8-4f5b-abb4-b8bc8dba5b5e?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -946,7 +948,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:46:36 GMT", + "Date": "Tue, 25 Oct 2022 10:30:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -954,19 +956,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9057379-919a-422e-83db-5ae621cf0f28", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134636Z:a9057379-919a-422e-83db-5ae621cf0f28", + "x-ms-correlation-request-id": "b5ac3f20-5697-4423-844a-6a8b758dbacd", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103035Z:b5ac3f20-5697-4423-844a-6a8b758dbacd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74", "name": "sdk-py-tests-acc-1-cdf2e74", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A46%3A06.2337347Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T10%3A30%3A34.3490675Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:43:52.1633178Z" + "CreatedOnDate": "2022-10-25T10:29:30.9479432Z" }, "properties": { "encryption": { @@ -977,10 +979,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:43:54.1818252Z", + "createdAt": "2022-10-25T10:29:32.408164Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:43:54.1818252Z" + "lastModifiedAt": "2022-10-25T10:29:32.408164Z" } } }, @@ -991,27 +993,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "253", + "Content-Length": "254", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:46:36 GMT", + "Date": "Tue, 25 Oct 2022 10:30:34 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e1b5ae7-2a74-473e-bcc1-6bdb239c9230", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T134637Z:0e1b5ae7-2a74-473e-bcc1-6bdb239c9230" + "x-ms-correlation-request-id": "537e0a19-2f1f-455e-aead-465f7b1709df", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T103035Z:537e0a19-2f1f-455e-aead-465f7b1709df", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cdf2e74\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_net_app_resource_quota_limits.pyTestNetAppResourceQuotatest_list_resource_quota_limit.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_net_app_resource_quota_limits.pyTestNetAppResourceQuotatest_list_resource_quota_limit.json index f721723386d8..62ea9585e5bd 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_net_app_resource_quota_limits.pyTestNetAppResourceQuotatest_list_resource_quota_limit.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_net_app_resource_quota_limits.pyTestNetAppResourceQuotatest_list_resource_quota_limit.json @@ -1,4 +1,331 @@ { - "Entries": [], + "Entries": [ + { + "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Methods": "GET, OPTIONS", + "Access-Control-Allow-Origin": "*", + "Cache-Control": "max-age=86400, private", + "Content-Length": "1753", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 19:47:25 GMT", + "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", + "Set-Cookie": "[set-cookie;]", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", + "X-XSS-Protection": "0" + }, + "ResponseBody": { + "token_endpoint": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token", + "token_endpoint_auth_methods_supported": [ + "client_secret_post", + "private_key_jwt", + "client_secret_basic" + ], + "jwks_uri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/discovery/v2.0/keys", + "response_modes_supported": [ + "query", + "fragment", + "form_post" + ], + "subject_types_supported": [ + "pairwise" + ], + "id_token_signing_alg_values_supported": [ + "RS256" + ], + "response_types_supported": [ + "code", + "id_token", + "code id_token", + "id_token token" + ], + "scopes_supported": [ + "openid", + "profile", + "email", + "offline_access" + ], + "issuer": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0", + "request_uri_parameter_supported": false, + "userinfo_endpoint": "https://graph.microsoft.com/oidc/userinfo", + "authorization_endpoint": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/authorize", + "device_authorization_endpoint": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/devicecode", + "http_logout_supported": true, + "frontchannel_logout_supported": true, + "end_session_endpoint": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/logout", + "claims_supported": [ + "sub", + "iss", + "cloud_instance_name", + "cloud_instance_host_name", + "cloud_graph_host_name", + "msgraph_host", + "aud", + "exp", + "iat", + "auth_time", + "acr", + "nonce", + "preferred_username", + "name", + "tid", + "ver", + "at_hash", + "c_hash", + "email" + ], + "kerberos_endpoint": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/kerberos", + "tenant_region_scope": "WW", + "cloud_instance_name": "microsoftonline.com", + "cloud_graph_host_name": "graph.windows.net", + "msgraph_host": "graph.microsoft.com", + "rbac_url": "https://pas.windows.net" + } + }, + { + "RequestUri": "https://login.microsoftonline.com/common/discovery/instance?api-version=1.1\u0026authorization_endpoint=https://login.microsoftonline.com/common/oauth2/authorize", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Cookie": "cookie;", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Methods": "GET, OPTIONS", + "Access-Control-Allow-Origin": "*", + "Cache-Control": "max-age=86400, private", + "Content-Length": "945", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 19:47:26 GMT", + "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", + "Set-Cookie": "[set-cookie;]", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", + "X-XSS-Protection": "0" + }, + "ResponseBody": { + "tenant_discovery_endpoint": "https://login.microsoftonline.com/common/.well-known/openid-configuration", + "api-version": "1.1", + "metadata": [ + { + "preferred_network": "login.microsoftonline.com", + "preferred_cache": "login.windows.net", + "aliases": [ + "login.microsoftonline.com", + "login.windows.net", + "login.microsoft.com", + "sts.windows.net" + ] + }, + { + "preferred_network": "login.partner.microsoftonline.cn", + "preferred_cache": "login.partner.microsoftonline.cn", + "aliases": [ + "login.partner.microsoftonline.cn", + "login.chinacloudapi.cn" + ] + }, + { + "preferred_network": "login.microsoftonline.de", + "preferred_cache": "login.microsoftonline.de", + "aliases": [ + "login.microsoftonline.de" + ] + }, + { + "preferred_network": "login.microsoftonline.us", + "preferred_cache": "login.microsoftonline.us", + "aliases": [ + "login.microsoftonline.us", + "login.usgovcloudapi.net" + ] + }, + { + "preferred_network": "login-us.microsoftonline.com", + "preferred_cache": "login-us.microsoftonline.com", + "aliases": [ + "login-us.microsoftonline.com" + ] + } + ] + } + }, + { + "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/oauth2/v2.0/token", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "client-request-id": "a1a354f1-c158-4b43-9e44-aa5d3a40df37", + "Connection": "keep-alive", + "Content-Length": "288", + "Content-Type": "application/x-www-form-urlencoded", + "Cookie": "cookie;", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", + "x-client-cpu": "x64", + "x-client-current-telemetry": "4|730,0|", + "x-client-last-telemetry": "4|0|||", + "x-client-os": "win32", + "x-client-sku": "MSAL.Python", + "x-client-ver": "1.20.0", + "x-ms-lib-capability": "retry-after, h429" + }, + "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-store, no-cache", + "client-request-id": "a1a354f1-c158-4b43-9e44-aa5d3a40df37", + "Content-Length": "114", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 19:47:26 GMT", + "Expires": "-1", + "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", + "Pragma": "no-cache", + "Set-Cookie": "[set-cookie;]", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-clitelem": "1,0,0,,", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", + "X-XSS-Protection": "0" + }, + "ResponseBody": { + "token_type": "Bearer", + "expires_in": 86399, + "ext_expires_in": 86399, + "refresh_in": 43199, + "access_token": "access_token" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/quotaLimits?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 19:47:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2e996566-c179-461c-a074-5fa01cbf6924", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T194729Z:2e996566-c179-461c-a074-5fa01cbf6924", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/quotaLimits/accountsPerSubscription", + "name": "westus2/accountsPerSubscription", + "type": "Microsoft.NetApp/locations/quotaLimits", + "properties": { + "current": 20, + "default": 10 + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/quotaLimits/poolsPerAccount", + "name": "westus2/poolsPerAccount", + "type": "Microsoft.NetApp/locations/quotaLimits", + "properties": { + "current": 40, + "default": 25 + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/quotaLimits/snapshotsPerVolume", + "name": "westus2/snapshotsPerVolume", + "type": "Microsoft.NetApp/locations/quotaLimits", + "properties": { + "current": 255, + "default": 255 + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/quotaLimits/totalBackupEnabledVolumesPerSubscription", + "name": "westus2/totalBackupEnabledVolumesPerSubscription", + "type": "Microsoft.NetApp/locations/quotaLimits", + "properties": { + "current": 5, + "default": 5 + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/quotaLimits/totalCoolAccessVolumesPerSubscription", + "name": "westus2/totalCoolAccessVolumesPerSubscription", + "type": "Microsoft.NetApp/locations/quotaLimits", + "properties": { + "current": 10, + "default": 10 + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/quotaLimits/totalDPVolumesPerSubscription", + "name": "westus2/totalDPVolumesPerSubscription", + "type": "Microsoft.NetApp/locations/quotaLimits", + "properties": { + "current": 10, + "default": 10 + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/quotaLimits/totalTiBsPerSubscription", + "name": "westus2/totalTiBsPerSubscription", + "type": "Microsoft.NetApp/locations/quotaLimits", + "properties": { + "current": 100, + "default": 25 + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/quotaLimits/totalVolumesPerSubscription", + "name": "westus2/totalVolumesPerSubscription", + "type": "Microsoft.NetApp/locations/quotaLimits", + "properties": { + "current": 500, + "default": 500 + } + }, + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/quotaLimits/volumesPerPool", + "name": "westus2/volumesPerPool", + "type": "Microsoft.NetApp/locations/quotaLimits", + "properties": { + "current": 500, + "default": 500 + } + } + ] + } + } + ], "Variables": {} } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_create_delete_pool.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_create_delete_pool.json index 16cff2f0877b..1421e1617ee7 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_create_delete_pool.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_create_delete_pool.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:14:36 GMT", + "Date": "Tue, 25 Oct 2022 12:50:42 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:14:36 GMT", + "Date": "Tue, 25 Oct 2022 12:50:42 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "7598a77a-5e83-4680-b32e-0914926bd613", + "client-request-id": "78b2653d-77a3-4346-8683-215a8b203d8f", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "7598a77a-5e83-4680-b32e-0914926bd613", + "client-request-id": "78b2653d-77a3-4346-8683-215a8b203d8f", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:14:36 GMT", + "Date": "Tue, 25 Oct 2022 12:50:42 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13734.8 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f003691-c985-4e57-956d-3793cd210087?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a7452cb5-0ce9-462c-9cd2-036673f2ae18?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "706", + "Content-Length": "705", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:14:43 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A14%3A43.1041312Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:50:50 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A50%3A49.730194Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b695c254-f793-4d99-90eb-d159914d1fa8", + "x-ms-correlation-request-id": "4b17d02e-6569-429c-afb2-a0a8df6f3107", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141444Z:b695c254-f793-4d99-90eb-d159914d1fa8", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125050Z:4b17d02e-6569-429c-afb2-a0a8df6f3107", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b", "name": "sdk-py-tests-acc-1-18a4278b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A14%3A43.1041312Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A50%3A49.730194Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:14:39.4899935Z" + "CreatedOnDate": "2022-10-25T12:50:46.2150798Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:14:42.1183947Z", + "createdAt": "2022-10-25T12:50:48.7265471Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:14:42.1183947Z" + "lastModifiedAt": "2022-10-25T12:50:48.7265471Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f003691-c985-4e57-956d-3793cd210087?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a7452cb5-0ce9-462c-9cd2-036673f2ae18?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:15:15 GMT", + "Date": "Tue, 25 Oct 2022 12:50:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7d31040-bf7d-42b4-8954-4f5f85b83fb8", + "x-ms-correlation-request-id": "327ebba4-4bdd-41e1-b369-c6e5f133bd8c", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141515Z:e7d31040-bf7d-42b4-8954-4f5f85b83fb8", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125051Z:327ebba4-4bdd-41e1-b369-c6e5f133bd8c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4f003691-c985-4e57-956d-3793cd210087", - "name": "4f003691-c985-4e57-956d-3793cd210087", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a7452cb5-0ce9-462c-9cd2-036673f2ae18", + "name": "a7452cb5-0ce9-462c-9cd2-036673f2ae18", "status": "Succeeded", - "startTime": "2022-09-16T14:14:43.1087717Z", - "endTime": "2022-09-16T14:14:43.1401028Z", + "startTime": "2022-10-25T12:50:49.7323585Z", + "endTime": "2022-10-25T12:50:49.7635932Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:15:15 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A14%3A43.1529012Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:50:51 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A50%3A49.7686329Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc571f52-8cdd-4eb8-9894-9e0059d587d9", + "x-ms-correlation-request-id": "4c969c66-913b-4118-a388-5212da578b76", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141515Z:fc571f52-8cdd-4eb8-9894-9e0059d587d9", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125051Z:4c969c66-913b-4118-a388-5212da578b76", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b", "name": "sdk-py-tests-acc-1-18a4278b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A14%3A43.1529012Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A50%3A49.7686329Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:14:39.4899935Z" + "CreatedOnDate": "2022-10-25T12:50:46.2150798Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:14:42.1183947Z", + "createdAt": "2022-10-25T12:50:48.7265471Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:14:42.1183947Z" + "lastModifiedAt": "2022-10-25T12:50:48.7265471Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -400,30 +400,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b58d6196-9526-4b01-9f3c-55a539a7120d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5ed995-eea7-4c35-830c-53b9c61ed787?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:15:18 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A15%3A17.1873634Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:50:55 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A50%3A54.1846448Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "108b1653-1270-42dd-8740-2291de1e70ec", + "x-ms-correlation-request-id": "25d10d1c-fe3e-4bbd-a6d9-a167820cd041", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141518Z:108b1653-1270-42dd-8740-2291de1e70ec", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125055Z:25d10d1c-fe3e-4bbd-a6d9-a167820cd041", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-18a4278b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A15%3A17.1873634Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A50%3A54.1846448Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:15:15.7971582Z" + "CreatedOnDate": "2022-10-25T12:50:52.0028387Z" }, "properties": { "serviceLevel": "Premium", @@ -437,21 +437,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:15:17.0094046Z", + "createdAt": "2022-10-25T12:50:53.9181021Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:15:17.0094046Z" + "lastModifiedAt": "2022-10-25T12:50:53.9181021Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b58d6196-9526-4b01-9f3c-55a539a7120d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5ed995-eea7-4c35-830c-53b9c61ed787?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -459,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:15:48 GMT", + "Date": "Tue, 25 Oct 2022 12:50:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -467,17 +467,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f31bb0fe-c130-4762-b92e-fb30ef90ccec", + "x-ms-correlation-request-id": "6eecbcf1-5776-461b-b905-8cd4bed13e75", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141548Z:f31bb0fe-c130-4762-b92e-fb30ef90ccec", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125055Z:6eecbcf1-5776-461b-b905-8cd4bed13e75", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b58d6196-9526-4b01-9f3c-55a539a7120d", - "name": "b58d6196-9526-4b01-9f3c-55a539a7120d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5ed995-eea7-4c35-830c-53b9c61ed787", + "name": "0d5ed995-eea7-4c35-830c-53b9c61ed787", "status": "Succeeded", - "startTime": "2022-09-16T14:15:17.1837519Z", - "endTime": "2022-09-16T14:15:18.1681977Z", + "startTime": "2022-10-25T12:50:54.2345914Z", + "endTime": "2022-10-25T12:50:55.0940472Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1" @@ -491,7 +491,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -499,8 +499,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:15:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A15%3A18.1798413Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:50:56 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A50%3A55.0876052Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -508,22 +508,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4339d06-c34d-4f69-92c3-7b47344eb0d6", + "x-ms-correlation-request-id": "bf6a31c7-1fa4-4da5-8563-0b6b520699a7", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141548Z:f4339d06-c34d-4f69-92c3-7b47344eb0d6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125056Z:bf6a31c7-1fa4-4da5-8563-0b6b520699a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-18a4278b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A15%3A18.1798413Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A50%3A55.0876052Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:15:15.7971582Z" + "CreatedOnDate": "2022-10-25T12:50:52.0028387Z" }, "properties": { - "poolId": "57e869dd-a6b8-d998-ce24-34aba5782f32", + "poolId": "adf89e59-bf31-2ceb-865c-115cf308bb08", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -536,10 +536,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:15:17.0094046Z", + "createdAt": "2022-10-25T12:50:53.9181021Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:15:17.0094046Z" + "lastModifiedAt": "2022-10-25T12:50:53.9181021Z" } } }, @@ -550,7 +550,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -558,7 +558,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:15:49 GMT", + "Date": "Tue, 25 Oct 2022 12:50:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -566,9 +566,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5365d07-3c5a-40b2-aa0f-6a0b31eaa38b", + "x-ms-correlation-request-id": "0cc2c43b-f2ca-40ef-8c88-e0f868c55aff", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141549Z:b5365d07-3c5a-40b2-aa0f-6a0b31eaa38b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125056Z:0cc2c43b-f2ca-40ef-8c88-e0f868c55aff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -577,13 +577,13 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-18a4278b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A15%3A18.1798413Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A50%3A55.0876052Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:15:15.7971582Z" + "CreatedOnDate": "2022-10-25T12:50:52.0028387Z" }, "properties": { - "poolId": "57e869dd-a6b8-d998-ce24-34aba5782f32", + "poolId": "adf89e59-bf31-2ceb-865c-115cf308bb08", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -596,10 +596,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:15:17.0094046Z", + "createdAt": "2022-10-25T12:50:53.9181021Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:15:17.0094046Z" + "lastModifiedAt": "2022-10-25T12:50:53.9181021Z" } } ] @@ -613,36 +613,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/450c8246-b073-49fe-baae-c88f6d0ab5dc?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf8f42c8-c864-4be1-9390-870e54cd492a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:15:59 GMT", + "Date": "Tue, 25 Oct 2022 12:51:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/450c8246-b073-49fe-baae-c88f6d0ab5dc?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf8f42c8-c864-4be1-9390-870e54cd492a?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d3e6295-ebe1-4b37-b94a-b8977a472dc3", + "x-ms-correlation-request-id": "f024e2e5-bf65-44d6-96cb-bd98e6891d8b", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141600Z:5d3e6295-ebe1-4b37-b94a-b8977a472dc3", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125107Z:f024e2e5-bf65-44d6-96cb-bd98e6891d8b", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/450c8246-b073-49fe-baae-c88f6d0ab5dc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf8f42c8-c864-4be1-9390-870e54cd492a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -650,7 +650,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:16:29 GMT", + "Date": "Tue, 25 Oct 2022 12:51:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -658,17 +658,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01da51c1-a668-4626-b43e-9c171d58bc36", + "x-ms-correlation-request-id": "dd8c1fde-ec89-4d87-8e3a-10390592a8f9", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141630Z:01da51c1-a668-4626-b43e-9c171d58bc36", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125107Z:dd8c1fde-ec89-4d87-8e3a-10390592a8f9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf8f42c8-c864-4be1-9390-870e54cd492a", + "name": "cf8f42c8-c864-4be1-9390-870e54cd492a", + "status": "Deleting", + "startTime": "2022-10-25T12:51:07.2370025Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf8f42c8-c864-4be1-9390-870e54cd492a?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:51:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7f36f081-8e55-418d-9f54-bf202c5cd304", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125137Z:7f36f081-8e55-418d-9f54-bf202c5cd304", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/450c8246-b073-49fe-baae-c88f6d0ab5dc", - "name": "450c8246-b073-49fe-baae-c88f6d0ab5dc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf8f42c8-c864-4be1-9390-870e54cd492a", + "name": "cf8f42c8-c864-4be1-9390-870e54cd492a", "status": "Succeeded", - "startTime": "2022-09-16T14:15:59.8751446Z", - "endTime": "2022-09-16T14:16:00.1095391Z", + "startTime": "2022-10-25T12:51:07.2370025Z", + "endTime": "2022-10-25T12:51:08.3932876Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1" @@ -676,13 +716,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/450c8246-b073-49fe-baae-c88f6d0ab5dc?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf8f42c8-c864-4be1-9390-870e54cd492a?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -690,7 +730,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:16:29 GMT", + "Date": "Tue, 25 Oct 2022 12:51:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -698,22 +738,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68f61226-b1c6-4d3c-9c51-531ca9dc4747", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141630Z:68f61226-b1c6-4d3c-9c51-531ca9dc4747", + "x-ms-correlation-request-id": "d3937216-d80c-49ff-b7a2-91147e4b6a0e", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125138Z:d3937216-d80c-49ff-b7a2-91147e4b6a0e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-18a4278b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A15%3A59.8805642Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A51%3A07.2366878Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:15:15.7971582Z" + "CreatedOnDate": "2022-10-25T12:50:52.0028387Z" }, "properties": { - "poolId": "57e869dd-a6b8-d998-ce24-34aba5782f32", + "poolId": "adf89e59-bf31-2ceb-865c-115cf308bb08", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b/capacityPools/sdk-py-tests-pool-1", @@ -727,10 +767,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:15:17.0094046Z", + "createdAt": "2022-10-25T12:50:53.9181021Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:15:17.0094046Z" + "lastModifiedAt": "2022-10-25T12:50:53.9181021Z" } } }, @@ -742,20 +782,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:16:40 GMT", + "Date": "Tue, 25 Oct 2022 12:51:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48ed5d71-cf4a-42d5-8721-7ad10f816edb", + "x-ms-correlation-request-id": "260f1e27-eee5-4677-885b-69cb45676158", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141640Z:48ed5d71-cf4a-42d5-8721-7ad10f816edb" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125148Z:260f1e27-eee5-4677-885b-69cb45676158" }, "ResponseBody": null }, @@ -767,20 +807,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:16:50 GMT", + "Date": "Tue, 25 Oct 2022 12:51:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf8e9678-25dc-49af-8736-161d27a1d7fb", + "x-ms-correlation-request-id": "e48ede6a-1a2b-4c40-a419-af9efa4dad7d", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141651Z:bf8e9678-25dc-49af-8736-161d27a1d7fb" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125158Z:e48ede6a-1a2b-4c40-a419-af9efa4dad7d" }, "ResponseBody": null }, @@ -792,20 +832,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:17:00 GMT", + "Date": "Tue, 25 Oct 2022 12:52:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e433dac-d17d-49e7-a46b-97af5933c044", + "x-ms-correlation-request-id": "aa483eea-ff30-4f24-b6f7-03f625be0aba", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141701Z:8e433dac-d17d-49e7-a46b-97af5933c044" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125208Z:aa483eea-ff30-4f24-b6f7-03f625be0aba" }, "ResponseBody": null }, @@ -817,20 +857,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:17:11 GMT", + "Date": "Tue, 25 Oct 2022 12:52:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea5ba9ef-92d6-40d2-a652-c52579009578", + "x-ms-correlation-request-id": "aea4ee5b-c408-4713-9c65-f10651ac4aef", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141711Z:ea5ba9ef-92d6-40d2-a652-c52579009578" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125219Z:aea4ee5b-c408-4713-9c65-f10651ac4aef" }, "ResponseBody": null }, @@ -841,7 +881,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -849,14 +889,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:17:22 GMT", + "Date": "Tue, 25 Oct 2022 12:52:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5552d34-8b1a-4b1c-ae1c-1eaa354bb086", + "x-ms-correlation-request-id": "0af034ab-4144-476b-81b9-47a8e436f6f4", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141722Z:d5552d34-8b1a-4b1c-ae1c-1eaa354bb086" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125229Z:0af034ab-4144-476b-81b9-47a8e436f6f4" }, "ResponseBody": { "error": { @@ -872,7 +912,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -880,7 +920,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:17:23 GMT", + "Date": "Tue, 25 Oct 2022 12:52:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -888,9 +928,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7d10384-6131-4d5f-b74e-a3ec2522f52c", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141723Z:d7d10384-6131-4d5f-b74e-a3ec2522f52c", + "x-ms-correlation-request-id": "732168d5-4054-45f4-b8d1-dc9598ca113d", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125230Z:732168d5-4054-45f4-b8d1-dc9598ca113d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -905,36 +945,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4ea87f9-625f-4d22-951c-eb19b92cc61f?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/999b9473-05b4-412d-8701-32466dfd220e?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:17:23 GMT", + "Date": "Tue, 25 Oct 2022 12:52:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4ea87f9-625f-4d22-951c-eb19b92cc61f?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/999b9473-05b4-412d-8701-32466dfd220e?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75374a0d-87c6-4527-988d-3d387a133498", + "x-ms-correlation-request-id": "84db3a0b-46bc-40e6-b1a5-feb9cf5a7cd4", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141723Z:75374a0d-87c6-4527-988d-3d387a133498", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125231Z:84db3a0b-46bc-40e6-b1a5-feb9cf5a7cd4", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4ea87f9-625f-4d22-951c-eb19b92cc61f?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/999b9473-05b4-412d-8701-32466dfd220e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -942,7 +982,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:17:53 GMT", + "Date": "Tue, 25 Oct 2022 12:52:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -950,17 +990,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a95b9b4-e0f7-4612-a7b9-28f94ad44873", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141754Z:8a95b9b4-e0f7-4612-a7b9-28f94ad44873", + "x-ms-correlation-request-id": "66afae3a-d7a7-410b-af80-ebaa435b89d9", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125231Z:66afae3a-d7a7-410b-af80-ebaa435b89d9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4ea87f9-625f-4d22-951c-eb19b92cc61f", - "name": "f4ea87f9-625f-4d22-951c-eb19b92cc61f", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/999b9473-05b4-412d-8701-32466dfd220e", + "name": "999b9473-05b4-412d-8701-32466dfd220e", "status": "Succeeded", - "startTime": "2022-09-16T14:17:23.8201966Z", - "endTime": "2022-09-16T14:17:23.8671391Z", + "startTime": "2022-10-25T12:52:31.5870502Z", + "endTime": "2022-10-25T12:52:31.665156Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b" @@ -968,13 +1008,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4ea87f9-625f-4d22-951c-eb19b92cc61f?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/999b9473-05b4-412d-8701-32466dfd220e?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -982,7 +1022,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:17:54 GMT", + "Date": "Tue, 25 Oct 2022 12:52:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -990,19 +1030,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3c18f05-8253-4835-b3cd-c700bc5827e7", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141754Z:f3c18f05-8253-4835-b3cd-c700bc5827e7", + "x-ms-correlation-request-id": "c6cc3473-8f03-4974-b0d9-4688f8158f70", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125232Z:c6cc3473-8f03-4974-b0d9-4688f8158f70", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b", "name": "sdk-py-tests-acc-1-18a4278b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A17%3A23.8360461Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A31.5806669Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:14:39.4899935Z" + "CreatedOnDate": "2022-10-25T12:50:46.2150798Z" }, "properties": { "encryption": { @@ -1013,10 +1053,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:14:42.1183947Z", + "createdAt": "2022-10-25T12:50:48.7265471Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:14:42.1183947Z" + "lastModifiedAt": "2022-10-25T12:50:48.7265471Z" } } }, @@ -1027,27 +1067,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:17:54 GMT", + "Date": "Tue, 25 Oct 2022 12:52:32 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "975a414e-937b-4ae1-aa1a-680de4b3e7f5", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141754Z:975a414e-937b-4ae1-aa1a-680de4b3e7f5" + "x-ms-correlation-request-id": "f6000b11-ad93-4ace-8424-1ccb856acd6e", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125232Z:f6000b11-ad93-4ace-8424-1ccb856acd6e", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-18a4278b\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_get_pool_by_name.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_get_pool_by_name.json index fb26c9d515e6..14bacfcdcd7c 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_get_pool_by_name.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_get_pool_by_name.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:24:49 GMT", + "Date": "Tue, 25 Oct 2022 12:55:27 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:24:49 GMT", + "Date": "Tue, 25 Oct 2022 12:55:27 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "0ff53ac2-6c62-4270-ba64-36c332b7948b", + "client-request-id": "06d91fe2-fa1d-42f2-a933-ab4ca5fbfc5c", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "0ff53ac2-6c62-4270-ba64-36c332b7948b", + "client-request-id": "06d91fe2-fa1d-42f2-a933-ab4ca5fbfc5c", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:24:50 GMT", + "Date": "Tue, 25 Oct 2022 12:55:27 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13734.8 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/752b896b-f52f-4242-a0e1-61a034586a1c?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cda4217b-026e-40c8-86e1-9b14a60b09c0?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:24:58 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A24%3A57.2874605Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:55:31 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A30.8703915Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c29c8c67-fbe9-40ac-adf3-6131315e272d", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142458Z:c29c8c67-fbe9-40ac-adf3-6131315e272d", + "x-ms-correlation-request-id": "521c8b36-f132-4d46-a286-c620424b4cbc", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125532Z:521c8b36-f132-4d46-a286-c620424b4cbc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf", "name": "sdk-py-tests-acc-1-c97f26bf", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A24%3A57.2874605Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A30.8703915Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:24:53.8780531Z" + "CreatedOnDate": "2022-10-25T12:55:29.2843163Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:24:56.3521114Z", + "createdAt": "2022-10-25T12:55:30.6343253Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:24:56.3521114Z" + "lastModifiedAt": "2022-10-25T12:55:30.6343253Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/752b896b-f52f-4242-a0e1-61a034586a1c?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cda4217b-026e-40c8-86e1-9b14a60b09c0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:25:28 GMT", + "Date": "Tue, 25 Oct 2022 12:55:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f04f57e2-9089-4eb9-9d89-90be8456bda6", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142528Z:f04f57e2-9089-4eb9-9d89-90be8456bda6", + "x-ms-correlation-request-id": "ee083ab6-94e5-4fd4-b1f3-b52e712f839b", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125532Z:ee083ab6-94e5-4fd4-b1f3-b52e712f839b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/752b896b-f52f-4242-a0e1-61a034586a1c", - "name": "752b896b-f52f-4242-a0e1-61a034586a1c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cda4217b-026e-40c8-86e1-9b14a60b09c0", + "name": "cda4217b-026e-40c8-86e1-9b14a60b09c0", "status": "Succeeded", - "startTime": "2022-09-16T14:24:57.2848468Z", - "endTime": "2022-09-16T14:24:57.3473669Z", + "startTime": "2022-10-25T12:55:30.8733107Z", + "endTime": "2022-10-25T12:55:30.9201681Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:25:28 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A24%3A57.3599039Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:55:32 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A30.9204283Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17459c52-44fe-4c1f-8e34-b9d09caf70d7", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142528Z:17459c52-44fe-4c1f-8e34-b9d09caf70d7", + "x-ms-correlation-request-id": "63045933-64a8-4374-b4c1-74c55e3486c6", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125532Z:63045933-64a8-4374-b4c1-74c55e3486c6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf", "name": "sdk-py-tests-acc-1-c97f26bf", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A24%3A57.3599039Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A30.9204283Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:24:53.8780531Z" + "CreatedOnDate": "2022-10-25T12:55:29.2843163Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:24:56.3521114Z", + "createdAt": "2022-10-25T12:55:30.6343253Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:24:56.3521114Z" + "lastModifiedAt": "2022-10-25T12:55:30.6343253Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -400,30 +400,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/475194e0-f818-4dde-ab64-779e57a2cb0a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba5726af-632e-40ad-8f0e-9f0f71f5ad03?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:25:31 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A25%3A30.7345036Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:55:34 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A34.4853074Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "692920aa-2f33-4002-9b49-8c6ad910d950", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142532Z:692920aa-2f33-4002-9b49-8c6ad910d950", + "x-ms-correlation-request-id": "f1efbbf5-3836-42d0-b28d-3a51a26d2854", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125535Z:f1efbbf5-3836-42d0-b28d-3a51a26d2854", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-c97f26bf/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A25%3A30.7345036Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A34.4853074Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:25:29.3068888Z" + "CreatedOnDate": "2022-10-25T12:55:33.2386801Z" }, "properties": { "serviceLevel": "Premium", @@ -437,21 +437,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:25:30.5246447Z", + "createdAt": "2022-10-25T12:55:34.2153046Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:25:30.5246447Z" + "lastModifiedAt": "2022-10-25T12:55:34.2153046Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/475194e0-f818-4dde-ab64-779e57a2cb0a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba5726af-632e-40ad-8f0e-9f0f71f5ad03?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -459,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:26:01 GMT", + "Date": "Tue, 25 Oct 2022 12:55:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -467,17 +467,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "218e1933-9b3a-47f0-bb25-75fcda1375f2", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142602Z:218e1933-9b3a-47f0-bb25-75fcda1375f2", + "x-ms-correlation-request-id": "cea104e1-b802-4a7f-99a2-a6cd76fa117e", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125535Z:cea104e1-b802-4a7f-99a2-a6cd76fa117e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/475194e0-f818-4dde-ab64-779e57a2cb0a", - "name": "475194e0-f818-4dde-ab64-779e57a2cb0a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba5726af-632e-40ad-8f0e-9f0f71f5ad03", + "name": "ba5726af-632e-40ad-8f0e-9f0f71f5ad03", "status": "Succeeded", - "startTime": "2022-09-16T14:25:30.7410108Z", - "endTime": "2022-09-16T14:25:31.5696361Z", + "startTime": "2022-10-25T12:55:34.4826421Z", + "endTime": "2022-10-25T12:55:35.2639115Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1" @@ -491,7 +491,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -499,8 +499,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:26:02 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A25%3A31.5725029Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:55:35 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A35.2609527Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -508,22 +508,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d11da639-c118-425e-8aec-5e1c8d61dd6f", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142602Z:d11da639-c118-425e-8aec-5e1c8d61dd6f", + "x-ms-correlation-request-id": "48bd89cc-7f9e-40b2-9574-a34521caff2a", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125536Z:48bd89cc-7f9e-40b2-9574-a34521caff2a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-c97f26bf/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A25%3A31.5725029Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A35.2609527Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:25:29.3068888Z" + "CreatedOnDate": "2022-10-25T12:55:33.2386801Z" }, "properties": { - "poolId": "0f96561b-c4ef-9afc-6adf-0dcc31546453", + "poolId": "fdefef8d-95e9-eaf7-3665-07af263ef763", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -536,10 +536,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:25:30.5246447Z", + "createdAt": "2022-10-25T12:55:34.2153046Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:25:30.5246447Z" + "lastModifiedAt": "2022-10-25T12:55:34.2153046Z" } } }, @@ -550,7 +550,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -558,8 +558,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:26:02 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A25%3A31.5725029Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:55:35 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A35.2609527Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -567,22 +567,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f70ab053-3e6a-4485-8e98-8201846d3141", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142603Z:f70ab053-3e6a-4485-8e98-8201846d3141", + "x-ms-correlation-request-id": "9eb63731-3d8a-429c-9001-5941e0941de0", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125536Z:9eb63731-3d8a-429c-9001-5941e0941de0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-c97f26bf/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A25%3A31.5725029Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A35.2609527Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:25:29.3068888Z" + "CreatedOnDate": "2022-10-25T12:55:33.2386801Z" }, "properties": { - "poolId": "0f96561b-c4ef-9afc-6adf-0dcc31546453", + "poolId": "fdefef8d-95e9-eaf7-3665-07af263ef763", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -595,10 +595,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:25:30.5246447Z", + "createdAt": "2022-10-25T12:55:34.2153046Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:25:30.5246447Z" + "lastModifiedAt": "2022-10-25T12:55:34.2153046Z" } } }, @@ -610,36 +610,76 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3277aac7-9d0b-4363-a422-d49109ef56eb?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82d4c3e3-05d4-49f0-a2c7-d5396fef6b5e?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:26:13 GMT", + "Date": "Tue, 25 Oct 2022 12:55:46 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3277aac7-9d0b-4363-a422-d49109ef56eb?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82d4c3e3-05d4-49f0-a2c7-d5396fef6b5e?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c526b492-1a5c-4d64-9324-77d34c5a90b8", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142613Z:c526b492-1a5c-4d64-9324-77d34c5a90b8", + "x-ms-correlation-request-id": "ab3d1d13-0a4d-47cf-a084-249a8aae9d40", + "x-ms-ratelimit-remaining-subscription-deletes": "14982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125547Z:ab3d1d13-0a4d-47cf-a084-249a8aae9d40", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3277aac7-9d0b-4363-a422-d49109ef56eb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82d4c3e3-05d4-49f0-a2c7-d5396fef6b5e?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:55:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "675a85fb-b77d-4e21-899e-69646aaa5cf8", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125547Z:675a85fb-b77d-4e21-899e-69646aaa5cf8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82d4c3e3-05d4-49f0-a2c7-d5396fef6b5e", + "name": "82d4c3e3-05d4-49f0-a2c7-d5396fef6b5e", + "status": "Deleting", + "startTime": "2022-10-25T12:55:47.4097669Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82d4c3e3-05d4-49f0-a2c7-d5396fef6b5e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -647,7 +687,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:26:43 GMT", + "Date": "Tue, 25 Oct 2022 12:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -655,17 +695,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dcff1204-a5c8-463e-b942-5e28edf15030", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142644Z:dcff1204-a5c8-463e-b942-5e28edf15030", + "x-ms-correlation-request-id": "21fb4292-1a83-4338-80ed-f1fe363a2cc2", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125617Z:21fb4292-1a83-4338-80ed-f1fe363a2cc2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3277aac7-9d0b-4363-a422-d49109ef56eb", - "name": "3277aac7-9d0b-4363-a422-d49109ef56eb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82d4c3e3-05d4-49f0-a2c7-d5396fef6b5e", + "name": "82d4c3e3-05d4-49f0-a2c7-d5396fef6b5e", "status": "Succeeded", - "startTime": "2022-09-16T14:26:13.8091754Z", - "endTime": "2022-09-16T14:26:14.7779754Z", + "startTime": "2022-10-25T12:55:47.4097669Z", + "endTime": "2022-10-25T12:55:48.2691327Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1" @@ -673,13 +713,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3277aac7-9d0b-4363-a422-d49109ef56eb?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/82d4c3e3-05d4-49f0-a2c7-d5396fef6b5e?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -687,7 +727,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:26:43 GMT", + "Date": "Tue, 25 Oct 2022 12:56:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -695,22 +735,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30e998e3-d31c-4e65-bb51-452395030441", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142644Z:30e998e3-d31c-4e65-bb51-452395030441", + "x-ms-correlation-request-id": "7179e283-1367-443b-92fd-f0ed942f4f61", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125618Z:7179e283-1367-443b-92fd-f0ed942f4f61", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-c97f26bf/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A26%3A13.8153768Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A47.4070232Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:25:29.3068888Z" + "CreatedOnDate": "2022-10-25T12:55:33.2386801Z" }, "properties": { - "poolId": "0f96561b-c4ef-9afc-6adf-0dcc31546453", + "poolId": "fdefef8d-95e9-eaf7-3665-07af263ef763", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf/capacityPools/sdk-py-tests-pool-1", @@ -724,10 +764,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:25:30.5246447Z", + "createdAt": "2022-10-25T12:55:34.2153046Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:25:30.5246447Z" + "lastModifiedAt": "2022-10-25T12:55:34.2153046Z" } } }, @@ -739,20 +779,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:26:54 GMT", + "Date": "Tue, 25 Oct 2022 12:56:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4eed0ff-8b33-4f15-b85b-82d79b722135", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142654Z:a4eed0ff-8b33-4f15-b85b-82d79b722135" + "x-ms-correlation-request-id": "e29efa12-1ba5-4136-8fe7-6ee83069b5cb", + "x-ms-ratelimit-remaining-subscription-deletes": "14981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125628Z:e29efa12-1ba5-4136-8fe7-6ee83069b5cb" }, "ResponseBody": null }, @@ -764,20 +804,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:27:04 GMT", + "Date": "Tue, 25 Oct 2022 12:56:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e294ac22-aab7-4067-881f-ff573ac0d4e5", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142705Z:e294ac22-aab7-4067-881f-ff573ac0d4e5" + "x-ms-correlation-request-id": "bad04ff0-b25e-413a-b639-5379c18006c8", + "x-ms-ratelimit-remaining-subscription-deletes": "14980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125638Z:bad04ff0-b25e-413a-b639-5379c18006c8" }, "ResponseBody": null }, @@ -789,20 +829,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:27:15 GMT", + "Date": "Tue, 25 Oct 2022 12:56:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f173267a-ccb1-40fc-bbf6-7dbff521b653", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142715Z:f173267a-ccb1-40fc-bbf6-7dbff521b653" + "x-ms-correlation-request-id": "6c315467-63e2-4342-bfbd-efcfe8510428", + "x-ms-ratelimit-remaining-subscription-deletes": "14979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125649Z:6c315467-63e2-4342-bfbd-efcfe8510428" }, "ResponseBody": null }, @@ -814,20 +854,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:27:25 GMT", + "Date": "Tue, 25 Oct 2022 12:56:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "029e4a69-3d2e-4adf-a6ef-baea4c9f814c", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142725Z:029e4a69-3d2e-4adf-a6ef-baea4c9f814c" + "x-ms-correlation-request-id": "2ec32c59-d08c-48aa-89d0-28f5b6a60628", + "x-ms-ratelimit-remaining-subscription-deletes": "14978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125659Z:2ec32c59-d08c-48aa-89d0-28f5b6a60628" }, "ResponseBody": null }, @@ -838,7 +878,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -846,14 +886,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:27:35 GMT", + "Date": "Tue, 25 Oct 2022 12:57:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2121c71f-ead0-4e36-b5c1-2e4bb1c416cd", + "x-ms-correlation-request-id": "325fc977-171a-42ac-bd26-fa0c74a9c86d", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142735Z:2121c71f-ead0-4e36-b5c1-2e4bb1c416cd" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125709Z:325fc977-171a-42ac-bd26-fa0c74a9c86d" }, "ResponseBody": { "error": { @@ -870,36 +910,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/731235b1-8c71-45df-9274-ea58adcbe114?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25eeb061-43b2-4268-b9b4-51fc9ee60481?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:27:36 GMT", + "Date": "Tue, 25 Oct 2022 12:57:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/731235b1-8c71-45df-9274-ea58adcbe114?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25eeb061-43b2-4268-b9b4-51fc9ee60481?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77ae8fb6-d867-4673-ace8-db10bba997ae", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142737Z:77ae8fb6-d867-4673-ace8-db10bba997ae", + "x-ms-correlation-request-id": "bfcdf91b-5dc0-43a4-8675-9d48cd6c7ebe", + "x-ms-ratelimit-remaining-subscription-deletes": "14977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125711Z:bfcdf91b-5dc0-43a4-8675-9d48cd6c7ebe", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/731235b1-8c71-45df-9274-ea58adcbe114?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25eeb061-43b2-4268-b9b4-51fc9ee60481?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -907,7 +947,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:28:06 GMT", + "Date": "Tue, 25 Oct 2022 12:57:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -915,17 +955,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3676868c-0b49-41fe-b077-5a2a8af3b01c", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142807Z:3676868c-0b49-41fe-b077-5a2a8af3b01c", + "x-ms-correlation-request-id": "36c6f704-9cbd-44c4-bbe4-209246dbae74", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125711Z:36c6f704-9cbd-44c4-bbe4-209246dbae74", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/731235b1-8c71-45df-9274-ea58adcbe114", - "name": "731235b1-8c71-45df-9274-ea58adcbe114", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25eeb061-43b2-4268-b9b4-51fc9ee60481", + "name": "25eeb061-43b2-4268-b9b4-51fc9ee60481", "status": "Succeeded", - "startTime": "2022-09-16T14:27:37.1949841Z", - "endTime": "2022-09-16T14:27:37.2418235Z", + "startTime": "2022-10-25T12:57:10.9901032Z", + "endTime": "2022-10-25T12:57:11.068286Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf" @@ -933,13 +973,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/731235b1-8c71-45df-9274-ea58adcbe114?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25eeb061-43b2-4268-b9b4-51fc9ee60481?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -947,7 +987,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:28:07 GMT", + "Date": "Tue, 25 Oct 2022 12:57:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -955,19 +995,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "574c2df3-3592-43fc-a083-bfe38f672c08", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142807Z:574c2df3-3592-43fc-a083-bfe38f672c08", + "x-ms-correlation-request-id": "2ae69b49-e7e8-407e-aa9d-3ce0cbb3c9f6", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125711Z:2ae69b49-e7e8-407e-aa9d-3ce0cbb3c9f6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf", "name": "sdk-py-tests-acc-1-c97f26bf", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A27%3A37.1999443Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A10.9823316Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:24:53.8780531Z" + "CreatedOnDate": "2022-10-25T12:55:29.2843163Z" }, "properties": { "encryption": { @@ -978,10 +1018,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:24:56.3521114Z", + "createdAt": "2022-10-25T12:55:30.6343253Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:24:56.3521114Z" + "lastModifiedAt": "2022-10-25T12:55:30.6343253Z" } } }, @@ -992,27 +1032,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:28:07 GMT", + "Date": "Tue, 25 Oct 2022 12:57:11 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6eecb8ac-0b7c-42ce-9298-d7a1ca8c7062", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142808Z:6eecb8ac-0b7c-42ce-9298-d7a1ca8c7062" + "x-ms-correlation-request-id": "a4c5a5c3-0bae-450b-bb97-59b89e8288f8", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125712Z:a4c5a5c3-0bae-450b-bb97-59b89e8288f8", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c97f26bf\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_list_pools.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_list_pools.json index d435b34ddfac..66a76e7af5df 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_list_pools.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_list_pools.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:18:54 GMT", + "Date": "Tue, 25 Oct 2022 12:52:33 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13734.8 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:18:54 GMT", + "Date": "Tue, 25 Oct 2022 12:52:33 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "008122bb-68a5-49df-8a19-2c6bd2018904", + "client-request-id": "1989c99b-3a13-4635-a475-c0f007a040ab", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "008122bb-68a5-49df-8a19-2c6bd2018904", + "client-request-id": "1989c99b-3a13-4635-a475-c0f007a040ab", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:18:54 GMT", + "Date": "Tue, 25 Oct 2022 12:52:33 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b4a154c-8748-44d2-aa7c-c279a5635076?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e6d53e0-b13a-49a6-a45d-4b48c9b7be41?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:19:02 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A19%3A01.5545745Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:52:37 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A36.8866869Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc144ba9-d827-41dc-a81e-ad465cbde15a", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141903Z:cc144ba9-d827-41dc-a81e-ad465cbde15a", + "x-ms-correlation-request-id": "89f69200-2ad4-4781-979a-74a752c87e13", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125238Z:89f69200-2ad4-4781-979a-74a752c87e13", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474", "name": "sdk-py-tests-acc-1-e3f62474", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A19%3A01.5545745Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A36.8866869Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:18:58.5678926Z" + "CreatedOnDate": "2022-10-25T12:52:34.6537246Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:19:00.5892033Z", + "createdAt": "2022-10-25T12:52:36.6764197Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:19:00.5892033Z" + "lastModifiedAt": "2022-10-25T12:52:36.6764197Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b4a154c-8748-44d2-aa7c-c279a5635076?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e6d53e0-b13a-49a6-a45d-4b48c9b7be41?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:19:33 GMT", + "Date": "Tue, 25 Oct 2022 12:52:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c70e8a6-b813-4209-bb5c-7fb9f8f05e5f", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141933Z:9c70e8a6-b813-4209-bb5c-7fb9f8f05e5f", + "x-ms-correlation-request-id": "ae8112a9-e1cb-4079-860e-c566183615b3", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125238Z:ae8112a9-e1cb-4079-860e-c566183615b3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b4a154c-8748-44d2-aa7c-c279a5635076", - "name": "2b4a154c-8748-44d2-aa7c-c279a5635076", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e6d53e0-b13a-49a6-a45d-4b48c9b7be41", + "name": "6e6d53e0-b13a-49a6-a45d-4b48c9b7be41", "status": "Succeeded", - "startTime": "2022-09-16T14:19:01.5531278Z", - "endTime": "2022-09-16T14:19:01.5843768Z", + "startTime": "2022-10-25T12:52:36.8952404Z", + "endTime": "2022-10-25T12:52:36.9108203Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:19:33 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A19%3A01.5966924Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:52:38 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A36.9116299Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ae90863-edbf-4d2f-b43c-0b312d6748f4", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141933Z:0ae90863-edbf-4d2f-b43c-0b312d6748f4", + "x-ms-correlation-request-id": "671037ef-2105-4474-8edf-f2a3cc67b6f1", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125238Z:671037ef-2105-4474-8edf-f2a3cc67b6f1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474", "name": "sdk-py-tests-acc-1-e3f62474", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A19%3A01.5966924Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A36.9116299Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:18:58.5678926Z" + "CreatedOnDate": "2022-10-25T12:52:34.6537246Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:19:00.5892033Z", + "createdAt": "2022-10-25T12:52:36.6764197Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:19:00.5892033Z" + "lastModifiedAt": "2022-10-25T12:52:36.6764197Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -400,30 +400,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bc05ec3-b975-4b9b-a62a-e0bea6bb0640?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75977bd2-42ae-4c24-805f-2be5f123857c?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:19:36 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A19%3A35.5500267Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:52:41 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A40.5745605Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfc7b2b8-cd8a-472a-9c5d-e98450ffc3af", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220916T141936Z:cfc7b2b8-cd8a-472a-9c5d-e98450ffc3af", + "x-ms-correlation-request-id": "3a70fb40-201b-473d-a226-f64ef6c964e5", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125241Z:3a70fb40-201b-473d-a226-f64ef6c964e5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-e3f62474/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A19%3A35.5500267Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A40.5745605Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:19:34.1345688Z" + "CreatedOnDate": "2022-10-25T12:52:39.1357259Z" }, "properties": { "serviceLevel": "Premium", @@ -437,21 +437,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:19:35.3553155Z", + "createdAt": "2022-10-25T12:52:40.2926855Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:19:35.3553155Z" + "lastModifiedAt": "2022-10-25T12:52:40.2926855Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bc05ec3-b975-4b9b-a62a-e0bea6bb0640?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75977bd2-42ae-4c24-805f-2be5f123857c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -459,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:20:06 GMT", + "Date": "Tue, 25 Oct 2022 12:52:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -467,17 +467,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4b7327c-6a4b-4d67-8115-42906d6f079c", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142007Z:a4b7327c-6a4b-4d67-8115-42906d6f079c", + "x-ms-correlation-request-id": "f9fa067b-f681-499e-b4bb-1e2af37f6825", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125241Z:f9fa067b-f681-499e-b4bb-1e2af37f6825", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3bc05ec3-b975-4b9b-a62a-e0bea6bb0640", - "name": "3bc05ec3-b975-4b9b-a62a-e0bea6bb0640", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75977bd2-42ae-4c24-805f-2be5f123857c", + "name": "75977bd2-42ae-4c24-805f-2be5f123857c", "status": "Succeeded", - "startTime": "2022-09-16T14:19:35.548437Z", - "endTime": "2022-09-16T14:19:36.3453378Z", + "startTime": "2022-10-25T12:52:40.5749491Z", + "endTime": "2022-10-25T12:52:41.4525778Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1" @@ -491,7 +491,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -499,8 +499,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:20:06 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A19%3A36.359034Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:52:41 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A41.4490451Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -508,22 +508,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdad95a1-fef6-4aaf-bb69-c798f7db00c1", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142007Z:bdad95a1-fef6-4aaf-bb69-c798f7db00c1", + "x-ms-correlation-request-id": "11482f5f-7e53-4e85-9598-d474234e9a5b", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125242Z:11482f5f-7e53-4e85-9598-d474234e9a5b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-e3f62474/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A19%3A36.359034Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A41.4490451Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:19:34.1345688Z" + "CreatedOnDate": "2022-10-25T12:52:39.1357259Z" }, "properties": { - "poolId": "059ff1ef-b821-8d96-450d-6c341d08a0c3", + "poolId": "34187b92-ca60-0f66-0d18-39802de65f75", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -536,10 +536,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:19:35.3553155Z", + "createdAt": "2022-10-25T12:52:40.2926855Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:19:35.3553155Z" + "lastModifiedAt": "2022-10-25T12:52:40.2926855Z" } } }, @@ -552,7 +552,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -565,30 +565,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cfb4a34-a238-47e4-bfb3-995796c9374a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24f95623-a7f8-4959-a42b-53da07a938c0?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:20:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A20%3A08.9798046Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:52:44 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A43.9066388Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61d2f2cd-8e4d-4388-adc5-cd88058cbcb3", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142010Z:61d2f2cd-8e4d-4388-adc5-cd88058cbcb3", + "x-ms-correlation-request-id": "cd7f4b33-11a9-4d3b-b7c4-fbe1258edf8b", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125245Z:cd7f4b33-11a9-4d3b-b7c4-fbe1258edf8b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2", "name": "sdk-py-tests-acc-1-e3f62474/sdk-py-tests-pool-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A20%3A08.9798046Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A43.9066388Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:20:07.7456306Z" + "CreatedOnDate": "2022-10-25T12:52:42.5100516Z" }, "properties": { "serviceLevel": "Premium", @@ -602,21 +602,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:20:08.7776104Z", + "createdAt": "2022-10-25T12:52:43.6394727Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:20:08.7776104Z" + "lastModifiedAt": "2022-10-25T12:52:43.6394727Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cfb4a34-a238-47e4-bfb3-995796c9374a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24f95623-a7f8-4959-a42b-53da07a938c0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -624,7 +624,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:20:39 GMT", + "Date": "Tue, 25 Oct 2022 12:52:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -632,17 +632,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a6b4e74-7b7a-47b5-ab0e-fcc8d3d07835", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142040Z:0a6b4e74-7b7a-47b5-ab0e-fcc8d3d07835", + "x-ms-correlation-request-id": "b1712d32-ddf3-4d7a-abbb-5bbb8390e4f0", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125245Z:b1712d32-ddf3-4d7a-abbb-5bbb8390e4f0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cfb4a34-a238-47e4-bfb3-995796c9374a", - "name": "4cfb4a34-a238-47e4-bfb3-995796c9374a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24f95623-a7f8-4959-a42b-53da07a938c0", + "name": "24f95623-a7f8-4959-a42b-53da07a938c0", "status": "Succeeded", - "startTime": "2022-09-16T14:20:08.9757294Z", - "endTime": "2022-09-16T14:20:09.8665253Z", + "startTime": "2022-10-25T12:52:43.9461968Z", + "endTime": "2022-10-25T12:52:44.1024264Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2" @@ -656,7 +656,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -664,8 +664,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:20:40 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A20%3A09.8701566Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:52:45 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A44.0895411Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -673,22 +673,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c04150b-bb62-4dfe-ae36-f96a07edab28", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142041Z:8c04150b-bb62-4dfe-ae36-f96a07edab28", + "x-ms-correlation-request-id": "dc91d5f1-28cc-4d90-ba69-546976d11c0e", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125246Z:dc91d5f1-28cc-4d90-ba69-546976d11c0e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2", "name": "sdk-py-tests-acc-1-e3f62474/sdk-py-tests-pool-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A20%3A09.8701566Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A44.0895411Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:20:07.7456306Z" + "CreatedOnDate": "2022-10-25T12:52:42.5100516Z" }, "properties": { - "poolId": "91117dea-2a75-4493-164d-2501fb22590f", + "poolId": "25fd6672-1b81-daf9-9d25-502d0d99c7bd", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -701,10 +701,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:20:08.7776104Z", + "createdAt": "2022-10-25T12:52:43.6394727Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:20:08.7776104Z" + "lastModifiedAt": "2022-10-25T12:52:43.6394727Z" } } }, @@ -715,7 +715,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -723,7 +723,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:20:40 GMT", + "Date": "Tue, 25 Oct 2022 12:52:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -731,9 +731,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f993fbd3-ed87-4c6d-9765-38e3d23f91d8", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142041Z:f993fbd3-ed87-4c6d-9765-38e3d23f91d8", + "x-ms-correlation-request-id": "dfc322d7-1a93-4938-9c64-5af0c14c7283", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125246Z:dfc322d7-1a93-4938-9c64-5af0c14c7283", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -742,13 +742,13 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-e3f62474/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A19%3A36.359034Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A41.4490451Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:19:34.1345688Z" + "CreatedOnDate": "2022-10-25T12:52:39.1357259Z" }, "properties": { - "poolId": "059ff1ef-b821-8d96-450d-6c341d08a0c3", + "poolId": "34187b92-ca60-0f66-0d18-39802de65f75", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -761,23 +761,23 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:19:35.3553155Z", + "createdAt": "2022-10-25T12:52:40.2926855Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:19:35.3553155Z" + "lastModifiedAt": "2022-10-25T12:52:40.2926855Z" } }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2", "name": "sdk-py-tests-acc-1-e3f62474/sdk-py-tests-pool-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A20%3A09.8701566Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A44.0895411Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:20:07.7456306Z" + "CreatedOnDate": "2022-10-25T12:52:42.5100516Z" }, "properties": { - "poolId": "91117dea-2a75-4493-164d-2501fb22590f", + "poolId": "25fd6672-1b81-daf9-9d25-502d0d99c7bd", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -790,10 +790,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:20:08.7776104Z", + "createdAt": "2022-10-25T12:52:43.6394727Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:20:08.7776104Z" + "lastModifiedAt": "2022-10-25T12:52:43.6394727Z" } } ] @@ -807,36 +807,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf3b67ed-ae94-4fce-afe0-e021605ed741?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21018a50-16b4-4c80-b9ae-c3b11a2bbbda?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:20:52 GMT", + "Date": "Tue, 25 Oct 2022 12:52:56 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf3b67ed-ae94-4fce-afe0-e021605ed741?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21018a50-16b4-4c80-b9ae-c3b11a2bbbda?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1236a9a7-b9e5-4820-81fd-d99219a5d5f5", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142052Z:1236a9a7-b9e5-4820-81fd-d99219a5d5f5", + "x-ms-correlation-request-id": "4ae11c0a-edfc-4ba9-9f5c-8ca1f7d033fe", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125257Z:4ae11c0a-edfc-4ba9-9f5c-8ca1f7d033fe", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf3b67ed-ae94-4fce-afe0-e021605ed741?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21018a50-16b4-4c80-b9ae-c3b11a2bbbda?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -844,7 +844,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:21:21 GMT", + "Date": "Tue, 25 Oct 2022 12:52:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -852,17 +852,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3af7b50-996e-4c5f-8a6a-fabea72dca6f", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142122Z:e3af7b50-996e-4c5f-8a6a-fabea72dca6f", + "x-ms-correlation-request-id": "09540758-2b29-4be9-8257-dca1a1fb9dfc", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125257Z:09540758-2b29-4be9-8257-dca1a1fb9dfc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf3b67ed-ae94-4fce-afe0-e021605ed741", - "name": "cf3b67ed-ae94-4fce-afe0-e021605ed741", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21018a50-16b4-4c80-b9ae-c3b11a2bbbda", + "name": "21018a50-16b4-4c80-b9ae-c3b11a2bbbda", "status": "Succeeded", - "startTime": "2022-09-16T14:20:51.9981991Z", - "endTime": "2022-09-16T14:20:52.8890109Z", + "startTime": "2022-10-25T12:52:57.0573435Z", + "endTime": "2022-10-25T12:52:57.369844Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1" @@ -870,13 +870,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf3b67ed-ae94-4fce-afe0-e021605ed741?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21018a50-16b4-4c80-b9ae-c3b11a2bbbda?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -884,7 +884,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:21:22 GMT", + "Date": "Tue, 25 Oct 2022 12:52:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -892,22 +892,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea02cee0-d5dd-4fc3-b2dc-f7dc7ecb2807", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142122Z:ea02cee0-d5dd-4fc3-b2dc-f7dc7ecb2807", + "x-ms-correlation-request-id": "0b32da3e-1d12-493e-9dbd-7560956b7aeb", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125257Z:0b32da3e-1d12-493e-9dbd-7560956b7aeb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-e3f62474/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A20%3A52.002006Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A52%3A57.0461594Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:19:34.1345688Z" + "CreatedOnDate": "2022-10-25T12:52:39.1357259Z" }, "properties": { - "poolId": "059ff1ef-b821-8d96-450d-6c341d08a0c3", + "poolId": "34187b92-ca60-0f66-0d18-39802de65f75", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-1", @@ -921,10 +921,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:19:35.3553155Z", + "createdAt": "2022-10-25T12:52:40.2926855Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:19:35.3553155Z" + "lastModifiedAt": "2022-10-25T12:52:40.2926855Z" } } }, @@ -936,20 +936,22 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:21:32 GMT", + "Date": "Tue, 25 Oct 2022 12:53:09 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f18fae1c-a7db-4898-972a-c56045fb2a3a", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142132Z:f18fae1c-a7db-4898-972a-c56045fb2a3a" + "x-ms-correlation-request-id": "680067f4-d688-498f-a367-9d22c3e4e25c", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125310Z:680067f4-d688-498f-a367-9d22c3e4e25c", + "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, @@ -961,20 +963,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:21:42 GMT", + "Date": "Tue, 25 Oct 2022 12:53:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "220734c4-4337-448c-bdb1-977fc302ac34", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142143Z:220734c4-4337-448c-bdb1-977fc302ac34" + "x-ms-correlation-request-id": "98c385e5-304f-4359-a35a-0ea7598e69a8", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125320Z:98c385e5-304f-4359-a35a-0ea7598e69a8" }, "ResponseBody": null }, @@ -986,20 +988,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:21:52 GMT", + "Date": "Tue, 25 Oct 2022 12:53:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9225c8db-981b-43ac-a942-75163f614499", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142153Z:9225c8db-981b-43ac-a942-75163f614499" + "x-ms-correlation-request-id": "00776a00-bbe5-4734-8568-2b5c28ca3cad", + "x-ms-ratelimit-remaining-subscription-deletes": "14990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125330Z:00776a00-bbe5-4734-8568-2b5c28ca3cad" }, "ResponseBody": null }, @@ -1011,20 +1013,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:22:03 GMT", + "Date": "Tue, 25 Oct 2022 12:53:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "485c355a-af70-46b4-a3ab-cf1633354270", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142203Z:485c355a-af70-46b4-a3ab-cf1633354270" + "x-ms-correlation-request-id": "96af3f79-655f-4675-a3e1-abc3d82f8f26", + "x-ms-ratelimit-remaining-subscription-deletes": "14989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125341Z:96af3f79-655f-4675-a3e1-abc3d82f8f26" }, "ResponseBody": null }, @@ -1035,7 +1037,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -1043,14 +1045,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:22:13 GMT", + "Date": "Tue, 25 Oct 2022 12:53:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "178f4800-6b77-4b95-be32-bb0be78cfaa6", + "x-ms-correlation-request-id": "f9c7b1a6-b6d4-44e2-bb8e-f53ee3ca90f6", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142214Z:178f4800-6b77-4b95-be32-bb0be78cfaa6" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125351Z:f9c7b1a6-b6d4-44e2-bb8e-f53ee3ca90f6" }, "ResponseBody": { "error": { @@ -1067,36 +1069,76 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5ec50afa-9ef9-4241-b060-67d0ae139853?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/668b9821-6c3f-40ea-9dd6-74a98a9e7a15?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:22:25 GMT", + "Date": "Tue, 25 Oct 2022 12:54:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5ec50afa-9ef9-4241-b060-67d0ae139853?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/668b9821-6c3f-40ea-9dd6-74a98a9e7a15?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77e75ca8-1e5e-42fa-a7a1-52f600038992", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142225Z:77e75ca8-1e5e-42fa-a7a1-52f600038992", + "x-ms-correlation-request-id": "ea9d5f17-af6f-49e6-9cfb-daa913af44a0", + "x-ms-ratelimit-remaining-subscription-deletes": "14988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125402Z:ea9d5f17-af6f-49e6-9cfb-daa913af44a0", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5ec50afa-9ef9-4241-b060-67d0ae139853?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/668b9821-6c3f-40ea-9dd6-74a98a9e7a15?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:54:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "91480b21-697e-4f5f-b1ef-ccf984cb6dd7", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125403Z:91480b21-697e-4f5f-b1ef-ccf984cb6dd7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/668b9821-6c3f-40ea-9dd6-74a98a9e7a15", + "name": "668b9821-6c3f-40ea-9dd6-74a98a9e7a15", + "status": "Deleting", + "startTime": "2022-10-25T12:54:02.7231677Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/668b9821-6c3f-40ea-9dd6-74a98a9e7a15?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1104,7 +1146,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:22:55 GMT", + "Date": "Tue, 25 Oct 2022 12:54:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1112,17 +1154,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "325583a5-8134-4591-8748-57e867b10904", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142255Z:325583a5-8134-4591-8748-57e867b10904", + "x-ms-correlation-request-id": "c1786f10-2413-4fec-93f5-66ff6cd39d04", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125433Z:c1786f10-2413-4fec-93f5-66ff6cd39d04", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5ec50afa-9ef9-4241-b060-67d0ae139853", - "name": "5ec50afa-9ef9-4241-b060-67d0ae139853", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/668b9821-6c3f-40ea-9dd6-74a98a9e7a15", + "name": "668b9821-6c3f-40ea-9dd6-74a98a9e7a15", "status": "Succeeded", - "startTime": "2022-09-16T14:22:25.4860244Z", - "endTime": "2022-09-16T14:22:26.5641512Z", + "startTime": "2022-10-25T12:54:02.7231677Z", + "endTime": "2022-10-25T12:54:03.5983669Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2" @@ -1130,13 +1172,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5ec50afa-9ef9-4241-b060-67d0ae139853?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/668b9821-6c3f-40ea-9dd6-74a98a9e7a15?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1144,7 +1186,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:22:55 GMT", + "Date": "Tue, 25 Oct 2022 12:54:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1152,22 +1194,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13ad1bbf-8227-4892-b037-26f102ba387c", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142256Z:13ad1bbf-8227-4892-b037-26f102ba387c", + "x-ms-correlation-request-id": "8e4ee22d-f39b-41f3-add8-ecfee9f9ff5f", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125433Z:8e4ee22d-f39b-41f3-add8-ecfee9f9ff5f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2", "name": "sdk-py-tests-acc-1-e3f62474/sdk-py-tests-pool-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A22%3A25.4990744Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A54%3A02.7267257Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:20:07.7456306Z" + "CreatedOnDate": "2022-10-25T12:52:42.5100516Z" }, "properties": { - "poolId": "91117dea-2a75-4493-164d-2501fb22590f", + "poolId": "25fd6672-1b81-daf9-9d25-502d0d99c7bd", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474/capacityPools/sdk-py-tests-pool-2", @@ -1181,10 +1223,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:20:08.7776104Z", + "createdAt": "2022-10-25T12:52:43.6394727Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:20:08.7776104Z" + "lastModifiedAt": "2022-10-25T12:52:43.6394727Z" } } }, @@ -1196,20 +1238,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:23:06 GMT", + "Date": "Tue, 25 Oct 2022 12:54:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62d37e13-eefa-4574-bfad-1da6e123e9e7", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142306Z:62d37e13-eefa-4574-bfad-1da6e123e9e7" + "x-ms-correlation-request-id": "80c2d079-0ac6-462d-87ea-0ce0dc60e84f", + "x-ms-ratelimit-remaining-subscription-deletes": "14987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125443Z:80c2d079-0ac6-462d-87ea-0ce0dc60e84f" }, "ResponseBody": null }, @@ -1221,20 +1263,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:23:16 GMT", + "Date": "Tue, 25 Oct 2022 12:54:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4dff6cb6-d37c-4ecc-ab75-9ec126a0fed4", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142316Z:4dff6cb6-d37c-4ecc-ab75-9ec126a0fed4" + "x-ms-correlation-request-id": "7ad01442-5fbe-46e1-8920-89a97f17c616", + "x-ms-ratelimit-remaining-subscription-deletes": "14986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125454Z:7ad01442-5fbe-46e1-8920-89a97f17c616" }, "ResponseBody": null }, @@ -1246,20 +1288,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:23:26 GMT", + "Date": "Tue, 25 Oct 2022 12:55:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7cd6794-9b3b-4290-8fff-6c727a9305c0", - "x-ms-ratelimit-remaining-subscription-deletes": "14991", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142327Z:d7cd6794-9b3b-4290-8fff-6c727a9305c0" + "x-ms-correlation-request-id": "af7e5630-a724-4dfb-8f54-947742b5263a", + "x-ms-ratelimit-remaining-subscription-deletes": "14985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125504Z:af7e5630-a724-4dfb-8f54-947742b5263a" }, "ResponseBody": null }, @@ -1271,20 +1313,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:23:36 GMT", + "Date": "Tue, 25 Oct 2022 12:55:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dab6ff62-cc96-4e4c-afa7-c7124bb3afc4", - "x-ms-ratelimit-remaining-subscription-deletes": "14990", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142337Z:dab6ff62-cc96-4e4c-afa7-c7124bb3afc4" + "x-ms-correlation-request-id": "5020075c-ce75-41b2-9f1f-144eaf53c954", + "x-ms-ratelimit-remaining-subscription-deletes": "14984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125514Z:5020075c-ce75-41b2-9f1f-144eaf53c954" }, "ResponseBody": null }, @@ -1295,7 +1337,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -1303,14 +1345,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:23:47 GMT", + "Date": "Tue, 25 Oct 2022 12:55:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10d7f449-85fb-44aa-8316-b5080d167e27", + "x-ms-correlation-request-id": "4ed82fe4-c1d8-4bbe-8817-5ea7b10c3348", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142347Z:10d7f449-85fb-44aa-8316-b5080d167e27" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125524Z:4ed82fe4-c1d8-4bbe-8817-5ea7b10c3348" }, "ResponseBody": { "error": { @@ -1327,36 +1369,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3b86d949-9a4e-405c-9b71-cd84f132d225?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4806d0e2-bd2a-438d-9fc0-24a99138a27f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:23:48 GMT", + "Date": "Tue, 25 Oct 2022 12:55:25 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3b86d949-9a4e-405c-9b71-cd84f132d225?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4806d0e2-bd2a-438d-9fc0-24a99138a27f?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1d4e87d-7b30-4fc4-b502-03dbebcdda7d", - "x-ms-ratelimit-remaining-subscription-deletes": "14989", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142348Z:e1d4e87d-7b30-4fc4-b502-03dbebcdda7d", + "x-ms-correlation-request-id": "759cc881-9709-4c9e-8f9c-debb7aedd9f8", + "x-ms-ratelimit-remaining-subscription-deletes": "14983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125526Z:759cc881-9709-4c9e-8f9c-debb7aedd9f8", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3b86d949-9a4e-405c-9b71-cd84f132d225?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4806d0e2-bd2a-438d-9fc0-24a99138a27f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1364,7 +1406,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:24:18 GMT", + "Date": "Tue, 25 Oct 2022 12:55:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1372,17 +1414,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d932731-b876-4457-93bd-675ea698eff6", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142419Z:0d932731-b876-4457-93bd-675ea698eff6", + "x-ms-correlation-request-id": "9247456f-614c-4e5d-83d4-ad74e1719537", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125526Z:9247456f-614c-4e5d-83d4-ad74e1719537", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3b86d949-9a4e-405c-9b71-cd84f132d225", - "name": "3b86d949-9a4e-405c-9b71-cd84f132d225", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4806d0e2-bd2a-438d-9fc0-24a99138a27f", + "name": "4806d0e2-bd2a-438d-9fc0-24a99138a27f", "status": "Succeeded", - "startTime": "2022-09-16T14:23:48.7881648Z", - "endTime": "2022-09-16T14:23:48.8194139Z", + "startTime": "2022-10-25T12:55:26.4636259Z", + "endTime": "2022-10-25T12:55:26.5105547Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474" @@ -1390,13 +1432,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3b86d949-9a4e-405c-9b71-cd84f132d225?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4806d0e2-bd2a-438d-9fc0-24a99138a27f?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1404,7 +1446,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:24:19 GMT", + "Date": "Tue, 25 Oct 2022 12:55:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1412,19 +1454,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a9e3f0e-c266-49e7-a4e4-101f1fd8646b", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142419Z:1a9e3f0e-c266-49e7-a4e4-101f1fd8646b", + "x-ms-correlation-request-id": "956229c8-3a0b-4c76-aa48-55453d312494", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125527Z:956229c8-3a0b-4c76-aa48-55453d312494", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474", "name": "sdk-py-tests-acc-1-e3f62474", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A23%3A48.7999508Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A55%3A26.4579747Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:18:58.5678926Z" + "CreatedOnDate": "2022-10-25T12:52:34.6537246Z" }, "properties": { "encryption": { @@ -1435,10 +1477,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:19:00.5892033Z", + "createdAt": "2022-10-25T12:52:36.6764197Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:19:00.5892033Z" + "lastModifiedAt": "2022-10-25T12:52:36.6764197Z" } } }, @@ -1449,27 +1491,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:24:19 GMT", + "Date": "Tue, 25 Oct 2022 12:55:26 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fae8b15b-e01a-48bd-81d1-179ee70c3d95", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142419Z:fae8b15b-e01a-48bd-81d1-179ee70c3d95" + "x-ms-correlation-request-id": "b3716e37-6ae0-4d00-bf60-107c9aaa75bb", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125527Z:b3716e37-6ae0-4d00-bf60-107c9aaa75bb", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e3f62474\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_patch_pool.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_patch_pool.json index 0778c34e8de7..9f461dda1dc2 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_patch_pool.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_patch_pool.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:32:42 GMT", + "Date": "Tue, 25 Oct 2022 12:58:58 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13734.8 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:32:42 GMT", + "Date": "Tue, 25 Oct 2022 12:58:58 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "bc3dcc81-86f1-4224-b6af-aa1fd434e02c", + "client-request-id": "d6dc5693-ccc1-4096-b599-2cabf4424d20", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "bc3dcc81-86f1-4224-b6af-aa1fd434e02c", + "client-request-id": "d6dc5693-ccc1-4096-b599-2cabf4424d20", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:32:42 GMT", + "Date": "Tue, 25 Oct 2022 12:58:59 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13734.8 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48dcdca0-0cf8-482b-9b0d-360715d2ef29?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b3420ab-d68b-44f0-9d18-b701eea57841?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:32:49 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A32%3A49.2741368Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:59:03 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A02.4215581Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a338785-1ce0-4e1d-b8ac-a5b5e740bcc6", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143250Z:3a338785-1ce0-4e1d-b8ac-a5b5e740bcc6", + "x-ms-correlation-request-id": "3008842a-f872-40a8-b77b-294bef962b45", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125903Z:3008842a-f872-40a8-b77b-294bef962b45", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455", "name": "sdk-py-tests-acc-1-e2722455", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A32%3A49.2741368Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A02.4215581Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:32:46.0554333Z" + "CreatedOnDate": "2022-10-25T12:59:00.4313528Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:32:48.2820654Z", + "createdAt": "2022-10-25T12:59:02.2003412Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:32:48.2820654Z" + "lastModifiedAt": "2022-10-25T12:59:02.2003412Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48dcdca0-0cf8-482b-9b0d-360715d2ef29?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b3420ab-d68b-44f0-9d18-b701eea57841?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:33:20 GMT", + "Date": "Tue, 25 Oct 2022 12:59:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81c8b08a-fe66-45c5-8457-90b8359e1ecb", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143321Z:81c8b08a-fe66-45c5-8457-90b8359e1ecb", + "x-ms-correlation-request-id": "193c6d2f-e2bd-4d4b-b597-bcd617a226a3", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125903Z:193c6d2f-e2bd-4d4b-b597-bcd617a226a3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48dcdca0-0cf8-482b-9b0d-360715d2ef29", - "name": "48dcdca0-0cf8-482b-9b0d-360715d2ef29", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b3420ab-d68b-44f0-9d18-b701eea57841", + "name": "5b3420ab-d68b-44f0-9d18-b701eea57841", "status": "Succeeded", - "startTime": "2022-09-16T14:32:49.277407Z", - "endTime": "2022-09-16T14:32:49.3711644Z", + "startTime": "2022-10-25T12:59:02.4173914Z", + "endTime": "2022-10-25T12:59:02.5267125Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:33:21 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A32%3A49.3706232Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:59:04 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A02.5146625Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "027257a4-2d30-4c28-91d0-af84aebef6f1", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143321Z:027257a4-2d30-4c28-91d0-af84aebef6f1", + "x-ms-correlation-request-id": "69b458d6-3b9c-4ffb-86a4-73843979af61", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125904Z:69b458d6-3b9c-4ffb-86a4-73843979af61", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455", "name": "sdk-py-tests-acc-1-e2722455", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A32%3A49.3706232Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A02.5146625Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:32:46.0554333Z" + "CreatedOnDate": "2022-10-25T12:59:00.4313528Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:32:48.2820654Z", + "createdAt": "2022-10-25T12:59:02.2003412Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:32:48.2820654Z" + "lastModifiedAt": "2022-10-25T12:59:02.2003412Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -400,30 +400,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a531a002-2557-4a4c-99fd-3626aa31c36e?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3327fa1d-3c3c-44f0-88bd-68611a6a8ff8?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:33:23 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A33%3A23.0276267Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:59:06 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A05.9095427Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc642584-ec56-430f-896e-202cc9293a86", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143323Z:dc642584-ec56-430f-896e-202cc9293a86", + "x-ms-correlation-request-id": "4b76af0e-6fa0-431a-a8c7-3b66b41b7e83", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125906Z:4b76af0e-6fa0-431a-a8c7-3b66b41b7e83", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-e2722455/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A33%3A23.0276267Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A05.9095427Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:33:21.8228159Z" + "CreatedOnDate": "2022-10-25T12:59:04.6602392Z" }, "properties": { "serviceLevel": "Premium", @@ -437,21 +437,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:33:22.8358329Z", + "createdAt": "2022-10-25T12:59:05.6395745Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:33:22.8358329Z" + "lastModifiedAt": "2022-10-25T12:59:05.6395745Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a531a002-2557-4a4c-99fd-3626aa31c36e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3327fa1d-3c3c-44f0-88bd-68611a6a8ff8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -459,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:33:53 GMT", + "Date": "Tue, 25 Oct 2022 12:59:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -467,17 +467,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52008325-8508-48e2-abd5-320c8b922426", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143354Z:52008325-8508-48e2-abd5-320c8b922426", + "x-ms-correlation-request-id": "38317e7f-116b-4841-a829-17fe995b31d7", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125906Z:38317e7f-116b-4841-a829-17fe995b31d7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a531a002-2557-4a4c-99fd-3626aa31c36e", - "name": "a531a002-2557-4a4c-99fd-3626aa31c36e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3327fa1d-3c3c-44f0-88bd-68611a6a8ff8", + "name": "3327fa1d-3c3c-44f0-88bd-68611a6a8ff8", "status": "Succeeded", - "startTime": "2022-09-16T14:33:23.0331997Z", - "endTime": "2022-09-16T14:33:23.7207639Z", + "startTime": "2022-10-25T12:59:05.9175993Z", + "endTime": "2022-10-25T12:59:06.7146063Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1" @@ -491,7 +491,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -499,8 +499,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:33:54 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A33%3A23.728882Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:59:07 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A06.7062692Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -508,22 +508,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba58194d-42db-4b8f-bcf6-ffbafecf8015", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143354Z:ba58194d-42db-4b8f-bcf6-ffbafecf8015", + "x-ms-correlation-request-id": "99ad8bf7-3489-47b7-bdee-c065b8f76c84", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125907Z:99ad8bf7-3489-47b7-bdee-c065b8f76c84", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-e2722455/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A33%3A23.728882Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A06.7062692Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:33:21.8228159Z" + "CreatedOnDate": "2022-10-25T12:59:04.6602392Z" }, "properties": { - "poolId": "450ef664-cccf-a759-b465-7365c4657725", + "poolId": "848e4744-79ee-33f5-c4bc-fbcfa6c2ba73", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -536,10 +536,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:33:22.8358329Z", + "createdAt": "2022-10-25T12:59:05.6395745Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:33:22.8358329Z" + "lastModifiedAt": "2022-10-25T12:59:05.6395745Z" } } }, @@ -552,7 +552,7 @@ "Connection": "keep-alive", "Content-Length": "88", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "tags": { @@ -565,35 +565,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3085478a-2edb-4939-b686-40c0ddc20fb3?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36c38924-44c1-4daa-8706-84bdd878d26e?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "989", + "Content-Length": "988", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:33:54 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A33%3A54.9281161Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:59:07 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A07.920576Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3085478a-2edb-4939-b686-40c0ddc20fb3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36c38924-44c1-4daa-8706-84bdd878d26e?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2233b165-1a2b-4d32-8973-68a8d37dbc3f", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143355Z:2233b165-1a2b-4d32-8973-68a8d37dbc3f", + "x-ms-correlation-request-id": "835ad764-5969-4ceb-8eea-cbdbff8be976", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125908Z:835ad764-5969-4ceb-8eea-cbdbff8be976", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-e2722455/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A33%3A54.9281161Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A07.920576Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:33:21.8228159Z" + "CreatedOnDate": "2022-10-25T12:59:04.6602392Z" }, "properties": { "provisioningState": "Patching", - "poolId": "450ef664-cccf-a759-b465-7365c4657725", + "poolId": "848e4744-79ee-33f5-c4bc-fbcfa6c2ba73", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -605,21 +605,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:33:22.8358329Z", + "createdAt": "2022-10-25T12:59:05.6395745Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:33:22.8358329Z" + "lastModifiedAt": "2022-10-25T12:59:05.6395745Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3085478a-2edb-4939-b686-40c0ddc20fb3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36c38924-44c1-4daa-8706-84bdd878d26e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -627,7 +627,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:34:24 GMT", + "Date": "Tue, 25 Oct 2022 12:59:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -635,17 +635,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e710b52-de01-4f12-ad48-743dc54887a5", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143425Z:7e710b52-de01-4f12-ad48-743dc54887a5", + "x-ms-correlation-request-id": "f17f86c6-6b76-4fce-ab6a-df8dfffa010e", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125908Z:f17f86c6-6b76-4fce-ab6a-df8dfffa010e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3085478a-2edb-4939-b686-40c0ddc20fb3", - "name": "3085478a-2edb-4939-b686-40c0ddc20fb3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36c38924-44c1-4daa-8706-84bdd878d26e", + "name": "36c38924-44c1-4daa-8706-84bdd878d26e", "status": "Succeeded", - "startTime": "2022-09-16T14:33:54.9780877Z", - "endTime": "2022-09-16T14:33:55.9995202Z", + "startTime": "2022-10-25T12:59:07.9180689Z", + "endTime": "2022-10-25T12:59:08.199064Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1" @@ -653,13 +653,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3085478a-2edb-4939-b686-40c0ddc20fb3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36c38924-44c1-4daa-8706-84bdd878d26e?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -667,7 +667,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:34:25 GMT", + "Date": "Tue, 25 Oct 2022 12:59:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -675,23 +675,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c97a2c3-17e4-4b72-ae12-2bee46cf599f", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143425Z:2c97a2c3-17e4-4b72-ae12-2bee46cf599f", + "x-ms-correlation-request-id": "13dbdf72-e0fc-46f2-8e57-02682b6cd001", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125908Z:13dbdf72-e0fc-46f2-8e57-02682b6cd001", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-e2722455/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A33%3A56.0104659Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A08.1884231Z\u0027\u0022", "location": "westus2", "tags": { "Tag2": "Value1", - "CreatedOnDate": "2022-09-16T14:33:54.5843214Z" + "CreatedOnDate": "2022-10-25T12:59:07.5759504Z" }, "properties": { - "poolId": "450ef664-cccf-a759-b465-7365c4657725", + "poolId": "848e4744-79ee-33f5-c4bc-fbcfa6c2ba73", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1", @@ -705,10 +705,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:33:22.8358329Z", + "createdAt": "2022-10-25T12:59:05.6395745Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:33:54.793846Z" + "lastModifiedAt": "2022-10-25T12:59:07.750965Z" } } }, @@ -720,36 +720,76 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b269af4-a34b-4180-8440-a00e6d01876b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f0c7c1e-fc65-4e50-a73a-2550f340b7e6?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:34:35 GMT", + "Date": "Tue, 25 Oct 2022 12:59:18 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b269af4-a34b-4180-8440-a00e6d01876b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f0c7c1e-fc65-4e50-a73a-2550f340b7e6?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9915bc22-29e0-447f-a3c0-4f440d8f6e66", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143436Z:9915bc22-29e0-447f-a3c0-4f440d8f6e66", + "x-ms-correlation-request-id": "2431a454-b32e-41b4-89b4-03116f7d405e", + "x-ms-ratelimit-remaining-subscription-deletes": "14970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125919Z:2431a454-b32e-41b4-89b4-03116f7d405e", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b269af4-a34b-4180-8440-a00e6d01876b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f0c7c1e-fc65-4e50-a73a-2550f340b7e6?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:59:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "46f59ad3-4275-4cdd-8db0-8e173461f694", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125919Z:46f59ad3-4275-4cdd-8db0-8e173461f694", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f0c7c1e-fc65-4e50-a73a-2550f340b7e6", + "name": "1f0c7c1e-fc65-4e50-a73a-2550f340b7e6", + "status": "Deleting", + "startTime": "2022-10-25T12:59:19.1217381Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f0c7c1e-fc65-4e50-a73a-2550f340b7e6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -757,7 +797,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:35:06 GMT", + "Date": "Tue, 25 Oct 2022 12:59:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -765,17 +805,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fdd723e-e19c-4189-b8bc-37390af37563", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143506Z:6fdd723e-e19c-4189-b8bc-37390af37563", + "x-ms-correlation-request-id": "d65a5bb1-2e56-42c3-857c-11f49015540d", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125949Z:d65a5bb1-2e56-42c3-857c-11f49015540d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b269af4-a34b-4180-8440-a00e6d01876b", - "name": "8b269af4-a34b-4180-8440-a00e6d01876b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f0c7c1e-fc65-4e50-a73a-2550f340b7e6", + "name": "1f0c7c1e-fc65-4e50-a73a-2550f340b7e6", "status": "Succeeded", - "startTime": "2022-09-16T14:34:36.352146Z", - "endTime": "2022-09-16T14:34:37.305801Z", + "startTime": "2022-10-25T12:59:19.1217381Z", + "endTime": "2022-10-25T12:59:19.4186364Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1" @@ -783,13 +823,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b269af4-a34b-4180-8440-a00e6d01876b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f0c7c1e-fc65-4e50-a73a-2550f340b7e6?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -797,7 +837,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:35:06 GMT", + "Date": "Tue, 25 Oct 2022 12:59:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -805,23 +845,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12b7e5ee-1cfa-4bc6-ac5b-bfc5d9e4eae4", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143507Z:12b7e5ee-1cfa-4bc6-ac5b-bfc5d9e4eae4", + "x-ms-correlation-request-id": "a7c8e14a-d1d3-4c13-98e3-f5212d81f1af", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125949Z:a7c8e14a-d1d3-4c13-98e3-f5212d81f1af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-e2722455/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A34%3A36.3542851Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A59%3A19.126178Z\u0027\u0022", "location": "westus2", "tags": { "Tag2": "Value1", - "CreatedOnDate": "2022-09-16T14:33:54.5843214Z" + "CreatedOnDate": "2022-10-25T12:59:07.5759504Z" }, "properties": { - "poolId": "450ef664-cccf-a759-b465-7365c4657725", + "poolId": "848e4744-79ee-33f5-c4bc-fbcfa6c2ba73", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455/capacityPools/sdk-py-tests-pool-1", @@ -835,10 +875,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:33:22.8358329Z", + "createdAt": "2022-10-25T12:59:05.6395745Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:33:54.793846Z" + "lastModifiedAt": "2022-10-25T12:59:07.750965Z" } } }, @@ -850,20 +890,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:35:16 GMT", + "Date": "Tue, 25 Oct 2022 13:00:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38a840b0-c6ec-4926-8d86-e7db1b36e561", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143517Z:38a840b0-c6ec-4926-8d86-e7db1b36e561" + "x-ms-correlation-request-id": "8db0ebf1-3851-4571-9a77-6cd5fc69b8c6", + "x-ms-ratelimit-remaining-subscription-deletes": "14969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130000Z:8db0ebf1-3851-4571-9a77-6cd5fc69b8c6" }, "ResponseBody": null }, @@ -875,20 +915,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:35:26 GMT", + "Date": "Tue, 25 Oct 2022 13:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3ed7ca1-5bf2-44cf-8387-c4d2147b5944", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143527Z:b3ed7ca1-5bf2-44cf-8387-c4d2147b5944" + "x-ms-correlation-request-id": "c5fdba6d-798e-46d3-b371-769c3c460445", + "x-ms-ratelimit-remaining-subscription-deletes": "14968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130010Z:c5fdba6d-798e-46d3-b371-769c3c460445" }, "ResponseBody": null }, @@ -900,20 +940,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:35:37 GMT", + "Date": "Tue, 25 Oct 2022 13:00:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64aa735f-42e4-4368-b59a-b2b1590aeae1", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143537Z:64aa735f-42e4-4368-b59a-b2b1590aeae1" + "x-ms-correlation-request-id": "31416d50-685e-40f0-9a86-18abe3f62dc9", + "x-ms-ratelimit-remaining-subscription-deletes": "14967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130020Z:31416d50-685e-40f0-9a86-18abe3f62dc9" }, "ResponseBody": null }, @@ -925,20 +965,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:35:48 GMT", + "Date": "Tue, 25 Oct 2022 13:00:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be30c783-0a3a-4657-98a7-200afd063075", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143548Z:be30c783-0a3a-4657-98a7-200afd063075" + "x-ms-correlation-request-id": "782f8bea-fb0a-47ad-bd53-a1c07712abcb", + "x-ms-ratelimit-remaining-subscription-deletes": "14966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130031Z:782f8bea-fb0a-47ad-bd53-a1c07712abcb" }, "ResponseBody": null }, @@ -949,7 +989,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -957,14 +997,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:35:58 GMT", + "Date": "Tue, 25 Oct 2022 13:00:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28d6a326-226c-42b8-86be-1de48dc3ad38", + "x-ms-correlation-request-id": "b81e6f6a-fcaf-4185-9015-eb8143ab78ec", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143558Z:28d6a326-226c-42b8-86be-1de48dc3ad38" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130041Z:b81e6f6a-fcaf-4185-9015-eb8143ab78ec" }, "ResponseBody": { "error": { @@ -981,36 +1021,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9af8e1f0-f8cd-4298-8c83-1ca55f00236b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/61b5aca0-e5d8-4173-a6f6-1f57bcbf5817?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:35:59 GMT", + "Date": "Tue, 25 Oct 2022 13:00:42 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9af8e1f0-f8cd-4298-8c83-1ca55f00236b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/61b5aca0-e5d8-4173-a6f6-1f57bcbf5817?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6327c24-89f7-4a91-9e8b-80a15b85b2db", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143600Z:d6327c24-89f7-4a91-9e8b-80a15b85b2db", + "x-ms-correlation-request-id": "2a661337-a2b2-4d2b-aab1-9c405a2f55f9", + "x-ms-ratelimit-remaining-subscription-deletes": "14965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130042Z:2a661337-a2b2-4d2b-aab1-9c405a2f55f9", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9af8e1f0-f8cd-4298-8c83-1ca55f00236b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/61b5aca0-e5d8-4173-a6f6-1f57bcbf5817?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1018,7 +1058,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:36:30 GMT", + "Date": "Tue, 25 Oct 2022 13:00:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1026,17 +1066,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80903bf1-8b01-418e-b762-e1ffb5e048ca", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143630Z:80903bf1-8b01-418e-b762-e1ffb5e048ca", + "x-ms-correlation-request-id": "27fd4633-055e-4660-bf69-9ab269b2dd26", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130043Z:27fd4633-055e-4660-bf69-9ab269b2dd26", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9af8e1f0-f8cd-4298-8c83-1ca55f00236b", - "name": "9af8e1f0-f8cd-4298-8c83-1ca55f00236b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/61b5aca0-e5d8-4173-a6f6-1f57bcbf5817", + "name": "61b5aca0-e5d8-4173-a6f6-1f57bcbf5817", "status": "Succeeded", - "startTime": "2022-09-16T14:35:59.9835607Z", - "endTime": "2022-09-16T14:36:00.0304369Z", + "startTime": "2022-10-25T13:00:42.7973159Z", + "endTime": "2022-10-25T13:00:42.9223492Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455" @@ -1044,13 +1084,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9af8e1f0-f8cd-4298-8c83-1ca55f00236b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/61b5aca0-e5d8-4173-a6f6-1f57bcbf5817?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1058,7 +1098,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:36:30 GMT", + "Date": "Tue, 25 Oct 2022 13:00:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1066,19 +1106,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83434c4a-8e79-495d-9648-250dd859f8d9", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143630Z:83434c4a-8e79-495d-9648-250dd859f8d9", + "x-ms-correlation-request-id": "bb30f8cb-9402-4085-bd37-d3b27285b775", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130043Z:bb30f8cb-9402-4085-bd37-d3b27285b775", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455", "name": "sdk-py-tests-acc-1-e2722455", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A35%3A59.9854032Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A00%3A42.7944528Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:32:46.0554333Z" + "CreatedOnDate": "2022-10-25T12:59:00.4313528Z" }, "properties": { "encryption": { @@ -1089,10 +1129,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:32:48.2820654Z", + "createdAt": "2022-10-25T12:59:02.2003412Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:32:48.2820654Z" + "lastModifiedAt": "2022-10-25T12:59:02.2003412Z" } } }, @@ -1103,27 +1143,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:36:30 GMT", + "Date": "Tue, 25 Oct 2022 13:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe74c785-ff89-4809-a201-40279589359c", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143630Z:fe74c785-ff89-4809-a201-40279589359c" + "x-ms-correlation-request-id": "941adad0-900f-4331-a42e-8ae91cb73983", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130043Z:941adad0-900f-4331-a42e-8ae91cb73983", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2722455\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_update_pool.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_update_pool.json index 3e0972714f09..a314735839dc 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_update_pool.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.pyTestNetAppCapacityPooltest_update_pool.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:28:18 GMT", + "Date": "Tue, 25 Oct 2022 12:57:12 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:28:19 GMT", + "Date": "Tue, 25 Oct 2022 12:57:12 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "1e28408a-db3e-4e0b-a576-1b1bc25e4d23", + "client-request-id": "54a93261-7c77-4f75-99a4-785c871cade8", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "1e28408a-db3e-4e0b-a576-1b1bc25e4d23", + "client-request-id": "54a93261-7c77-4f75-99a4-785c871cade8", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:28:19 GMT", + "Date": "Tue, 25 Oct 2022 12:57:12 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7399cfc4-2bb9-4bda-b563-8ca4305307aa?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a6b846a9-3201-4898-bfbd-47e47de07f3f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:28:26 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A28%3A25.4514423Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:57:16 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A15.5303318Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ada5f54c-f394-422d-881f-77d35e1a4960", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142826Z:ada5f54c-f394-422d-881f-77d35e1a4960", + "x-ms-correlation-request-id": "fd894b54-5041-4e5f-84f5-85a4d773568f", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125716Z:fd894b54-5041-4e5f-84f5-85a4d773568f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8", "name": "sdk-py-tests-acc-1-8b424c8", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A28%3A25.4514423Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A15.5303318Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:28:21.8682662Z" + "CreatedOnDate": "2022-10-25T12:57:13.8503269Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:28:24.5392435Z", + "createdAt": "2022-10-25T12:57:15.3165944Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:28:24.5392435Z" + "lastModifiedAt": "2022-10-25T12:57:15.3165944Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7399cfc4-2bb9-4bda-b563-8ca4305307aa?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a6b846a9-3201-4898-bfbd-47e47de07f3f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:28:56 GMT", + "Date": "Tue, 25 Oct 2022 12:57:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6036d39-3175-44c0-841e-519e28f4387d", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142857Z:f6036d39-3175-44c0-841e-519e28f4387d", + "x-ms-correlation-request-id": "482db1cc-47f2-4163-b652-b5f591a23341", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125717Z:482db1cc-47f2-4163-b652-b5f591a23341", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7399cfc4-2bb9-4bda-b563-8ca4305307aa", - "name": "7399cfc4-2bb9-4bda-b563-8ca4305307aa", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a6b846a9-3201-4898-bfbd-47e47de07f3f", + "name": "a6b846a9-3201-4898-bfbd-47e47de07f3f", "status": "Succeeded", - "startTime": "2022-09-16T14:28:25.449106Z", - "endTime": "2022-09-16T14:28:25.4959917Z", + "startTime": "2022-10-25T12:57:15.5312238Z", + "endTime": "2022-10-25T12:57:15.5780865Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:28:56 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A28%3A25.5093848Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:57:17 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A15.5817065Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1139aa20-adb0-4780-885f-5911f4d0139d", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142857Z:1139aa20-adb0-4780-885f-5911f4d0139d", + "x-ms-correlation-request-id": "25c0cd53-f1f2-4bec-979a-d0a11623f894", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125717Z:25c0cd53-f1f2-4bec-979a-d0a11623f894", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8", "name": "sdk-py-tests-acc-1-8b424c8", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A28%3A25.5093848Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A15.5817065Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:28:21.8682662Z" + "CreatedOnDate": "2022-10-25T12:57:13.8503269Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:28:24.5392435Z", + "createdAt": "2022-10-25T12:57:15.3165944Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:28:24.5392435Z" + "lastModifiedAt": "2022-10-25T12:57:15.3165944Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -400,30 +400,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c1aab6a4-eb2b-4f76-a90d-a4dfd4025993?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f948be7-dd0a-468e-bd88-42c0f6f55821?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "919", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:28:59 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A28%3A59.182314Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:57:20 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A19.111261Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a932a9db-9877-4d53-95f2-44d2d8242a3d", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142900Z:a932a9db-9877-4d53-95f2-44d2d8242a3d", + "x-ms-correlation-request-id": "b9be0f1b-f84e-4031-a0b9-793343f29040", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125720Z:b9be0f1b-f84e-4031-a0b9-793343f29040", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8b424c8/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A28%3A59.182314Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A19.111261Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:28:57.8969115Z" + "CreatedOnDate": "2022-10-25T12:57:17.8405752Z" }, "properties": { "serviceLevel": "Premium", @@ -437,21 +437,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:28:58.9924681Z", + "createdAt": "2022-10-25T12:57:18.8325027Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:28:58.9924681Z" + "lastModifiedAt": "2022-10-25T12:57:18.8325027Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c1aab6a4-eb2b-4f76-a90d-a4dfd4025993?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f948be7-dd0a-468e-bd88-42c0f6f55821?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -459,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:29:29 GMT", + "Date": "Tue, 25 Oct 2022 12:57:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -467,17 +467,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2630444-ccd4-425f-b301-6c92b44d6ec3", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142930Z:d2630444-ccd4-425f-b301-6c92b44d6ec3", + "x-ms-correlation-request-id": "a60f75cf-40be-4b9f-991a-3e9e6cd6e46b", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125720Z:a60f75cf-40be-4b9f-991a-3e9e6cd6e46b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c1aab6a4-eb2b-4f76-a90d-a4dfd4025993", - "name": "c1aab6a4-eb2b-4f76-a90d-a4dfd4025993", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f948be7-dd0a-468e-bd88-42c0f6f55821", + "name": "5f948be7-dd0a-468e-bd88-42c0f6f55821", "status": "Succeeded", - "startTime": "2022-09-16T14:28:59.1800235Z", - "endTime": "2022-09-16T14:29:00.1178062Z", + "startTime": "2022-10-25T12:57:19.110001Z", + "endTime": "2022-10-25T12:57:20.0631981Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1" @@ -491,7 +491,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -499,8 +499,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:29:30 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A29%3A00.1309453Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:57:20 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A20.0551528Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -508,22 +508,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c10af65b-0db6-40de-91e4-72ea4cbad836", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142931Z:c10af65b-0db6-40de-91e4-72ea4cbad836", + "x-ms-correlation-request-id": "c6956c5c-00af-4261-a100-d84991f07d28", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125721Z:c6956c5c-00af-4261-a100-d84991f07d28", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8b424c8/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A29%3A00.1309453Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A20.0551528Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:28:57.8969115Z" + "CreatedOnDate": "2022-10-25T12:57:17.8405752Z" }, "properties": { - "poolId": "77b5f53e-c9f8-eca2-dc65-d01faee1afe0", + "poolId": "93037d3e-0a21-5273-9ee0-8a3cfb4f8b0b", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -536,10 +536,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:28:58.9924681Z", + "createdAt": "2022-10-25T12:57:18.8325027Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:28:58.9924681Z" + "lastModifiedAt": "2022-10-25T12:57:18.8325027Z" } } }, @@ -552,7 +552,7 @@ "Connection": "keep-alive", "Content-Length": "83", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -563,12 +563,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b07d19d1-5a92-4f93-8096-d72332ceff2e?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7822a745-e74d-49ae-bd44-5b4ec3b75420?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:29:32 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A29%3A31.502099Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:57:22 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A21.5073244Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -576,23 +576,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "007ea5c2-8757-41aa-b64c-15991fc208cb", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220916T142932Z:007ea5c2-8757-41aa-b64c-15991fc208cb", + "x-ms-correlation-request-id": "038bcbac-c3dc-4389-b1c6-cc682e091cd9", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125722Z:038bcbac-c3dc-4389-b1c6-cc682e091cd9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8b424c8/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A29%3A31.502099Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A21.5073244Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:28:57.8969115Z" + "CreatedOnDate": "2022-10-25T12:57:17.8405752Z" }, "properties": { "provisioningState": "Updating", - "poolId": "77b5f53e-c9f8-eca2-dc65-d01faee1afe0", + "poolId": "93037d3e-0a21-5273-9ee0-8a3cfb4f8b0b", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -604,21 +604,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:28:58.9924681Z", + "createdAt": "2022-10-25T12:57:18.8325027Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:28:58.9924681Z" + "lastModifiedAt": "2022-10-25T12:57:18.8325027Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b07d19d1-5a92-4f93-8096-d72332ceff2e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7822a745-e74d-49ae-bd44-5b4ec3b75420?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -626,7 +626,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:30:01 GMT", + "Date": "Tue, 25 Oct 2022 12:57:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -634,17 +634,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c314237c-4db1-491a-bfcc-6d101c47befa", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143002Z:c314237c-4db1-491a-bfcc-6d101c47befa", + "x-ms-correlation-request-id": "730b5ac0-82bd-4e47-9023-14be172a49ac", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125722Z:730b5ac0-82bd-4e47-9023-14be172a49ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b07d19d1-5a92-4f93-8096-d72332ceff2e", - "name": "b07d19d1-5a92-4f93-8096-d72332ceff2e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7822a745-e74d-49ae-bd44-5b4ec3b75420", + "name": "7822a745-e74d-49ae-bd44-5b4ec3b75420", "status": "Succeeded", - "startTime": "2022-09-16T14:29:31.4974623Z", - "endTime": "2022-09-16T14:29:32.3412727Z", + "startTime": "2022-10-25T12:57:21.5008092Z", + "endTime": "2022-10-25T12:57:22.2197185Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1" @@ -658,7 +658,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -666,8 +666,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:30:02 GMT", - "ETag": "W/\u0022datetime\u00272022-09-16T14%3A29%3A32.3485896Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 12:57:22 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A22.222916Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -675,22 +675,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28dca52a-0927-448b-92bd-289fd3328e22", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143003Z:28dca52a-0927-448b-92bd-289fd3328e22", + "x-ms-correlation-request-id": "c1169270-c6b2-4e86-aa67-adc4438fef59", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125723Z:c1169270-c6b2-4e86-aa67-adc4438fef59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8b424c8/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A29%3A32.3485896Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A22.222916Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:29:31.1887399Z" + "CreatedOnDate": "2022-10-25T12:57:21.1562478Z" }, "properties": { - "poolId": "77b5f53e-c9f8-eca2-dc65-d01faee1afe0", + "poolId": "93037d3e-0a21-5273-9ee0-8a3cfb4f8b0b", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Manual", @@ -703,10 +703,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:28:58.9924681Z", + "createdAt": "2022-10-25T12:57:18.8325027Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:29:31.3690341Z" + "lastModifiedAt": "2022-10-25T12:57:21.3337133Z" } } }, @@ -718,36 +718,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aeece65a-a47b-4215-a6b4-16cc5003d9a0?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba309e61-a768-4f69-922f-7d309f6ad44d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:30:13 GMT", + "Date": "Tue, 25 Oct 2022 12:57:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aeece65a-a47b-4215-a6b4-16cc5003d9a0?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba309e61-a768-4f69-922f-7d309f6ad44d?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d89e4401-a413-41dc-8636-475ef9ffcc5f", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143014Z:d89e4401-a413-41dc-8636-475ef9ffcc5f", + "x-ms-correlation-request-id": "77a75381-153d-45f4-abd0-5d3ef1b27eaa", + "x-ms-ratelimit-remaining-subscription-deletes": "14976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125733Z:77a75381-153d-45f4-abd0-5d3ef1b27eaa", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aeece65a-a47b-4215-a6b4-16cc5003d9a0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba309e61-a768-4f69-922f-7d309f6ad44d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -755,7 +755,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:30:43 GMT", + "Date": "Tue, 25 Oct 2022 12:57:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -763,17 +763,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19adfbc9-656f-40da-905b-e7edd2c7ed33", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143044Z:19adfbc9-656f-40da-905b-e7edd2c7ed33", + "x-ms-correlation-request-id": "ce86af74-52df-442a-b3a9-70752b30a458", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125734Z:ce86af74-52df-442a-b3a9-70752b30a458", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aeece65a-a47b-4215-a6b4-16cc5003d9a0", - "name": "aeece65a-a47b-4215-a6b4-16cc5003d9a0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba309e61-a768-4f69-922f-7d309f6ad44d", + "name": "ba309e61-a768-4f69-922f-7d309f6ad44d", + "status": "Deleting", + "startTime": "2022-10-25T12:57:33.6787043Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba309e61-a768-4f69-922f-7d309f6ad44d?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 12:58:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "95ef01d4-0eb6-4fed-9904-047cd27fe0fd", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125804Z:95ef01d4-0eb6-4fed-9904-047cd27fe0fd", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba309e61-a768-4f69-922f-7d309f6ad44d", + "name": "ba309e61-a768-4f69-922f-7d309f6ad44d", "status": "Succeeded", - "startTime": "2022-09-16T14:30:13.8288773Z", - "endTime": "2022-09-16T14:30:14.7039307Z", + "startTime": "2022-10-25T12:57:33.6787043Z", + "endTime": "2022-10-25T12:57:34.0068553Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1" @@ -781,13 +821,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aeece65a-a47b-4215-a6b4-16cc5003d9a0?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba309e61-a768-4f69-922f-7d309f6ad44d?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -795,7 +835,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:30:44 GMT", + "Date": "Tue, 25 Oct 2022 12:58:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -803,22 +843,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73ef7f83-9583-484c-87dc-262fd506ac26", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143044Z:73ef7f83-9583-484c-87dc-262fd506ac26", + "x-ms-correlation-request-id": "23a10876-e33b-41b5-9cd1-acd7d06c3c4e", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125804Z:23a10876-e33b-41b5-9cd1-acd7d06c3c4e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8b424c8/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A30%3A13.8415891Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A57%3A33.6853736Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:29:31.1887399Z" + "CreatedOnDate": "2022-10-25T12:57:21.1562478Z" }, "properties": { - "poolId": "77b5f53e-c9f8-eca2-dc65-d01faee1afe0", + "poolId": "93037d3e-0a21-5273-9ee0-8a3cfb4f8b0b", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8/capacityPools/sdk-py-tests-pool-1", @@ -832,10 +872,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:28:58.9924681Z", + "createdAt": "2022-10-25T12:57:18.8325027Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:29:31.3690341Z" + "lastModifiedAt": "2022-10-25T12:57:21.3337133Z" } } }, @@ -847,20 +887,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:30:54 GMT", + "Date": "Tue, 25 Oct 2022 12:58:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38c08d79-90d3-43ba-9567-dedae99ea61a", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143055Z:38c08d79-90d3-43ba-9567-dedae99ea61a" + "x-ms-correlation-request-id": "a424df58-826a-4873-bdbe-1359574c2c65", + "x-ms-ratelimit-remaining-subscription-deletes": "14975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125814Z:a424df58-826a-4873-bdbe-1359574c2c65" }, "ResponseBody": null }, @@ -872,20 +912,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:31:04 GMT", + "Date": "Tue, 25 Oct 2022 12:58:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce5d118b-d537-4a8a-9bda-9e499e150b8c", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143105Z:ce5d118b-d537-4a8a-9bda-9e499e150b8c" + "x-ms-correlation-request-id": "2a6e5f38-44ec-4dfa-8515-36d1fc52ee8a", + "x-ms-ratelimit-remaining-subscription-deletes": "14974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125825Z:2a6e5f38-44ec-4dfa-8515-36d1fc52ee8a" }, "ResponseBody": null }, @@ -897,20 +937,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:31:15 GMT", + "Date": "Tue, 25 Oct 2022 12:58:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e05afd8-e763-4468-a548-c378321f68bc", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143115Z:8e05afd8-e763-4468-a548-c378321f68bc" + "x-ms-correlation-request-id": "278d2ac1-8765-496a-93a5-d68d12a9501b", + "x-ms-ratelimit-remaining-subscription-deletes": "14973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125835Z:278d2ac1-8765-496a-93a5-d68d12a9501b" }, "ResponseBody": null }, @@ -922,20 +962,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Fri, 16 Sep 2022 14:31:25 GMT", + "Date": "Tue, 25 Oct 2022 12:58:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "342afcba-fc83-40d3-b872-32a0b8ddc708", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143126Z:342afcba-fc83-40d3-b872-32a0b8ddc708" + "x-ms-correlation-request-id": "ab247a02-857b-4b69-ab98-cb0c34f26d95", + "x-ms-ratelimit-remaining-subscription-deletes": "14972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125845Z:ab247a02-857b-4b69-ab98-cb0c34f26d95" }, "ResponseBody": null }, @@ -946,7 +986,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -954,14 +994,14 @@ "Cache-Control": "no-cache", "Content-Length": "287", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:31:35 GMT", + "Date": "Tue, 25 Oct 2022 12:58:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10bbab01-62f4-4226-84b6-6bbacad053fd", + "x-ms-correlation-request-id": "1c130f2c-209b-4316-b19c-f43e38f32a1a", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143136Z:10bbab01-62f4-4226-84b6-6bbacad053fd" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125856Z:1c130f2c-209b-4316-b19c-f43e38f32a1a" }, "ResponseBody": { "error": { @@ -978,36 +1018,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b157692e-f743-4c6c-bd84-5384f46cff84?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37defa37-b07d-47e9-99d5-e70bb90e558d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 14:31:37 GMT", + "Date": "Tue, 25 Oct 2022 12:58:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b157692e-f743-4c6c-bd84-5384f46cff84?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37defa37-b07d-47e9-99d5-e70bb90e558d?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e282510f-d6ff-488b-b92f-0c669190b3bd", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143137Z:e282510f-d6ff-488b-b92f-0c669190b3bd", + "x-ms-correlation-request-id": "5cacd5c9-54bb-4c81-8e37-7eeaaee0e09f", + "x-ms-ratelimit-remaining-subscription-deletes": "14971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125857Z:5cacd5c9-54bb-4c81-8e37-7eeaaee0e09f", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b157692e-f743-4c6c-bd84-5384f46cff84?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37defa37-b07d-47e9-99d5-e70bb90e558d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1015,7 +1055,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:32:07 GMT", + "Date": "Tue, 25 Oct 2022 12:58:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1023,17 +1063,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "733a938d-c17c-4e5e-b165-1f49f65bb2f0", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143208Z:733a938d-c17c-4e5e-b165-1f49f65bb2f0", + "x-ms-correlation-request-id": "0a31afe0-5263-4a04-a98d-5c1ab90e56f5", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125857Z:0a31afe0-5263-4a04-a98d-5c1ab90e56f5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b157692e-f743-4c6c-bd84-5384f46cff84", - "name": "b157692e-f743-4c6c-bd84-5384f46cff84", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37defa37-b07d-47e9-99d5-e70bb90e558d", + "name": "37defa37-b07d-47e9-99d5-e70bb90e558d", "status": "Succeeded", - "startTime": "2022-09-16T14:31:37.7448216Z", - "endTime": "2022-09-16T14:31:37.8385895Z", + "startTime": "2022-10-25T12:58:57.6042949Z", + "endTime": "2022-10-25T12:58:57.6512159Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8" @@ -1041,13 +1081,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b157692e-f743-4c6c-bd84-5384f46cff84?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/37defa37-b07d-47e9-99d5-e70bb90e558d?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1055,7 +1095,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:32:07 GMT", + "Date": "Tue, 25 Oct 2022 12:58:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1063,19 +1103,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d18b34a-1f15-4948-9604-d9539854034a", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143208Z:6d18b34a-1f15-4948-9604-d9539854034a", + "x-ms-correlation-request-id": "67c97fab-32ff-4b99-af16-253f78f32be7", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125858Z:67c97fab-32ff-4b99-af16-253f78f32be7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8", "name": "sdk-py-tests-acc-1-8b424c8", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-16T14%3A31%3A37.7518399Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T12%3A58%3A57.5395028Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-16T14:28:21.8682662Z" + "CreatedOnDate": "2022-10-25T12:57:13.8503269Z" }, "properties": { "encryption": { @@ -1086,10 +1126,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-16T14:28:24.5392435Z", + "createdAt": "2022-10-25T12:57:15.3165944Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-16T14:28:24.5392435Z" + "lastModifiedAt": "2022-10-25T12:57:15.3165944Z" } } }, @@ -1100,27 +1140,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "253", + "Content-Length": "254", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 14:32:07 GMT", + "Date": "Tue, 25 Oct 2022 12:58:58 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97f5c8b9-5351-45d8-8e62-d4aa988aed98", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220916T143208Z:97f5c8b9-5351-45d8-8e62-d4aa988aed98" + "x-ms-correlation-request-id": "48735c4b-7461-4459-9557-144ca6d833b4", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T125858Z:48735c4b-7461-4459-9557-144ca6d833b4", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b424c8\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_create_delete_snapshot.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_create_delete_snapshot.json index fdb397577b79..c118819f844f 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_create_delete_snapshot.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_create_delete_snapshot.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:11 GMT", + "Date": "Tue, 25 Oct 2022 13:22:07 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:11 GMT", + "Date": "Tue, 25 Oct 2022 13:22:07 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "6a4d77ea-a6cb-4c87-964b-58c252459905", + "client-request-id": "80c454fe-dd54-4cb4-a211-3993bd105801", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "6a4d77ea-a6cb-4c87-964b-58c252459905", + "client-request-id": "80c454fe-dd54-4cb4-a211-3993bd105801", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:11 GMT", + "Date": "Tue, 25 Oct 2022 13:22:07 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0dcc0f93-2acc-4ef0-a341-19ec1e9d1b39?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77e25e49-2c61-4e80-95ae-32b995695c90?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:22 GMT", + "Date": "Tue, 25 Oct 2022 13:22:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "23583da7-4410-4c5e-a926-91abfaf74847", - "x-ms-correlation-request-id": "53a92782-f16c-4159-9738-a2be6409562a", + "x-ms-arm-service-request-id": "c563adb0-803f-4163-bfef-20551f7e6eaf", + "x-ms-correlation-request-id": "7834f6b6-e842-45fb-b163-607873367549", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082822Z:53a92782-f16c-4159-9738-a2be6409562a" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132218Z:7834f6b6-e842-45fb-b163-607873367549" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-cd95297f", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f", - "etag": "W/\u0022695b9b3c-202f-4309-91a6-bf4e88bb12b0\u0022", + "etag": "W/\u00228b4a79ca-bbfd-4343-a561-3c11f74595c8\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:28:14.9640926Z" + "CreatedOnDate": "2022-10-25T13:22:10.6102644Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "d5e4d177-e241-442d-8437-debcf8fc3a2f", + "resourceGuid": "505cdcfc-fa82-4255-b632-9f36076a9114", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0dcc0f93-2acc-4ef0-a341-19ec1e9d1b39?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/77e25e49-2c61-4e80-95ae-32b995695c90?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:25 GMT", + "Date": "Tue, 25 Oct 2022 13:22:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "65ada90d-e7eb-48ac-96cc-2a117ee5bf34", - "x-ms-correlation-request-id": "5b1795d3-b151-4307-8d33-0d9f2b72b6da", + "x-ms-arm-service-request-id": "91ce9bfc-edc6-43e9-9dd3-b755a3cbf5e6", + "x-ms-correlation-request-id": "b868b328-8514-4758-a920-eae871f57716", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082826Z:5b1795d3-b151-4307-8d33-0d9f2b72b6da" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132218Z:b868b328-8514-4758-a920-eae871f57716" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:25 GMT", - "ETag": "W/\u002227dddee4-b542-4dc8-8309-59faacc49964\u0022", + "Date": "Tue, 25 Oct 2022 13:22:18 GMT", + "ETag": "W/\u00227b3deb34-ccbc-441c-8b15-c74b94e63b9b\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b0573ac5-b629-4625-a054-ce6655450042", - "x-ms-correlation-request-id": "5aeb5aa0-3863-4f97-9890-df4e2db4dad7", + "x-ms-arm-service-request-id": "b698e2d5-0fbb-43a6-a334-dd2e51d65f18", + "x-ms-correlation-request-id": "b19975f8-b627-4ab4-ae28-d5f61f18e37c", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082826Z:5aeb5aa0-3863-4f97-9890-df4e2db4dad7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132219Z:b19975f8-b627-4ab4-ae28-d5f61f18e37c" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-cd95297f", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f", - "etag": "W/\u002227dddee4-b542-4dc8-8309-59faacc49964\u0022", + "etag": "W/\u00227b3deb34-ccbc-441c-8b15-c74b94e63b9b\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:28:14.9640926Z" + "CreatedOnDate": "2022-10-25T13:22:10.6102644Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "d5e4d177-e241-442d-8437-debcf8fc3a2f", + "resourceGuid": "505cdcfc-fa82-4255-b632-9f36076a9114", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ee9611bd-284b-4125-b89f-d240764ffc0f?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7a374fc3-99d1-4f4a-aa6a-9a409fc41b97?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:26 GMT", + "Date": "Tue, 25 Oct 2022 13:22:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "160fb811-03a1-4cb4-97f0-c525d95a42c1", - "x-ms-correlation-request-id": "bb61b1e9-0715-4e59-a3d2-ec9d66b764bb", + "x-ms-arm-service-request-id": "d3aa34d8-2860-4865-898e-7c2a7efdb77f", + "x-ms-correlation-request-id": "e1f5a7f0-d267-4588-8d4a-ca9ad6867a86", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082827Z:bb61b1e9-0715-4e59-a3d2-ec9d66b764bb" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132219Z:e1f5a7f0-d267-4588-8d4a-ca9ad6867a86" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default", - "etag": "W/\u0022c2e7e21f-7fe2-40f5-b362-eaafff7268d9\u0022", + "etag": "W/\u0022e095b293-ca01-4c9b-87e2-513bc4341a2e\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022c2e7e21f-7fe2-40f5-b362-eaafff7268d9\u0022", + "etag": "W/\u0022e095b293-ca01-4c9b-87e2-513bc4341a2e\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ee9611bd-284b-4125-b89f-d240764ffc0f?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7a374fc3-99d1-4f4a-aa6a-9a409fc41b97?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:29 GMT", + "Date": "Tue, 25 Oct 2022 13:22:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e018f8b4-f8d1-4bdf-a488-a847d3824256", - "x-ms-correlation-request-id": "f8953f28-05c9-4df3-afc9-8fec0f354a24", + "x-ms-arm-service-request-id": "4352f86d-7672-443f-9941-0e38de598d73", + "x-ms-correlation-request-id": "e6cce105-eaaf-4a0e-9271-e97832328925", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082830Z:f8953f28-05c9-4df3-afc9-8fec0f354a24" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132219Z:e6cce105-eaaf-4a0e-9271-e97832328925" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:30 GMT", - "ETag": "W/\u0022469ccf9a-3451-44ff-95a2-eed33a4fb801\u0022", + "Date": "Tue, 25 Oct 2022 13:22:19 GMT", + "ETag": "W/\u002298e15091-2d82-44fe-bfd1-f03dba8d4004\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "cd9ee239-71b7-4567-82e8-1dd76144b539", - "x-ms-correlation-request-id": "58dd6793-d16d-4717-85a3-609e44922d09", + "x-ms-arm-service-request-id": "9869c4ac-8bdb-402e-9587-60e5151e9b64", + "x-ms-correlation-request-id": "0a145ffe-c111-4082-a510-539e758ec449", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082830Z:58dd6793-d16d-4717-85a3-609e44922d09" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132220Z:0a145ffe-c111-4082-a510-539e758ec449" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default", - "etag": "W/\u0022469ccf9a-3451-44ff-95a2-eed33a4fb801\u0022", + "etag": "W/\u002298e15091-2d82-44fe-bfd1-f03dba8d4004\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022469ccf9a-3451-44ff-95a2-eed33a4fb801\u0022", + "etag": "W/\u002298e15091-2d82-44fe-bfd1-f03dba8d4004\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:30 GMT", + "Date": "Tue, 25 Oct 2022 13:22:19 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:30 GMT", + "Date": "Tue, 25 Oct 2022 13:22:19 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "cc1cb271-c561-4b7a-808f-6ff8a56b355b", + "client-request-id": "7ea8bfd3-33a9-49c4-9b00-2bf08b600bc7", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "cc1cb271-c561-4b7a-808f-6ff8a56b355b", + "client-request-id": "7ea8bfd3-33a9-49c4-9b00-2bf08b600bc7", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:30 GMT", + "Date": "Tue, 25 Oct 2022 13:22:19 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b801eee1-dc29-4ff9-b1c2-cd0927d81c94?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88e66aa6-dc09-4bb8-9170-6ca7cf4ee90b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:28:34 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A28%3A34.1118566Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:22:24 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A22%3A23.6043733Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42f04925-3672-4de0-9285-25b675932fa5", + "x-ms-correlation-request-id": "369d6150-d9c7-4294-a7d5-4880f684bd82", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082835Z:42f04925-3672-4de0-9285-25b675932fa5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132225Z:369d6150-d9c7-4294-a7d5-4880f684bd82", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f", "name": "sdk-py-tests-acc-1-cd95297f", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A28%3A34.1118566Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A22%3A23.6043733Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:28:32.1906051Z" + "CreatedOnDate": "2022-10-25T13:22:21.8406479Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:28:33.1822987Z", + "createdAt": "2022-10-25T13:22:22.6668777Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:28:33.1822987Z" + "lastModifiedAt": "2022-10-25T13:22:22.6668777Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b801eee1-dc29-4ff9-b1c2-cd0927d81c94?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88e66aa6-dc09-4bb8-9170-6ca7cf4ee90b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:29:05 GMT", + "Date": "Tue, 25 Oct 2022 13:22:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da178776-7637-40b2-b99c-e189b6ecf813", + "x-ms-correlation-request-id": "72c079ef-f587-4968-a0ab-c6495d2a984e", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082905Z:da178776-7637-40b2-b99c-e189b6ecf813", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132225Z:72c079ef-f587-4968-a0ab-c6495d2a984e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b801eee1-dc29-4ff9-b1c2-cd0927d81c94", - "name": "b801eee1-dc29-4ff9-b1c2-cd0927d81c94", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88e66aa6-dc09-4bb8-9170-6ca7cf4ee90b", + "name": "88e66aa6-dc09-4bb8-9170-6ca7cf4ee90b", "status": "Succeeded", - "startTime": "2022-09-19T08:28:34.1115449Z", - "endTime": "2022-09-19T08:28:34.1897306Z", + "startTime": "2022-10-25T13:22:23.6153091Z", + "endTime": "2022-10-25T13:22:23.8966092Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:29:06 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A28%3A34.1951809Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:22:25 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A22%3A23.6961201Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55f30d84-97b4-4460-87d6-d6f8ba4ac542", + "x-ms-correlation-request-id": "e81bdd76-ba8f-456a-be5d-8d9777d9c832", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082906Z:55f30d84-97b4-4460-87d6-d6f8ba4ac542", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132225Z:e81bdd76-ba8f-456a-be5d-8d9777d9c832", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f", "name": "sdk-py-tests-acc-1-cd95297f", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A28%3A34.1951809Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A22%3A23.6961201Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:28:32.1906051Z" + "CreatedOnDate": "2022-10-25T13:22:21.8406479Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:28:33.1822987Z", + "createdAt": "2022-10-25T13:22:22.6668777Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:28:33.1822987Z" + "lastModifiedAt": "2022-10-25T13:22:22.6668777Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2e5cb1e-315f-4018-977a-57df6c6ce008?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3eecf7ba-7867-4b6b-aa42-4484a9563be8?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:29:08 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A29%3A07.7466219Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:22:27 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A22%3A27.3671994Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa9f54aa-19d8-44f5-80a5-41e1afa0950e", + "x-ms-correlation-request-id": "cd78df94-b13d-41dc-b3db-88b9ab287dfe", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082908Z:fa9f54aa-19d8-44f5-80a5-41e1afa0950e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132228Z:cd78df94-b13d-41dc-b3db-88b9ab287dfe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-cd95297f/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A29%3A07.7466219Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A22%3A27.3671994Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:29:06.4185237Z" + "CreatedOnDate": "2022-10-25T13:22:26.0149338Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:29:07.5485707Z", + "createdAt": "2022-10-25T13:22:27.1388248Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:29:07.5485707Z" + "lastModifiedAt": "2022-10-25T13:22:27.1388248Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2e5cb1e-315f-4018-977a-57df6c6ce008?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3eecf7ba-7867-4b6b-aa42-4484a9563be8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:29:38 GMT", + "Date": "Tue, 25 Oct 2022 13:22:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc94262a-751d-416b-80b0-c9084fe9cb58", + "x-ms-correlation-request-id": "d9bd7e89-be46-4736-8500-fcaa95d21b1d", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082938Z:bc94262a-751d-416b-80b0-c9084fe9cb58", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132228Z:d9bd7e89-be46-4736-8500-fcaa95d21b1d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d2e5cb1e-315f-4018-977a-57df6c6ce008", - "name": "d2e5cb1e-315f-4018-977a-57df6c6ce008", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3eecf7ba-7867-4b6b-aa42-4484a9563be8", + "name": "3eecf7ba-7867-4b6b-aa42-4484a9563be8", "status": "Succeeded", - "startTime": "2022-09-19T08:29:07.7514366Z", - "endTime": "2022-09-19T08:29:08.9076818Z", + "startTime": "2022-10-25T13:22:27.3654162Z", + "endTime": "2022-10-25T13:22:28.225658Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:29:38 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A29%3A08.9123554Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:22:28 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A22%3A28.2145482Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6dbf812e-414a-4eb9-86ad-41d36ef311cd", + "x-ms-correlation-request-id": "2da07b5d-4f34-4693-9a00-b4af037892a9", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082939Z:6dbf812e-414a-4eb9-86ad-41d36ef311cd", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132228Z:2da07b5d-4f34-4693-9a00-b4af037892a9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-cd95297f/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A29%3A08.9123554Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A22%3A28.2145482Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:29:06.4185237Z" + "CreatedOnDate": "2022-10-25T13:22:26.0149338Z" }, "properties": { - "poolId": "6dc5b817-2b86-af51-396a-aa575f3a9a45", + "poolId": "e37243bb-beaf-8548-09b8-6a9fe2bc264b", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:29:07.5485707Z", + "createdAt": "2022-10-25T13:22:27.1388248Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:29:07.5485707Z" + "lastModifiedAt": "2022-10-25T13:22:27.1388248Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:29:41 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A29%3A41.0655829Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:22:31 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A22%3A30.9011586Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5732b47-d42e-4ee2-82d7-e047948660ae", + "x-ms-correlation-request-id": "78e1cf19-9ba3-4297-b274-15fb2a04b465", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T082942Z:d5732b47-d42e-4ee2-82d7-e047948660ae", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132231Z:78e1cf19-9ba3-4297-b274-15fb2a04b465", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f", "name": "sdk-py-tests-acc-1-cd95297f/sdk-py-tests-pool-1/sdk-py-tests-vol-3-cd95297f", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A29%3A41.0655829Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A22%3A30.9011586Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:29:39.6211027Z" + "CreatedOnDate": "2022-10-25T13:22:29.2952074Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:29:40.7925782Z", + "createdAt": "2022-10-25T13:22:30.5636199Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:29:40.7925782Z" + "lastModifiedAt": "2022-10-25T13:22:30.5636199Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:30:12 GMT", + "Date": "Tue, 25 Oct 2022 13:22:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8d58dd5-f974-4781-8525-056ff8ca0146", + "x-ms-correlation-request-id": "f655be04-87e6-46c0-b741-9db30c4803d2", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T083012Z:a8d58dd5-f974-4781-8525-056ff8ca0146", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132232Z:f655be04-87e6-46c0-b741-9db30c4803d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a", - "name": "ae4d50cb-aa66-4d50-9529-090afcdb821a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", "status": "Creating", - "startTime": "2022-09-19T08:29:41.060697Z", + "startTime": "2022-10-25T13:22:30.8979353Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:30:41 GMT", + "Date": "Tue, 25 Oct 2022 13:23:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1cd56b7-e245-420c-8d03-63b831c3beae", + "x-ms-correlation-request-id": "1c3d2051-89d6-475e-8351-65d6e1aeec86", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T083042Z:e1cd56b7-e245-420c-8d03-63b831c3beae", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132302Z:1c3d2051-89d6-475e-8351-65d6e1aeec86", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a", - "name": "ae4d50cb-aa66-4d50-9529-090afcdb821a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", "status": "Creating", - "startTime": "2022-09-19T08:29:41.060697Z", + "startTime": "2022-10-25T13:22:30.8979353Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:31:12 GMT", + "Date": "Tue, 25 Oct 2022 13:23:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe94d963-5187-4e5a-8dff-c153607064a6", + "x-ms-correlation-request-id": "e9551868-6050-41d5-9a72-b440715c5d2d", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T083112Z:fe94d963-5187-4e5a-8dff-c153607064a6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132332Z:e9551868-6050-41d5-9a72-b440715c5d2d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a", - "name": "ae4d50cb-aa66-4d50-9529-090afcdb821a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", "status": "Creating", - "startTime": "2022-09-19T08:29:41.060697Z", + "startTime": "2022-10-25T13:22:30.8979353Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:31:42 GMT", + "Date": "Tue, 25 Oct 2022 13:24:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b25b8498-f8cf-4970-8ce5-d8a6fe6e9224", + "x-ms-correlation-request-id": "2efd61b5-67c8-4106-a599-64be4640a295", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T083143Z:b25b8498-f8cf-4970-8ce5-d8a6fe6e9224", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132402Z:2efd61b5-67c8-4106-a599-64be4640a295", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a", - "name": "ae4d50cb-aa66-4d50-9529-090afcdb821a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", "status": "Creating", - "startTime": "2022-09-19T08:29:41.060697Z", + "startTime": "2022-10-25T13:22:30.8979353Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:32:12 GMT", + "Date": "Tue, 25 Oct 2022 13:24:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89b5c001-946c-4146-bba0-ff19dfb7558d", + "x-ms-correlation-request-id": "60abc448-51a2-45d5-a45c-85ba452ab703", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T083213Z:89b5c001-946c-4146-bba0-ff19dfb7558d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132433Z:60abc448-51a2-45d5-a45c-85ba452ab703", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a", - "name": "ae4d50cb-aa66-4d50-9529-090afcdb821a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", "status": "Creating", - "startTime": "2022-09-19T08:29:41.060697Z", + "startTime": "2022-10-25T13:22:30.8979353Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:32:43 GMT", + "Date": "Tue, 25 Oct 2022 13:25:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd9d9ade-92d7-41ba-bed6-393492d315be", + "x-ms-correlation-request-id": "75d382e6-fcb4-4c8d-bcae-f1f41e7f4493", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T083243Z:bd9d9ade-92d7-41ba-bed6-393492d315be", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132503Z:75d382e6-fcb4-4c8d-bcae-f1f41e7f4493", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a", - "name": "ae4d50cb-aa66-4d50-9529-090afcdb821a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", "status": "Creating", - "startTime": "2022-09-19T08:29:41.060697Z", + "startTime": "2022-10-25T13:22:30.8979353Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:33:13 GMT", + "Date": "Tue, 25 Oct 2022 13:25:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea85a82c-1ae2-4003-9c6f-5ee0a186faa0", + "x-ms-correlation-request-id": "c7a13497-3526-4913-9e80-d0981da769fd", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "FRANCESOUTH:20220919T083314Z:ea85a82c-1ae2-4003-9c6f-5ee0a186faa0", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132533Z:c7a13497-3526-4913-9e80-d0981da769fd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a", - "name": "ae4d50cb-aa66-4d50-9529-090afcdb821a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", "status": "Creating", - "startTime": "2022-09-19T08:29:41.060697Z", + "startTime": "2022-10-25T13:22:30.8979353Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:34:06 GMT", + "Date": "Tue, 25 Oct 2022 13:26:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1486,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01ced93a-a31d-48f9-8120-a4ed8d12fa5b", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083407Z:01ced93a-a31d-48f9-8120-a4ed8d12fa5b", + "x-ms-correlation-request-id": "9df0a7db-edfb-4faf-9766-33f4ed93e447", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132603Z:9df0a7db-edfb-4faf-9766-33f4ed93e447", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "status": "Creating", + "startTime": "2022-10-25T13:22:30.8979353Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:26:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "071386b7-8ddc-4139-b9d6-c29408cd7b23", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132634Z:071386b7-8ddc-4139-b9d6-c29408cd7b23", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "status": "Creating", + "startTime": "2022-10-25T13:22:30.8979353Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:27:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "26c85741-ab91-485b-bb8d-e17c4f7ad5fc", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132704Z:26c85741-ab91-485b-bb8d-e17c4f7ad5fc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "status": "Creating", + "startTime": "2022-10-25T13:22:30.8979353Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:27:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5d8eb8fb-081d-4dcc-b51e-481edfad18e9", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132734Z:5d8eb8fb-081d-4dcc-b51e-481edfad18e9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ae4d50cb-aa66-4d50-9529-090afcdb821a", - "name": "ae4d50cb-aa66-4d50-9529-090afcdb821a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be138f0f-b3fe-48e2-8a7e-d24a618f62d8", + "name": "be138f0f-b3fe-48e2-8a7e-d24a618f62d8", "status": "Succeeded", - "startTime": "2022-09-19T08:29:41.060697Z", - "endTime": "2022-09-19T08:33:48.1878978Z", + "startTime": "2022-10-25T13:22:30.8979353Z", + "endTime": "2022-10-25T13:27:11.1190565Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f" @@ -1509,7 +1630,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1638,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:34:06 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A33%3A48.178207Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:27:34 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A27%3A11.1065737Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1647,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b09fbda8-31ee-419d-b34e-889b15b13896", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083407Z:b09fbda8-31ee-419d-b34e-889b15b13896", + "x-ms-correlation-request-id": "3d7b8dff-4608-42bd-b60c-caf0defc513e", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132735Z:3d7b8dff-4608-42bd-b60c-caf0defc513e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f", "name": "sdk-py-tests-acc-1-cd95297f/sdk-py-tests-pool-1/sdk-py-tests-vol-3-cd95297f", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A33%3A48.178207Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A27%3A11.1065737Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:29:39.6211027Z" + "CreatedOnDate": "2022-10-25T13:22:29.2952074Z" }, "properties": { - "fileSystemId": "cc3be421-769d-913c-8730-eaff410d31e8", + "fileSystemId": "a8b00913-dbc9-9438-7716-9cc8187df00c", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-cd95297f", "usageThreshold": 107374182400, @@ -1569,7 +1690,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2f38bd67", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6632ad34", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1705,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "cc3be421-769d-913c-8730-eaff410d31e8", - "fileSystemId": "cc3be421-769d-913c-8730-eaff410d31e8", + "mountTargetId": "a8b00913-dbc9-9438-7716-9cc8187df00c", + "fileSystemId": "a8b00913-dbc9-9438-7716-9cc8187df00c", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1726,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:29:40.7925782Z", + "createdAt": "2022-10-25T13:22:30.5636199Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:29:40.7925782Z" + "lastModifiedAt": "2022-10-25T13:22:30.5636199Z" } } }, @@ -1619,7 +1740,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1627,8 +1748,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:34:07 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A33%3A48.178207Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:27:34 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A27%3A11.1065737Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1636,22 +1757,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8cfe8f59-d9c4-4106-9d1a-6c9c3decc8a8", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083408Z:8cfe8f59-d9c4-4106-9d1a-6c9c3decc8a8", + "x-ms-correlation-request-id": "aceae661-75ab-49ba-a369-1e8f2c3167ab", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132735Z:aceae661-75ab-49ba-a369-1e8f2c3167ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f", "name": "sdk-py-tests-acc-1-cd95297f/sdk-py-tests-pool-1/sdk-py-tests-vol-3-cd95297f", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A33%3A48.178207Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A27%3A11.1065737Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:29:39.6211027Z" + "CreatedOnDate": "2022-10-25T13:22:29.2952074Z" }, "properties": { - "fileSystemId": "cc3be421-769d-913c-8730-eaff410d31e8", + "fileSystemId": "a8b00913-dbc9-9438-7716-9cc8187df00c", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-cd95297f", "usageThreshold": 107374182400, @@ -1679,7 +1800,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2f38bd67", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6632ad34", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1694,8 +1815,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "cc3be421-769d-913c-8730-eaff410d31e8", - "fileSystemId": "cc3be421-769d-913c-8730-eaff410d31e8", + "mountTargetId": "a8b00913-dbc9-9438-7716-9cc8187df00c", + "fileSystemId": "a8b00913-dbc9-9438-7716-9cc8187df00c", "ipAddress": "10.0.0.4" } ], @@ -1715,10 +1836,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:29:40.7925782Z", + "createdAt": "2022-10-25T13:22:30.5636199Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:29:40.7925782Z" + "lastModifiedAt": "2022-10-25T13:22:30.5636199Z" } } }, @@ -1731,27 +1852,27 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e40776c9-0305-4176-ac43-785cdcafbd95?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25a3eca7-67ad-43ec-9d70-9d5690f471e6?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "522", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:34:08 GMT", + "Date": "Tue, 25 Oct 2022 13:27:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e40776c9-0305-4176-ac43-785cdcafbd95?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25a3eca7-67ad-43ec-9d70-9d5690f471e6?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc5c54d0-3728-419f-bf57-66cd35cb5fe4", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083409Z:bc5c54d0-3728-419f-bf57-66cd35cb5fe4", + "x-ms-correlation-request-id": "0403a406-59b2-4c7f-8466-7259f19f7bc3", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132736Z:0403a406-59b2-4c7f-8466-7259f19f7bc3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1765,13 +1886,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e40776c9-0305-4176-ac43-785cdcafbd95?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25a3eca7-67ad-43ec-9d70-9d5690f471e6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1779,7 +1900,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:34:39 GMT", + "Date": "Tue, 25 Oct 2022 13:27:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1787,17 +1908,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64de8381-d51d-462b-8d80-1a05ea116e26", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083439Z:64de8381-d51d-462b-8d80-1a05ea116e26", + "x-ms-correlation-request-id": "bca22660-fa3b-4c5e-870b-87fc8ce27cf0", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132736Z:bca22660-fa3b-4c5e-870b-87fc8ce27cf0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e40776c9-0305-4176-ac43-785cdcafbd95", - "name": "e40776c9-0305-4176-ac43-785cdcafbd95", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25a3eca7-67ad-43ec-9d70-9d5690f471e6", + "name": "25a3eca7-67ad-43ec-9d70-9d5690f471e6", + "status": "Creating", + "startTime": "2022-10-25T13:27:36.0611468Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f/snapshots/sdk-py-tests-snapshot-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25a3eca7-67ad-43ec-9d70-9d5690f471e6?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:28:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "803b50df-88fd-472e-a4ae-086b254c8fba", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132806Z:803b50df-88fd-472e-a4ae-086b254c8fba", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25a3eca7-67ad-43ec-9d70-9d5690f471e6", + "name": "25a3eca7-67ad-43ec-9d70-9d5690f471e6", "status": "Succeeded", - "startTime": "2022-09-19T08:34:08.8485572Z", - "endTime": "2022-09-19T08:34:11.4939768Z", + "startTime": "2022-10-25T13:27:36.0611468Z", + "endTime": "2022-10-25T13:27:42.3966431Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f/snapshots/sdk-py-tests-snapshot-1" @@ -1805,41 +1966,41 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e40776c9-0305-4176-ac43-785cdcafbd95?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25a3eca7-67ad-43ec-9d70-9d5690f471e6?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "638", + "Content-Length": "639", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:34:39 GMT", + "Date": "Tue, 25 Oct 2022 13:28:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34338295-b4e3-4ae5-a8e1-18b541fbd5ce", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083439Z:34338295-b4e3-4ae5-a8e1-18b541fbd5ce", + "x-ms-correlation-request-id": "583b8b4c-b1bb-4c46-b67e-c99ac12f9f64", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132807Z:583b8b4c-b1bb-4c46-b67e-c99ac12f9f64", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f/snapshots/sdk-py-tests-snapshot-1", "name": "sdk-py-tests-acc-1-cd95297f/sdk-py-tests-pool-1/sdk-py-tests-vol-3-cd95297f/sdk-py-tests-snapshot-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots", - "etag": "9/19/2022 8:34:11 AM", + "etag": "10/25/2022 1:27:42 PM", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "snapshotId": "8bd0018a-b659-1e99-239b-948579b14bd9", - "created": "2022-09-19T08:34:09Z" + "snapshotId": "e152c928-d6f1-be7a-c79b-d19411e31b6c", + "created": "2022-10-25T13:27:36Z" } } }, @@ -1850,7 +2011,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1858,7 +2019,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:34:40 GMT", + "Date": "Tue, 25 Oct 2022 13:28:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1866,9 +2027,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89c77e34-3a02-47d8-b23c-136dda212ddf", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083440Z:89c77e34-3a02-47d8-b23c-136dda212ddf", + "x-ms-correlation-request-id": "9f0f984d-85fa-408f-949f-4f2c1ac4546b", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132808Z:9f0f984d-85fa-408f-949f-4f2c1ac4546b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1880,8 +2041,8 @@ "location": "westus2", "properties": { "provisioningState": "Succeeded", - "snapshotId": "8bd0018a-b659-1e99-239b-948579b14bd9", - "created": "2022-09-19T08:34:09Z" + "snapshotId": "e152c928-d6f1-be7a-c79b-d19411e31b6c", + "created": "2022-10-25T13:27:36Z" } } ] @@ -1895,36 +2056,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c6a22533-1094-4294-88d0-64ea11031f1c?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7a02db-501f-4a7d-b2eb-f9dba9cbdcfd?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 08:34:41 GMT", + "Date": "Tue, 25 Oct 2022 13:28:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c6a22533-1094-4294-88d0-64ea11031f1c?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7a02db-501f-4a7d-b2eb-f9dba9cbdcfd?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6caff08-e033-4732-be68-3d95d43672e3", + "x-ms-correlation-request-id": "7b135e6f-217b-45ae-aaea-4008b1b18a5d", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083441Z:e6caff08-e033-4732-be68-3d95d43672e3", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132808Z:7b135e6f-217b-45ae-aaea-4008b1b18a5d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c6a22533-1094-4294-88d0-64ea11031f1c?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7a02db-501f-4a7d-b2eb-f9dba9cbdcfd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1932,7 +2093,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:35:11 GMT", + "Date": "Tue, 25 Oct 2022 13:28:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1940,17 +2101,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "662a7393-aae4-4114-8f02-432498fbadd3", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083511Z:662a7393-aae4-4114-8f02-432498fbadd3", + "x-ms-correlation-request-id": "d8b8385e-c6ec-4561-b81b-cbe51b78138a", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132809Z:d8b8385e-c6ec-4561-b81b-cbe51b78138a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c6a22533-1094-4294-88d0-64ea11031f1c", - "name": "c6a22533-1094-4294-88d0-64ea11031f1c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7a02db-501f-4a7d-b2eb-f9dba9cbdcfd", + "name": "cc7a02db-501f-4a7d-b2eb-f9dba9cbdcfd", + "status": "Deleting", + "startTime": "2022-10-25T13:28:08.7128407Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f/snapshots/sdk-py-tests-snapshot-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7a02db-501f-4a7d-b2eb-f9dba9cbdcfd?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:28:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fd7b7432-ccf5-4089-bd74-5b3b17a42d05", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132839Z:fd7b7432-ccf5-4089-bd74-5b3b17a42d05", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7a02db-501f-4a7d-b2eb-f9dba9cbdcfd", + "name": "cc7a02db-501f-4a7d-b2eb-f9dba9cbdcfd", "status": "Succeeded", - "startTime": "2022-09-19T08:34:41.0588362Z", - "endTime": "2022-09-19T08:34:43.6868243Z", + "startTime": "2022-10-25T13:28:08.7128407Z", + "endTime": "2022-10-25T13:28:15.8578071Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f/snapshots/sdk-py-tests-snapshot-1" @@ -1958,13 +2159,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c6a22533-1094-4294-88d0-64ea11031f1c?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc7a02db-501f-4a7d-b2eb-f9dba9cbdcfd?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1972,7 +2173,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:35:11 GMT", + "Date": "Tue, 25 Oct 2022 13:28:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1980,9 +2181,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd581df9-42d5-47dd-b1f6-eeac31f9d36a", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083511Z:dd581df9-42d5-47dd-b1f6-eeac31f9d36a", + "x-ms-correlation-request-id": "2b350136-5bab-4ec8-bbc9-ef333ce281f4", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132840Z:2b350136-5bab-4ec8-bbc9-ef333ce281f4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1999,7 +2200,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2007,15 +2208,15 @@ "Cache-Control": "no-cache", "Content-Length": "326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:35:32 GMT", + "Date": "Tue, 25 Oct 2022 13:29:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c948a8eb-04bb-4102-b9f3-0166e88ec3ce", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083533Z:c948a8eb-04bb-4102-b9f3-0166e88ec3ce", + "x-ms-correlation-request-id": "557c1919-50a9-45b7-a976-646371f1ab01", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132901Z:557c1919-50a9-45b7-a976-646371f1ab01", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2032,7 +2233,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2040,7 +2241,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:35:33 GMT", + "Date": "Tue, 25 Oct 2022 13:29:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2048,9 +2249,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a87e930b-0ed3-46bd-9804-dbd5c915b84b", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083533Z:a87e930b-0ed3-46bd-9804-dbd5c915b84b", + "x-ms-correlation-request-id": "fad74a9a-8dd1-4b22-82bb-895044b2ac09", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132903Z:fad74a9a-8dd1-4b22-82bb-895044b2ac09", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2065,36 +2266,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 08:35:33 GMT", + "Date": "Tue, 25 Oct 2022 13:29:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd2a0fb0-45eb-43f1-b587-f2351f4b6475", + "x-ms-correlation-request-id": "9978e60e-504c-4d5c-aeed-f99c5b69f30a", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083534Z:bd2a0fb0-45eb-43f1-b587-f2351f4b6475", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132904Z:9978e60e-504c-4d5c-aeed-f99c5b69f30a", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2102,7 +2303,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:36:03 GMT", + "Date": "Tue, 25 Oct 2022 13:29:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2110,16 +2311,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72fdd78d-11e4-4f17-9100-5e7f6f97e1f6", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083604Z:72fdd78d-11e4-4f17-9100-5e7f6f97e1f6", + "x-ms-correlation-request-id": "8cba4151-ea56-4d1f-87df-587ce8c6dd59", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132904Z:8cba4151-ea56-4d1f-87df-587ce8c6dd59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd", - "name": "3e59304a-ac07-45ca-b803-0900f767d4cd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df", + "name": "e819091d-1d50-43e7-aaba-42246a4d71df", "status": "Deleting", - "startTime": "2022-09-19T08:35:34.170658Z", + "startTime": "2022-10-25T13:29:03.8962425Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2128,13 +2329,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2142,7 +2343,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:36:34 GMT", + "Date": "Tue, 25 Oct 2022 13:29:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2150,16 +2351,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fdfd433-9e6f-4aff-905b-669a8dce4372", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083635Z:0fdfd433-9e6f-4aff-905b-669a8dce4372", + "x-ms-correlation-request-id": "2bec60e3-ac04-4d12-8b62-5f765c3f5c47", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132934Z:2bec60e3-ac04-4d12-8b62-5f765c3f5c47", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd", - "name": "3e59304a-ac07-45ca-b803-0900f767d4cd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df", + "name": "e819091d-1d50-43e7-aaba-42246a4d71df", "status": "Deleting", - "startTime": "2022-09-19T08:35:34.170658Z", + "startTime": "2022-10-25T13:29:03.8962425Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2168,13 +2369,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2182,7 +2383,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:37:05 GMT", + "Date": "Tue, 25 Oct 2022 13:30:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2190,16 +2391,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8917eb4-425e-40bb-b028-6430897a9d78", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083705Z:b8917eb4-425e-40bb-b028-6430897a9d78", + "x-ms-correlation-request-id": "8cd43899-785c-466b-b389-cc66685dbe12", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133004Z:8cd43899-785c-466b-b389-cc66685dbe12", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd", - "name": "3e59304a-ac07-45ca-b803-0900f767d4cd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df", + "name": "e819091d-1d50-43e7-aaba-42246a4d71df", "status": "Deleting", - "startTime": "2022-09-19T08:35:34.170658Z", + "startTime": "2022-10-25T13:29:03.8962425Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2208,13 +2409,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2222,7 +2423,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:37:35 GMT", + "Date": "Tue, 25 Oct 2022 13:30:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2230,17 +2431,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b626d861-62e9-4791-8058-878e1687a641", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083735Z:b626d861-62e9-4791-8058-878e1687a641", + "x-ms-correlation-request-id": "a32d6ca7-a952-435f-8b51-075d9175bb15", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133035Z:a32d6ca7-a952-435f-8b51-075d9175bb15", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd", - "name": "3e59304a-ac07-45ca-b803-0900f767d4cd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df", + "name": "e819091d-1d50-43e7-aaba-42246a4d71df", + "status": "Deleting", + "startTime": "2022-10-25T13:29:03.8962425Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:31:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "856a0432-00cc-4f46-97c0-87d3621841c5", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133105Z:856a0432-00cc-4f46-97c0-87d3621841c5", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df", + "name": "e819091d-1d50-43e7-aaba-42246a4d71df", + "status": "Deleting", + "startTime": "2022-10-25T13:29:03.8962425Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:31:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8216892f-964d-4522-83f0-0676d59a5d5d", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133135Z:8216892f-964d-4522-83f0-0676d59a5d5d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df", + "name": "e819091d-1d50-43e7-aaba-42246a4d71df", + "status": "Deleting", + "startTime": "2022-10-25T13:29:03.8962425Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:32:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "eba5d48d-31cc-4338-b56b-08638b0caaab", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133205Z:eba5d48d-31cc-4338-b56b-08638b0caaab", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df", + "name": "e819091d-1d50-43e7-aaba-42246a4d71df", "status": "Succeeded", - "startTime": "2022-09-19T08:35:34.170658Z", - "endTime": "2022-09-19T08:37:17.5039363Z", + "startTime": "2022-10-25T13:29:03.8962425Z", + "endTime": "2022-10-25T13:31:53.8414667Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f" @@ -2248,13 +2569,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e59304a-ac07-45ca-b803-0900f767d4cd?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e819091d-1d50-43e7-aaba-42246a4d71df?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2262,7 +2583,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:37:35 GMT", + "Date": "Tue, 25 Oct 2022 13:32:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2270,22 +2591,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffc2dff7-519b-4d01-b494-ec27caff439a", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T083735Z:ffc2dff7-519b-4d01-b494-ec27caff439a", + "x-ms-correlation-request-id": "33a023c6-40f7-46df-9d7f-aa7b7d8a7c88", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133206Z:33a023c6-40f7-46df-9d7f-aa7b7d8a7c88", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f", "name": "sdk-py-tests-acc-1-cd95297f/sdk-py-tests-pool-1/sdk-py-tests-vol-3-cd95297f", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A37%3A08.4396575Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A31%3A36.735127Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:29:39.6211027Z" + "CreatedOnDate": "2022-10-25T13:22:29.2952074Z" }, "properties": { - "fileSystemId": "cc3be421-769d-913c-8730-eaff410d31e8", + "fileSystemId": "a8b00913-dbc9-9438-7716-9cc8187df00c", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-cd95297f", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2316,19 +2637,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2f38bd67", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6632ad34", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-cd95297f", - "poolId": "6dc5b817-2b86-af51-396a-aa575f3a9a45", + "poolId": "e37243bb-beaf-8548-09b8-6a9fe2bc264b", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "cc3be421-769d-913c-8730-eaff410d31e8", - "fileSystemId": "cc3be421-769d-913c-8730-eaff410d31e8", + "mountTargetId": "a8b00913-dbc9-9438-7716-9cc8187df00c", + "fileSystemId": "a8b00913-dbc9-9438-7716-9cc8187df00c", "startIp": "", "endIp": "", "gateway": "", @@ -2360,10 +2681,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:29:40.7925782Z", + "createdAt": "2022-10-25T13:22:30.5636199Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:29:40.7925782Z" + "lastModifiedAt": "2022-10-25T13:22:30.5636199Z" } } }, @@ -2374,7 +2695,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2382,14 +2703,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:40:57 GMT", + "Date": "Tue, 25 Oct 2022 13:35:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1d0562f-b4d3-4d2c-898b-f9ae88a0b2f4", + "x-ms-correlation-request-id": "5bdaf58d-5b10-44c4-a328-e2da5d0477c8", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084057Z:e1d0562f-b4d3-4d2c-898b-f9ae88a0b2f4" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133527Z:5bdaf58d-5b10-44c4-a328-e2da5d0477c8" }, "ResponseBody": { "error": { @@ -2406,36 +2727,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cd5e2d-f378-49d2-ba3b-77bb66146e37?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c13e3f-fa04-48e7-80a1-98635b885088?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 08:41:09 GMT", + "Date": "Tue, 25 Oct 2022 13:35:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cd5e2d-f378-49d2-ba3b-77bb66146e37?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c13e3f-fa04-48e7-80a1-98635b885088?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eda5f642-4b4e-4684-af86-e73ab365fe89", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084110Z:eda5f642-4b4e-4684-af86-e73ab365fe89", + "x-ms-correlation-request-id": "ee18b437-f7b5-484c-ad38-ac1d97fa24c7", + "x-ms-ratelimit-remaining-subscription-deletes": "14956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133540Z:ee18b437-f7b5-484c-ad38-ac1d97fa24c7", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cd5e2d-f378-49d2-ba3b-77bb66146e37?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c13e3f-fa04-48e7-80a1-98635b885088?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2443,7 +2764,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:41:40 GMT", + "Date": "Tue, 25 Oct 2022 13:35:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2451,17 +2772,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e32f6f17-fcb3-482b-a4d9-a07e790e574e", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084140Z:e32f6f17-fcb3-482b-a4d9-a07e790e574e", + "x-ms-correlation-request-id": "6fbe3145-4c48-4cff-9a85-0b98035231df", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133540Z:6fbe3145-4c48-4cff-9a85-0b98035231df", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cd5e2d-f378-49d2-ba3b-77bb66146e37", - "name": "27cd5e2d-f378-49d2-ba3b-77bb66146e37", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c13e3f-fa04-48e7-80a1-98635b885088", + "name": "f3c13e3f-fa04-48e7-80a1-98635b885088", + "status": "Deleting", + "startTime": "2022-10-25T13:35:40.1219705Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c13e3f-fa04-48e7-80a1-98635b885088?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:36:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c3564748-f5d3-44d9-9b62-c292ff76f95b", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133610Z:c3564748-f5d3-44d9-9b62-c292ff76f95b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c13e3f-fa04-48e7-80a1-98635b885088", + "name": "f3c13e3f-fa04-48e7-80a1-98635b885088", "status": "Succeeded", - "startTime": "2022-09-19T08:41:09.9522733Z", - "endTime": "2022-09-19T08:41:10.9723392Z", + "startTime": "2022-10-25T13:35:40.1219705Z", + "endTime": "2022-10-25T13:35:41.4657314Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1" @@ -2469,13 +2830,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27cd5e2d-f378-49d2-ba3b-77bb66146e37?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f3c13e3f-fa04-48e7-80a1-98635b885088?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2483,7 +2844,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:41:40 GMT", + "Date": "Tue, 25 Oct 2022 13:36:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2491,22 +2852,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b546b2e-9a46-4569-b64a-d40373947b1a", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084140Z:4b546b2e-9a46-4569-b64a-d40373947b1a", + "x-ms-correlation-request-id": "c37c95ba-8b27-41c6-aef2-41363b02882b", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133610Z:c37c95ba-8b27-41c6-aef2-41363b02882b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-cd95297f/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A41%3A09.9596007Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A35%3A40.1142474Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:29:06.4185237Z" + "CreatedOnDate": "2022-10-25T13:22:26.0149338Z" }, "properties": { - "poolId": "6dc5b817-2b86-af51-396a-aa575f3a9a45", + "poolId": "e37243bb-beaf-8548-09b8-6a9fe2bc264b", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f/capacityPools/sdk-py-tests-pool-1", @@ -2520,10 +2881,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:29:07.5485707Z", + "createdAt": "2022-10-25T13:22:27.1388248Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:29:07.5485707Z" + "lastModifiedAt": "2022-10-25T13:22:27.1388248Z" } } }, @@ -2535,20 +2896,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 08:41:50 GMT", + "Date": "Tue, 25 Oct 2022 13:36:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d58aaab-3342-4b62-826e-a86510bea386", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084150Z:8d58aaab-3342-4b62-826e-a86510bea386" + "x-ms-correlation-request-id": "b607ecfe-aec9-4735-9211-c84d05c8efc3", + "x-ms-ratelimit-remaining-subscription-deletes": "14955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133621Z:b607ecfe-aec9-4735-9211-c84d05c8efc3" }, "ResponseBody": null }, @@ -2560,20 +2921,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 08:42:01 GMT", + "Date": "Tue, 25 Oct 2022 13:36:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "411ab463-1376-4b04-8296-836235462193", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084201Z:411ab463-1376-4b04-8296-836235462193" + "x-ms-correlation-request-id": "a55e4093-364d-430c-a11b-906af34b86f6", + "x-ms-ratelimit-remaining-subscription-deletes": "14954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133631Z:a55e4093-364d-430c-a11b-906af34b86f6" }, "ResponseBody": null }, @@ -2585,20 +2946,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 08:42:11 GMT", + "Date": "Tue, 25 Oct 2022 13:36:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54b85e69-0cb1-4f8c-a17d-9d30399daf3e", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084211Z:54b85e69-0cb1-4f8c-a17d-9d30399daf3e" + "x-ms-correlation-request-id": "6b779837-6160-47ad-b211-cc9707f0b1f6", + "x-ms-ratelimit-remaining-subscription-deletes": "14953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133641Z:6b779837-6160-47ad-b211-cc9707f0b1f6" }, "ResponseBody": null }, @@ -2610,20 +2971,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 08:42:21 GMT", + "Date": "Tue, 25 Oct 2022 13:36:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "140ab203-1373-4bc9-b38c-53e7d72c4734", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084221Z:140ab203-1373-4bc9-b38c-53e7d72c4734" + "x-ms-correlation-request-id": "abd3d36e-4d24-4daf-ae86-3aaf0bfaf7c8", + "x-ms-ratelimit-remaining-subscription-deletes": "14952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133652Z:abd3d36e-4d24-4daf-ae86-3aaf0bfaf7c8" }, "ResponseBody": null }, @@ -2634,7 +2995,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2642,14 +3003,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:42:31 GMT", + "Date": "Tue, 25 Oct 2022 13:37:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3598e3a-ce4d-4366-b785-1241b7f7b6ab", + "x-ms-correlation-request-id": "e0d629a6-9d99-420d-ba73-69993adb48fc", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084232Z:b3598e3a-ce4d-4366-b785-1241b7f7b6ab" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133702Z:e0d629a6-9d99-420d-ba73-69993adb48fc" }, "ResponseBody": { "error": { @@ -2666,36 +3027,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/422e10df-c26a-409d-b07f-5b2c6ece03ce?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8063109c-9f7a-4fc3-9015-3cf5eacc8809?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 08:42:32 GMT", + "Date": "Tue, 25 Oct 2022 13:37:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/422e10df-c26a-409d-b07f-5b2c6ece03ce?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8063109c-9f7a-4fc3-9015-3cf5eacc8809?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2cb7292-d886-46d1-85e0-30a2a567d268", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084233Z:d2cb7292-d886-46d1-85e0-30a2a567d268", + "x-ms-correlation-request-id": "c3c2aa83-8b45-40ed-b2dd-8a598a4c89a0", + "x-ms-ratelimit-remaining-subscription-deletes": "14951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133703Z:c3c2aa83-8b45-40ed-b2dd-8a598a4c89a0", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/422e10df-c26a-409d-b07f-5b2c6ece03ce?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8063109c-9f7a-4fc3-9015-3cf5eacc8809?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2703,7 +3064,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:43:02 GMT", + "Date": "Tue, 25 Oct 2022 13:37:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2711,17 +3072,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce46afb1-d9c1-4b73-bcda-ed3a673d30d7", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084303Z:ce46afb1-d9c1-4b73-bcda-ed3a673d30d7", + "x-ms-correlation-request-id": "429095d9-78a9-4e9f-927d-09b04adb097d", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133703Z:429095d9-78a9-4e9f-927d-09b04adb097d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/422e10df-c26a-409d-b07f-5b2c6ece03ce", - "name": "422e10df-c26a-409d-b07f-5b2c6ece03ce", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8063109c-9f7a-4fc3-9015-3cf5eacc8809", + "name": "8063109c-9f7a-4fc3-9015-3cf5eacc8809", "status": "Succeeded", - "startTime": "2022-09-19T08:42:33.3434797Z", - "endTime": "2022-09-19T08:42:33.3747863Z", + "startTime": "2022-10-25T13:37:03.5816004Z", + "endTime": "2022-10-25T13:37:03.6441619Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f" @@ -2729,13 +3090,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/422e10df-c26a-409d-b07f-5b2c6ece03ce?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8063109c-9f7a-4fc3-9015-3cf5eacc8809?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2743,7 +3104,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:43:03 GMT", + "Date": "Tue, 25 Oct 2022 13:37:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2751,19 +3112,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9537e831-45cc-4bf4-81d9-5fcd72f2550e", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084303Z:9537e831-45cc-4bf4-81d9-5fcd72f2550e", + "x-ms-correlation-request-id": "2997f999-e5ba-416a-a3d9-a22d7539dafe", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133704Z:2997f999-e5ba-416a-a3d9-a22d7539dafe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f", "name": "sdk-py-tests-acc-1-cd95297f", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A42%3A33.3476831Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A03.5688363Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:28:32.1906051Z" + "CreatedOnDate": "2022-10-25T13:22:21.8406479Z" }, "properties": { "encryption": { @@ -2774,10 +3135,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:28:33.1822987Z", + "createdAt": "2022-10-25T13:22:22.6668777Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:28:33.1822987Z" + "lastModifiedAt": "2022-10-25T13:22:22.6668777Z" } } }, @@ -2788,50 +3149,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:43:03 GMT", + "Date": "Tue, 25 Oct 2022 13:37:03 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3543885-3c25-49d1-87fd-6fe7d1bce12e", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084304Z:c3543885-3c25-49d1-87fd-6fe7d1bce12e" + "x-ms-correlation-request-id": "78e2a330-99cc-4ab6-8d11-2b1c0bd28d32", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133704Z:78e2a330-99cc-4ab6-8d11-2b1c0bd28d32", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-cd95297f\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-cd95297f?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4b877dc8-6561-44b8-acfe-37c9bf713d9c?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1139f91d-cda4-4bec-9b4c-42414411ff20?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 08:43:04 GMT", + "Date": "Tue, 25 Oct 2022 13:37:04 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/4b877dc8-6561-44b8-acfe-37c9bf713d9c?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/1139f91d-cda4-4bec-9b4c-42414411ff20?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -2840,10 +3203,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "98d9cb27-6a37-4ec4-b6eb-992e5a3b220a", - "x-ms-correlation-request-id": "8a366b69-4014-42f8-a5ed-7069dad7ea3a", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084304Z:8a366b69-4014-42f8-a5ed-7069dad7ea3a" + "x-ms-arm-service-request-id": "626d3fbb-2692-4d0b-8b5c-3a42db31fd0f", + "x-ms-correlation-request-id": "ab3e8102-8284-40da-95af-787085e28448", + "x-ms-ratelimit-remaining-subscription-deletes": "14950", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133705Z:ab3e8102-8284-40da-95af-787085e28448" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_get_snapshot_by_name.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_get_snapshot_by_name.json index 4865859a0ab6..f2adee42e64f 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_get_snapshot_by_name.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_get_snapshot_by_name.json @@ -1,5 +1,38 @@ { "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/9c8ef7b1-61f9-4192-98a7-681b58b8f870?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9c8ef7b1-61f9-4192-98a7-681b58b8f870?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:53:34 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/9c8ef7b1-61f9-4192-98a7-681b58b8f870?api-version=2022-05-01", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1b592977-6f92-4bf2-912a-1fdcf6359310", + "x-ms-correlation-request-id": "3624b877-7edd-4150-acdf-a5b219aa6300", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135334Z:5d47624f-9219-44d0-b583-7632c604959c" + }, + "ResponseBody": null + }, { "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration", "RequestMethod": "GET", @@ -7,7 +40,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +50,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:14 GMT", + "Date": "Tue, 25 Oct 2022 13:53:34 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +134,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +144,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:15 GMT", + "Date": "Tue, 25 Oct 2022 13:53:34 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +205,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "9cb2ab26-b871-4ec2-8b69-fe44429a8842", + "client-request-id": "938b3510-776d-438d-97f3-2fc7c45536c5", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "9cb2ab26-b871-4ec2-8b69-fe44429a8842", + "client-request-id": "938b3510-776d-438d-97f3-2fc7c45536c5", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:15 GMT", + "Date": "Tue, 25 Oct 2022 13:53:34 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +234,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +246,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +254,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +269,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/18682851-9d47-4846-bcda-98577cad5965?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/063028a2-d924-4b11-8467-58d5ce84529a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:20 GMT", + "Date": "Tue, 25 Oct 2022 13:53:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +283,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0e1dc42a-a538-4e94-a050-65820f8442e8", - "x-ms-correlation-request-id": "e141d369-f147-4472-8ee6-88a342213aeb", + "x-ms-arm-service-request-id": "11c574c5-a52b-4ebf-9aed-c98712a3f093", + "x-ms-correlation-request-id": "4844bef6-b795-4535-94c1-db3b1eeab2cb", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090221Z:e141d369-f147-4472-8ee6-88a342213aeb" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135340Z:4844bef6-b795-4535-94c1-db3b1eeab2cb" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-7b9b28b3", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3", - "etag": "W/\u0022c22d6b83-b588-43eb-aa59-46713ecc75bf\u0022", + "etag": "W/\u002258707e00-8d3d-492a-80ea-c3af1c27870f\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:02:16.4941177Z" + "CreatedOnDate": "2022-10-25T13:53:36.2959054Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "1306cfe9-e375-4618-aa92-a7d87fc45324", + "resourceGuid": "5a32a551-2b00-4a62-84a0-f39d7adb9f83", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +312,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/18682851-9d47-4846-bcda-98577cad5965?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/063028a2-d924-4b11-8467-58d5ce84529a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +326,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:24 GMT", + "Date": "Tue, 25 Oct 2022 13:53:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +337,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1d4c4006-3e2a-48a4-8ed8-737118890777", - "x-ms-correlation-request-id": "20e1c950-5d0c-45e5-8987-fe22cb5615a5", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090224Z:20e1c950-5d0c-45e5-8987-fe22cb5615a5" + "x-ms-arm-service-request-id": "537a4889-e1bc-4af1-8468-ee0317c7459b", + "x-ms-correlation-request-id": "a79cb27c-8b6b-4f01-98a3-20db9a063d79", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135340Z:a79cb27c-8b6b-4f01-98a3-20db9a063d79" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +361,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:24 GMT", - "ETag": "W/\u002258df30c0-f201-46ac-b840-60475ea11b38\u0022", + "Date": "Tue, 25 Oct 2022 13:53:40 GMT", + "ETag": "W/\u00228abec03c-f5d2-4f26-b891-e2a2b1e57802\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +373,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c304f574-4975-4a3c-95a1-7bb9b28524b7", - "x-ms-correlation-request-id": "e2d89fd8-783d-42a7-8e08-9f933eee0684", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090225Z:e2d89fd8-783d-42a7-8e08-9f933eee0684" + "x-ms-arm-service-request-id": "6d6c9aec-a48c-4db7-bef1-7911466f1342", + "x-ms-correlation-request-id": "52b88631-4284-4554-8b8f-cb46ff07237d", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135341Z:52b88631-4284-4554-8b8f-cb46ff07237d" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-7b9b28b3", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3", - "etag": "W/\u002258df30c0-f201-46ac-b840-60475ea11b38\u0022", + "etag": "W/\u00228abec03c-f5d2-4f26-b891-e2a2b1e57802\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:02:16.4941177Z" + "CreatedOnDate": "2022-10-25T13:53:36.2959054Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "1306cfe9-e375-4618-aa92-a7d87fc45324", + "resourceGuid": "5a32a551-2b00-4a62-84a0-f39d7adb9f83", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +402,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +410,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +427,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/04528bc2-2986-4dee-b33c-c57bb85d6bb4?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7b242edc-6fae-489f-ad86-9a8a512a1e48?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:25 GMT", + "Date": "Tue, 25 Oct 2022 13:53:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +442,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9917be97-2e83-4879-a80b-19782d409274", - "x-ms-correlation-request-id": "313fc7b2-8720-4876-8dd3-f3e3c06c418f", + "x-ms-arm-service-request-id": "f957113e-9202-474a-80dc-a58f4e1361ee", + "x-ms-correlation-request-id": "e8c8bfaf-1ed8-4ce4-ba26-6d0635cc6114", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090226Z:313fc7b2-8720-4876-8dd3-f3e3c06c418f" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135342Z:e8c8bfaf-1ed8-4ce4-ba26-6d0635cc6114" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default", - "etag": "W/\u00227a1ee66e-9c3f-4da4-8773-316d36a9616b\u0022", + "etag": "W/\u00228931f445-188f-4b43-ae22-b7fabd9bd103\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +458,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00227a1ee66e-9c3f-4da4-8773-316d36a9616b\u0022", + "etag": "W/\u00228931f445-188f-4b43-ae22-b7fabd9bd103\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +478,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/04528bc2-2986-4dee-b33c-c57bb85d6bb4?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7b242edc-6fae-489f-ad86-9a8a512a1e48?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +492,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:29 GMT", + "Date": "Tue, 25 Oct 2022 13:53:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +503,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ac031718-da75-4aec-8725-95be4793c912", - "x-ms-correlation-request-id": "49edee34-5545-412f-9b9c-1249b42814a5", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090229Z:49edee34-5545-412f-9b9c-1249b42814a5" + "x-ms-arm-service-request-id": "9682f7d5-daf2-4e12-9fa3-eccd3dd4ad33", + "x-ms-correlation-request-id": "3cad3cb8-736a-4b7f-9733-b14c3a4bd392", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135342Z:3cad3cb8-736a-4b7f-9733-b14c3a4bd392" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +527,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:30 GMT", - "ETag": "W/\u00226b2eb1cd-6ba3-4201-b083-e0e08be207b0\u0022", + "Date": "Tue, 25 Oct 2022 13:53:42 GMT", + "ETag": "W/\u002280e304ed-a669-4700-86e4-9acd98ad8769\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +539,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "5d7b75c8-cc28-401f-9dd3-af3b629f0835", - "x-ms-correlation-request-id": "407c5ba9-c9cc-4cc5-8875-c2a6e22d90b3", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090230Z:407c5ba9-c9cc-4cc5-8875-c2a6e22d90b3" + "x-ms-arm-service-request-id": "fff4b217-6313-45bb-8f59-d1520c455f5c", + "x-ms-correlation-request-id": "492b2044-bd1c-411e-83a6-dd6bf876e034", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135342Z:492b2044-bd1c-411e-83a6-dd6bf876e034" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default", - "etag": "W/\u00226b2eb1cd-6ba3-4201-b083-e0e08be207b0\u0022", + "etag": "W/\u002280e304ed-a669-4700-86e4-9acd98ad8769\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +555,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00226b2eb1cd-6ba3-4201-b083-e0e08be207b0\u0022", + "etag": "W/\u002280e304ed-a669-4700-86e4-9acd98ad8769\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +581,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +591,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:30 GMT", + "Date": "Tue, 25 Oct 2022 13:53:42 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +675,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +685,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:30 GMT", + "Date": "Tue, 25 Oct 2022 13:53:42 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +746,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "ae9b5342-692d-4751-83bd-eee9e382cbc7", + "client-request-id": "847dea76-8b73-4945-882e-9743ac057430", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "ae9b5342-692d-4751-83bd-eee9e382cbc7", + "client-request-id": "847dea76-8b73-4945-882e-9743ac057430", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:30 GMT", + "Date": "Tue, 25 Oct 2022 13:53:42 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +775,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +795,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/127597c3-eed4-4ffd-a018-553a7b1ae223?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8bf32bec-b833-42bb-8abb-b541bbd1367d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:35 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A02%3A34.3004733Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:53:46 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A45.6423779Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23d02351-4059-4323-8a27-052d7a028d42", + "x-ms-correlation-request-id": "b7d36649-7796-4aff-b016-835deab0f22f", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090235Z:23d02351-4059-4323-8a27-052d7a028d42", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135346Z:b7d36649-7796-4aff-b016-835deab0f22f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3", "name": "sdk-py-tests-acc-1-7b9b28b3", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A02%3A34.3004733Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A45.6423779Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:02:32.2762855Z" + "CreatedOnDate": "2022-10-25T13:53:44.3320483Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +833,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:02:33.3756418Z", + "createdAt": "2022-10-25T13:53:45.4567724Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:02:33.3756418Z" + "lastModifiedAt": "2022-10-25T13:53:45.4567724Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/127597c3-eed4-4ffd-a018-553a7b1ae223?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8bf32bec-b833-42bb-8abb-b541bbd1367d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +855,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:03:05 GMT", + "Date": "Tue, 25 Oct 2022 13:53:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +863,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54299190-51a2-47c0-801a-a22f8592cb19", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090305Z:54299190-51a2-47c0-801a-a22f8592cb19", + "x-ms-correlation-request-id": "aa5395c4-8dc7-4d8a-95f5-3b9027a07804", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135346Z:aa5395c4-8dc7-4d8a-95f5-3b9027a07804", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/127597c3-eed4-4ffd-a018-553a7b1ae223", - "name": "127597c3-eed4-4ffd-a018-553a7b1ae223", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8bf32bec-b833-42bb-8abb-b541bbd1367d", + "name": "8bf32bec-b833-42bb-8abb-b541bbd1367d", "status": "Succeeded", - "startTime": "2022-09-19T09:02:34.3026157Z", - "endTime": "2022-09-19T09:02:34.3494983Z", + "startTime": "2022-10-25T13:53:45.6385587Z", + "endTime": "2022-10-25T13:53:45.7948407Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3" @@ -853,7 +887,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +895,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:03:05 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A02%3A34.3556988Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:53:46 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A45.7005237Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +904,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e2eb0a7-ad0f-434f-bc49-393eccfc1b3b", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090306Z:8e2eb0a7-ad0f-434f-bc49-393eccfc1b3b", + "x-ms-correlation-request-id": "33e6f349-f2eb-4fa3-b9e4-a056cd5ddea6", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135347Z:33e6f349-f2eb-4fa3-b9e4-a056cd5ddea6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3", "name": "sdk-py-tests-acc-1-7b9b28b3", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A02%3A34.3556988Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A45.7005237Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:02:32.2762855Z" + "CreatedOnDate": "2022-10-25T13:53:44.3320483Z" }, "properties": { "activeDirectories": [ @@ -911,10 +945,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:02:33.3756418Z", + "createdAt": "2022-10-25T13:53:45.4567724Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:02:33.3756418Z" + "lastModifiedAt": "2022-10-25T13:53:45.4567724Z" } } }, @@ -927,7 +961,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +974,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e32bc9fe-7291-4f0b-b76e-74621cbf36c5?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acc8bb2e-9ecc-417a-9c86-27a6df2a4630?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:03:08 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A03%3A07.9222497Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:53:49 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A49.0394202Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50c766f0-b281-43af-8ed4-e34e92fa92f1", + "x-ms-correlation-request-id": "de2dc2aa-fedc-4a30-8442-bfedc87abf18", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090308Z:50c766f0-b281-43af-8ed4-e34e92fa92f1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135350Z:de2dc2aa-fedc-4a30-8442-bfedc87abf18", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-7b9b28b3/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A03%3A07.9222497Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A49.0394202Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:03:06.6097361Z" + "CreatedOnDate": "2022-10-25T13:53:47.6704204Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +1011,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:03:07.7199006Z", + "createdAt": "2022-10-25T13:53:48.8248917Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:03:07.7199006Z" + "lastModifiedAt": "2022-10-25T13:53:48.8248917Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e32bc9fe-7291-4f0b-b76e-74621cbf36c5?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acc8bb2e-9ecc-417a-9c86-27a6df2a4630?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1033,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:03:38 GMT", + "Date": "Tue, 25 Oct 2022 13:53:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1041,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f15024b6-bf54-48e1-b401-5fb20ace9b32", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090339Z:f15024b6-bf54-48e1-b401-5fb20ace9b32", + "x-ms-correlation-request-id": "6723e94a-1776-4dc5-bbbe-cd44ee6abbd5", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135350Z:6723e94a-1776-4dc5-bbbe-cd44ee6abbd5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e32bc9fe-7291-4f0b-b76e-74621cbf36c5", - "name": "e32bc9fe-7291-4f0b-b76e-74621cbf36c5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acc8bb2e-9ecc-417a-9c86-27a6df2a4630", + "name": "acc8bb2e-9ecc-417a-9c86-27a6df2a4630", "status": "Succeeded", - "startTime": "2022-09-19T09:03:07.9180634Z", - "endTime": "2022-09-19T09:03:08.9649536Z", + "startTime": "2022-10-25T13:53:49.0374233Z", + "endTime": "2022-10-25T13:53:49.959303Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1065,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1073,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:03:38 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A03%3A08.9649988Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:53:50 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A49.946113Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1082,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a70e28e-b72b-44df-b325-c4beb6441378", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090339Z:5a70e28e-b72b-44df-b325-c4beb6441378", + "x-ms-correlation-request-id": "8b9cb51f-ec54-4f6c-9061-2c6122ac7213", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135350Z:8b9cb51f-ec54-4f6c-9061-2c6122ac7213", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-7b9b28b3/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A03%3A08.9649988Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A49.946113Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:03:06.6097361Z" + "CreatedOnDate": "2022-10-25T13:53:47.6704204Z" }, "properties": { - "poolId": "70023690-0a80-5acc-238b-5b86b3204324", + "poolId": "1d666028-9897-c1b1-adab-fce5e34ea117", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1110,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:03:07.7199006Z", + "createdAt": "2022-10-25T13:53:48.8248917Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:03:07.7199006Z" + "lastModifiedAt": "2022-10-25T13:53:48.8248917Z" } } }, @@ -1092,7 +1126,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1156,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:03:42 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A03%3A42.0627289Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:53:52 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A52.3475143Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8939cbf-09fc-407a-a3c2-c8487b3b5b61", + "x-ms-correlation-request-id": "66691f5d-b00d-44e8-a7b6-2873eef3d07f", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090343Z:a8939cbf-09fc-407a-a3c2-c8487b3b5b61", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135353Z:66691f5d-b00d-44e8-a7b6-2873eef3d07f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3", "name": "sdk-py-tests-acc-1-7b9b28b3/sdk-py-tests-pool-1/sdk-py-tests-vol-3-7b9b28b3", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A03%3A42.0627289Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A52.3475143Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:03:39.7005806Z" + "CreatedOnDate": "2022-10-25T13:53:51.0923875Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1209,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:03:40.9702713Z", + "createdAt": "2022-10-25T13:53:52.0757283Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:03:40.9702713Z" + "lastModifiedAt": "2022-10-25T13:53:52.0757283Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1231,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:04:13 GMT", + "Date": "Tue, 25 Oct 2022 13:53:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1239,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3108e57d-6755-44e5-ac12-e95d17bc44a5", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090413Z:3108e57d-6755-44e5-ac12-e95d17bc44a5", + "x-ms-correlation-request-id": "be9abdfa-14a1-48b5-a055-883f51bd888f", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135353Z:be9abdfa-14a1-48b5-a055-883f51bd888f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac", - "name": "1ff6f926-55d7-4f16-b9f9-3252a217dbac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", "status": "Creating", - "startTime": "2022-09-19T09:03:42.0652382Z", + "startTime": "2022-10-25T13:53:52.3431192Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1257,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1271,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:04:42 GMT", + "Date": "Tue, 25 Oct 2022 13:54:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1279,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f77b19b0-99c6-4b7b-9d12-72dd15f78c63", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090443Z:f77b19b0-99c6-4b7b-9d12-72dd15f78c63", + "x-ms-correlation-request-id": "e5044854-33dd-4cfd-96e7-1dfe65cce67a", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135423Z:e5044854-33dd-4cfd-96e7-1dfe65cce67a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac", - "name": "1ff6f926-55d7-4f16-b9f9-3252a217dbac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", "status": "Creating", - "startTime": "2022-09-19T09:03:42.0652382Z", + "startTime": "2022-10-25T13:53:52.3431192Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1297,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1311,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:05:12 GMT", + "Date": "Tue, 25 Oct 2022 13:54:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1319,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00af4065-5e69-44ca-96ff-b270c5f59dca", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090513Z:00af4065-5e69-44ca-96ff-b270c5f59dca", + "x-ms-correlation-request-id": "a2c0476b-f88c-4b07-aeea-40e431837d9e", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135454Z:a2c0476b-f88c-4b07-aeea-40e431837d9e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac", - "name": "1ff6f926-55d7-4f16-b9f9-3252a217dbac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", "status": "Creating", - "startTime": "2022-09-19T09:03:42.0652382Z", + "startTime": "2022-10-25T13:53:52.3431192Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1337,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1351,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:05:43 GMT", + "Date": "Tue, 25 Oct 2022 13:55:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1359,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d32f10d-4594-488f-a614-6f5f3c085268", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090544Z:1d32f10d-4594-488f-a614-6f5f3c085268", + "x-ms-correlation-request-id": "b2bce357-a588-4fab-b920-198dfba51ca6", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135524Z:b2bce357-a588-4fab-b920-198dfba51ca6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac", - "name": "1ff6f926-55d7-4f16-b9f9-3252a217dbac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", "status": "Creating", - "startTime": "2022-09-19T09:03:42.0652382Z", + "startTime": "2022-10-25T13:53:52.3431192Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1377,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1391,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:06:13 GMT", + "Date": "Tue, 25 Oct 2022 13:55:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1399,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f178ffe-95d1-4440-a969-b078ca05cdd1", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090614Z:1f178ffe-95d1-4440-a969-b078ca05cdd1", + "x-ms-correlation-request-id": "49bc0211-5715-4936-8c9e-bac2f5af66bd", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135554Z:49bc0211-5715-4936-8c9e-bac2f5af66bd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac", - "name": "1ff6f926-55d7-4f16-b9f9-3252a217dbac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", "status": "Creating", - "startTime": "2022-09-19T09:03:42.0652382Z", + "startTime": "2022-10-25T13:53:52.3431192Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1417,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1431,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:06:43 GMT", + "Date": "Tue, 25 Oct 2022 13:56:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1439,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dceabcb4-014d-4c77-8b5c-ae0340f5966f", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090644Z:dceabcb4-014d-4c77-8b5c-ae0340f5966f", + "x-ms-correlation-request-id": "736f7cc8-244a-4fb0-a969-1f6709d5d9e6", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135624Z:736f7cc8-244a-4fb0-a969-1f6709d5d9e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac", - "name": "1ff6f926-55d7-4f16-b9f9-3252a217dbac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", "status": "Creating", - "startTime": "2022-09-19T09:03:42.0652382Z", + "startTime": "2022-10-25T13:53:52.3431192Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1457,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1471,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:07:13 GMT", + "Date": "Tue, 25 Oct 2022 13:56:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1479,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb5414c4-793f-4c84-be9c-e964d0b57d3d", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090714Z:cb5414c4-793f-4c84-be9c-e964d0b57d3d", + "x-ms-correlation-request-id": "8817cbe1-ff6c-48a2-8517-ca0ee878b1ee", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135655Z:8817cbe1-ff6c-48a2-8517-ca0ee878b1ee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac", - "name": "1ff6f926-55d7-4f16-b9f9-3252a217dbac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", "status": "Creating", - "startTime": "2022-09-19T09:03:42.0652382Z", + "startTime": "2022-10-25T13:53:52.3431192Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1497,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1511,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:07:44 GMT", + "Date": "Tue, 25 Oct 2022 13:57:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,16 +1519,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d4595db-d3b3-4f05-824a-307e9a58e901", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090744Z:7d4595db-d3b3-4f05-824a-307e9a58e901", + "x-ms-correlation-request-id": "89aa4ef0-c1d5-4454-b81f-bbeeea624430", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135725Z:89aa4ef0-c1d5-4454-b81f-bbeeea624430", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac", - "name": "1ff6f926-55d7-4f16-b9f9-3252a217dbac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", "status": "Creating", - "startTime": "2022-09-19T09:03:42.0652382Z", + "startTime": "2022-10-25T13:53:52.3431192Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1503,13 +1537,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,7 +1551,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:08:14 GMT", + "Date": "Tue, 25 Oct 2022 13:57:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1525,17 +1559,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b836cb95-6d03-416a-a0cd-31e54177ea3c", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090815Z:b836cb95-6d03-416a-a0cd-31e54177ea3c", + "x-ms-correlation-request-id": "fc6172db-360b-4603-9818-9c4a9a26798b", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135755Z:fc6172db-360b-4603-9818-9c4a9a26798b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", + "status": "Creating", + "startTime": "2022-10-25T13:53:52.3431192Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:58:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f26fef60-5c9f-4d7d-94d2-6958a8603d55", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135826Z:f26fef60-5c9f-4d7d-94d2-6958a8603d55", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", + "status": "Creating", + "startTime": "2022-10-25T13:53:52.3431192Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:58:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "25bc1324-1ab7-4d55-9bac-c3d9f205e714", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135856Z:25bc1324-1ab7-4d55-9bac-c3d9f205e714", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1ff6f926-55d7-4f16-b9f9-3252a217dbac", - "name": "1ff6f926-55d7-4f16-b9f9-3252a217dbac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f6ccf695-b119-4477-b351-87ae8456a78f", + "name": "f6ccf695-b119-4477-b351-87ae8456a78f", "status": "Succeeded", - "startTime": "2022-09-19T09:03:42.0652382Z", - "endTime": "2022-09-19T09:07:45.6489821Z", + "startTime": "2022-10-25T13:53:52.3431192Z", + "endTime": "2022-10-25T13:58:29.2697417Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3" @@ -1549,7 +1663,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1557,8 +1671,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:08:15 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A07%3A45.6503489Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:58:55 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A58%3A29.267354Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1566,22 +1680,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "404518aa-573a-466f-aa19-b6b8fd098bda", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090816Z:404518aa-573a-466f-aa19-b6b8fd098bda", + "x-ms-correlation-request-id": "1794058d-9b22-4504-b361-0d3e732892fe", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135856Z:1794058d-9b22-4504-b361-0d3e732892fe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3", "name": "sdk-py-tests-acc-1-7b9b28b3/sdk-py-tests-pool-1/sdk-py-tests-vol-3-7b9b28b3", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A07%3A45.6503489Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A58%3A29.267354Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:03:39.7005806Z" + "CreatedOnDate": "2022-10-25T13:53:51.0923875Z" }, "properties": { - "fileSystemId": "3ed9896e-7539-7ee4-9594-4cd9fabc5f12", + "fileSystemId": "e9154bde-1543-2b68-53ba-e8c29f2be2e7", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-7b9b28b3", "usageThreshold": 107374182400, @@ -1609,7 +1723,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2d4568b8", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c5667858", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1624,8 +1738,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "3ed9896e-7539-7ee4-9594-4cd9fabc5f12", - "fileSystemId": "3ed9896e-7539-7ee4-9594-4cd9fabc5f12", + "mountTargetId": "e9154bde-1543-2b68-53ba-e8c29f2be2e7", + "fileSystemId": "e9154bde-1543-2b68-53ba-e8c29f2be2e7", "ipAddress": "10.0.0.4" } ], @@ -1645,10 +1759,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:03:40.9702713Z", + "createdAt": "2022-10-25T13:53:52.0757283Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:03:40.9702713Z" + "lastModifiedAt": "2022-10-25T13:53:52.0757283Z" } } }, @@ -1659,7 +1773,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1667,8 +1781,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:08:16 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A07%3A45.6503489Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:58:56 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A58%3A29.267354Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1676,22 +1790,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84e32195-92e6-4bc2-a329-4674d90ba9ab", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090816Z:84e32195-92e6-4bc2-a329-4674d90ba9ab", + "x-ms-correlation-request-id": "cae876a6-88a5-44a8-9b34-2aa1b2c8ee9b", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135857Z:cae876a6-88a5-44a8-9b34-2aa1b2c8ee9b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3", "name": "sdk-py-tests-acc-1-7b9b28b3/sdk-py-tests-pool-1/sdk-py-tests-vol-3-7b9b28b3", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A07%3A45.6503489Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A58%3A29.267354Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:03:39.7005806Z" + "CreatedOnDate": "2022-10-25T13:53:51.0923875Z" }, "properties": { - "fileSystemId": "3ed9896e-7539-7ee4-9594-4cd9fabc5f12", + "fileSystemId": "e9154bde-1543-2b68-53ba-e8c29f2be2e7", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-7b9b28b3", "usageThreshold": 107374182400, @@ -1719,7 +1833,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2d4568b8", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c5667858", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1734,8 +1848,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "3ed9896e-7539-7ee4-9594-4cd9fabc5f12", - "fileSystemId": "3ed9896e-7539-7ee4-9594-4cd9fabc5f12", + "mountTargetId": "e9154bde-1543-2b68-53ba-e8c29f2be2e7", + "fileSystemId": "e9154bde-1543-2b68-53ba-e8c29f2be2e7", "ipAddress": "10.0.0.4" } ], @@ -1755,10 +1869,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:03:40.9702713Z", + "createdAt": "2022-10-25T13:53:52.0757283Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:03:40.9702713Z" + "lastModifiedAt": "2022-10-25T13:53:52.0757283Z" } } }, @@ -1771,27 +1885,27 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c6ffcc9-d9db-40a3-b03e-93fd9fa35486?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5e2e6c-f21e-40a4-8f3c-f8b5e357aaf2?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "522", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:08:16 GMT", + "Date": "Tue, 25 Oct 2022 13:58:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c6ffcc9-d9db-40a3-b03e-93fd9fa35486?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5e2e6c-f21e-40a4-8f3c-f8b5e357aaf2?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "635a2684-c62d-4413-90ff-597363077e91", + "x-ms-correlation-request-id": "8df360e1-57b1-4c7d-a5ca-04cffb1bf499", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090817Z:635a2684-c62d-4413-90ff-597363077e91", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135858Z:8df360e1-57b1-4c7d-a5ca-04cffb1bf499", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1805,13 +1919,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c6ffcc9-d9db-40a3-b03e-93fd9fa35486?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5e2e6c-f21e-40a4-8f3c-f8b5e357aaf2?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1819,7 +1933,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:08:46 GMT", + "Date": "Tue, 25 Oct 2022 13:58:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1827,17 +1941,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "625ace38-a5aa-463c-aca1-681662830b9d", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090847Z:625ace38-a5aa-463c-aca1-681662830b9d", + "x-ms-correlation-request-id": "93616088-c64d-4b82-b31a-7cbd180df0e4", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135858Z:93616088-c64d-4b82-b31a-7cbd180df0e4", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5e2e6c-f21e-40a4-8f3c-f8b5e357aaf2", + "name": "3a5e2e6c-f21e-40a4-8f3c-f8b5e357aaf2", + "status": "Creating", + "startTime": "2022-10-25T13:58:57.8348769Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3/snapshots/sdk-py-tests-snapshot-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5e2e6c-f21e-40a4-8f3c-f8b5e357aaf2?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:59:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "667cb6aa-53d6-46ff-b0af-27b07b20ffa3", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135928Z:667cb6aa-53d6-46ff-b0af-27b07b20ffa3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c6ffcc9-d9db-40a3-b03e-93fd9fa35486", - "name": "3c6ffcc9-d9db-40a3-b03e-93fd9fa35486", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5e2e6c-f21e-40a4-8f3c-f8b5e357aaf2", + "name": "3a5e2e6c-f21e-40a4-8f3c-f8b5e357aaf2", "status": "Succeeded", - "startTime": "2022-09-19T09:08:17.1867036Z", - "endTime": "2022-09-19T09:08:20.6652128Z", + "startTime": "2022-10-25T13:58:57.8348769Z", + "endTime": "2022-10-25T13:59:05.3259932Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3/snapshots/sdk-py-tests-snapshot-1" @@ -1845,41 +1999,41 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3c6ffcc9-d9db-40a3-b03e-93fd9fa35486?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a5e2e6c-f21e-40a4-8f3c-f8b5e357aaf2?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "638", + "Content-Length": "639", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:08:46 GMT", + "Date": "Tue, 25 Oct 2022 13:59:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de2053a3-8f77-40ae-8dde-c66eb25ff1ac", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090847Z:de2053a3-8f77-40ae-8dde-c66eb25ff1ac", + "x-ms-correlation-request-id": "071f4b99-7ad4-4150-b576-adde42851be0", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135928Z:071f4b99-7ad4-4150-b576-adde42851be0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3/snapshots/sdk-py-tests-snapshot-1", "name": "sdk-py-tests-acc-1-7b9b28b3/sdk-py-tests-pool-1/sdk-py-tests-vol-3-7b9b28b3/sdk-py-tests-snapshot-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots", - "etag": "9/19/2022 9:08:20 AM", + "etag": "10/25/2022 1:59:05 PM", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "snapshotId": "b0dbc155-8465-7554-03fa-4c600c38e73a", - "created": "2022-09-19T09:08:18Z" + "snapshotId": "26484015-18f6-5866-1d0c-b3dce5ecdf6d", + "created": "2022-10-25T13:58:58Z" } } }, @@ -1890,7 +2044,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1898,7 +2052,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:08:48 GMT", + "Date": "Tue, 25 Oct 2022 13:59:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1906,9 +2060,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc567753-46c8-4436-8804-f95c0d7450f8", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090849Z:bc567753-46c8-4436-8804-f95c0d7450f8", + "x-ms-correlation-request-id": "1cc1baa7-c1e9-48d4-8476-5cbb3558e09a", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135929Z:1cc1baa7-c1e9-48d4-8476-5cbb3558e09a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1918,8 +2072,8 @@ "location": "westus2", "properties": { "provisioningState": "Succeeded", - "snapshotId": "b0dbc155-8465-7554-03fa-4c600c38e73a", - "created": "2022-09-19T09:08:18Z" + "snapshotId": "26484015-18f6-5866-1d0c-b3dce5ecdf6d", + "created": "2022-10-25T13:58:58Z" } } }, @@ -1931,36 +2085,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c01f2e7e-27be-4d53-84aa-b7a98db965b3?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b613f8-9a1d-484e-b3e2-5f96dcd8d66e?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:08:48 GMT", + "Date": "Tue, 25 Oct 2022 13:59:29 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c01f2e7e-27be-4d53-84aa-b7a98db965b3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b613f8-9a1d-484e-b3e2-5f96dcd8d66e?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "510eea71-cb8d-4ae9-bdd6-d36b57e05ae0", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090849Z:510eea71-cb8d-4ae9-bdd6-d36b57e05ae0", + "x-ms-correlation-request-id": "21d9d83c-9bc5-47a2-a8f1-a5d34df24566", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135930Z:21d9d83c-9bc5-47a2-a8f1-a5d34df24566", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c01f2e7e-27be-4d53-84aa-b7a98db965b3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b613f8-9a1d-484e-b3e2-5f96dcd8d66e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1968,7 +2122,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:09:19 GMT", + "Date": "Tue, 25 Oct 2022 13:59:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1976,17 +2130,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fbbef127-924f-4fde-a8dd-384c4b88503b", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090920Z:fbbef127-924f-4fde-a8dd-384c4b88503b", + "x-ms-correlation-request-id": "4d837e40-11de-4f57-92fb-831d832d2f41", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135930Z:4d837e40-11de-4f57-92fb-831d832d2f41", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c01f2e7e-27be-4d53-84aa-b7a98db965b3", - "name": "c01f2e7e-27be-4d53-84aa-b7a98db965b3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b613f8-9a1d-484e-b3e2-5f96dcd8d66e", + "name": "13b613f8-9a1d-484e-b3e2-5f96dcd8d66e", + "status": "Deleting", + "startTime": "2022-10-25T13:59:29.9284725Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3/snapshots/sdk-py-tests-snapshot-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b613f8-9a1d-484e-b3e2-5f96dcd8d66e?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:59:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1233cb61-daa2-4703-aabd-9bb555b3ac07", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140000Z:1233cb61-daa2-4703-aabd-9bb555b3ac07", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b613f8-9a1d-484e-b3e2-5f96dcd8d66e", + "name": "13b613f8-9a1d-484e-b3e2-5f96dcd8d66e", "status": "Succeeded", - "startTime": "2022-09-19T09:08:49.6591346Z", - "endTime": "2022-09-19T09:08:51.7843209Z", + "startTime": "2022-10-25T13:59:29.9284725Z", + "endTime": "2022-10-25T13:59:36.7293739Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3/snapshots/sdk-py-tests-snapshot-1" @@ -1994,13 +2188,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c01f2e7e-27be-4d53-84aa-b7a98db965b3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/13b613f8-9a1d-484e-b3e2-5f96dcd8d66e?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2008,7 +2202,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:09:20 GMT", + "Date": "Tue, 25 Oct 2022 14:00:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2016,9 +2210,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce08dd2e-800e-4e35-9d88-33b47d48d41d", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090920Z:ce08dd2e-800e-4e35-9d88-33b47d48d41d", + "x-ms-correlation-request-id": "87c4e35f-2aeb-4639-9230-79bded42afe4", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140001Z:87c4e35f-2aeb-4639-9230-79bded42afe4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2035,7 +2229,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2043,15 +2237,15 @@ "Cache-Control": "no-cache", "Content-Length": "326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:09:40 GMT", + "Date": "Tue, 25 Oct 2022 14:00:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b988adab-f44a-4dd7-821b-b236cb2bedf9", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090940Z:b988adab-f44a-4dd7-821b-b236cb2bedf9", + "x-ms-correlation-request-id": "dd7f10cd-6667-4aa3-9467-ab9a11af40fb", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140022Z:dd7f10cd-6667-4aa3-9467-ab9a11af40fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2069,36 +2263,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:09:41 GMT", + "Date": "Tue, 25 Oct 2022 14:00:22 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "247a4b72-ad52-426f-a8d8-128ed1e74b5d", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090941Z:247a4b72-ad52-426f-a8d8-128ed1e74b5d", + "x-ms-correlation-request-id": "b69a2598-0d7e-4a7d-b5ab-42ac6cb52803", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140023Z:b69a2598-0d7e-4a7d-b5ab-42ac6cb52803", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2106,7 +2300,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:10:11 GMT", + "Date": "Tue, 25 Oct 2022 14:00:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2114,16 +2308,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fef44a78-2614-44b9-b737-81f198412ae5", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091011Z:fef44a78-2614-44b9-b737-81f198412ae5", + "x-ms-correlation-request-id": "d3c9f10c-cea2-46a9-9336-191ff2421c11", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140023Z:d3c9f10c-cea2-46a9-9336-191ff2421c11", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc", - "name": "b9a55f49-b934-45f4-8dcb-fbfc2f9482dc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b", + "name": "72b776c4-73e2-4a7d-9a4d-9d266005456b", "status": "Deleting", - "startTime": "2022-09-19T09:09:41.3053971Z", + "startTime": "2022-10-25T14:00:23.4216061Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2132,13 +2326,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2146,7 +2340,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:10:41 GMT", + "Date": "Tue, 25 Oct 2022 14:00:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2154,16 +2348,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83c95a53-43c8-418d-ae70-2ac694894895", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091041Z:83c95a53-43c8-418d-ae70-2ac694894895", + "x-ms-correlation-request-id": "6682c9ec-a7dc-4557-8c9a-a72e1e230c4d", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140054Z:6682c9ec-a7dc-4557-8c9a-a72e1e230c4d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc", - "name": "b9a55f49-b934-45f4-8dcb-fbfc2f9482dc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b", + "name": "72b776c4-73e2-4a7d-9a4d-9d266005456b", "status": "Deleting", - "startTime": "2022-09-19T09:09:41.3053971Z", + "startTime": "2022-10-25T14:00:23.4216061Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2172,13 +2366,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2186,7 +2380,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:11:11 GMT", + "Date": "Tue, 25 Oct 2022 14:01:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2194,16 +2388,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ed3da8d-f980-43e7-b32e-4905ca7f9a83", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091112Z:2ed3da8d-f980-43e7-b32e-4905ca7f9a83", + "x-ms-correlation-request-id": "c33bc614-3704-4d39-87ff-72f07af412a0", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140124Z:c33bc614-3704-4d39-87ff-72f07af412a0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc", - "name": "b9a55f49-b934-45f4-8dcb-fbfc2f9482dc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b", + "name": "72b776c4-73e2-4a7d-9a4d-9d266005456b", "status": "Deleting", - "startTime": "2022-09-19T09:09:41.3053971Z", + "startTime": "2022-10-25T14:00:23.4216061Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2212,13 +2406,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2226,7 +2420,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:11:42 GMT", + "Date": "Tue, 25 Oct 2022 14:01:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2234,17 +2428,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72f46ddd-e2f2-4dcf-842e-39eee107e88f", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091142Z:72f46ddd-e2f2-4dcf-842e-39eee107e88f", + "x-ms-correlation-request-id": "388c5434-7c80-49e0-9f61-1eb18cbeb955", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140154Z:388c5434-7c80-49e0-9f61-1eb18cbeb955", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b", + "name": "72b776c4-73e2-4a7d-9a4d-9d266005456b", + "status": "Deleting", + "startTime": "2022-10-25T14:00:23.4216061Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:02:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fdec9687-9a08-4ec9-bfba-cb5e9f3f10d1", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140224Z:fdec9687-9a08-4ec9-bfba-cb5e9f3f10d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc", - "name": "b9a55f49-b934-45f4-8dcb-fbfc2f9482dc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b", + "name": "72b776c4-73e2-4a7d-9a4d-9d266005456b", + "status": "Deleting", + "startTime": "2022-10-25T14:00:23.4216061Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:02:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8a82ec8f-3119-4f4a-858d-706853254051", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140255Z:8a82ec8f-3119-4f4a-858d-706853254051", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b", + "name": "72b776c4-73e2-4a7d-9a4d-9d266005456b", + "status": "Deleting", + "startTime": "2022-10-25T14:00:23.4216061Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:03:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fd0964f0-1982-4485-89fc-9cae20919af9", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140325Z:fd0964f0-1982-4485-89fc-9cae20919af9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b", + "name": "72b776c4-73e2-4a7d-9a4d-9d266005456b", "status": "Succeeded", - "startTime": "2022-09-19T09:09:41.3053971Z", - "endTime": "2022-09-19T09:11:19.1292627Z", + "startTime": "2022-10-25T14:00:23.4216061Z", + "endTime": "2022-10-25T14:03:07.1577503Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3" @@ -2252,13 +2566,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9a55f49-b934-45f4-8dcb-fbfc2f9482dc?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72b776c4-73e2-4a7d-9a4d-9d266005456b?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2266,7 +2580,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:11:42 GMT", + "Date": "Tue, 25 Oct 2022 14:03:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2274,22 +2588,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "490a19a3-9b40-4752-86b0-699ae2248bb4", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091143Z:490a19a3-9b40-4752-86b0-699ae2248bb4", + "x-ms-correlation-request-id": "347a13af-b47a-47c2-bf72-a79f6ac12bf9", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140326Z:347a13af-b47a-47c2-bf72-a79f6ac12bf9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3", "name": "sdk-py-tests-acc-1-7b9b28b3/sdk-py-tests-pool-1/sdk-py-tests-vol-3-7b9b28b3", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A11%3A10.0053518Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A02%3A57.7145322Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:03:39.7005806Z" + "CreatedOnDate": "2022-10-25T13:53:51.0923875Z" }, "properties": { - "fileSystemId": "3ed9896e-7539-7ee4-9594-4cd9fabc5f12", + "fileSystemId": "e9154bde-1543-2b68-53ba-e8c29f2be2e7", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-7b9b28b3", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2320,19 +2634,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_2d4568b8", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c5667858", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9b28b3", - "poolId": "70023690-0a80-5acc-238b-5b86b3204324", + "poolId": "1d666028-9897-c1b1-adab-fce5e34ea117", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "3ed9896e-7539-7ee4-9594-4cd9fabc5f12", - "fileSystemId": "3ed9896e-7539-7ee4-9594-4cd9fabc5f12", + "mountTargetId": "e9154bde-1543-2b68-53ba-e8c29f2be2e7", + "fileSystemId": "e9154bde-1543-2b68-53ba-e8c29f2be2e7", "startIp": "", "endIp": "", "gateway": "", @@ -2364,10 +2678,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:03:40.9702713Z", + "createdAt": "2022-10-25T13:53:52.0757283Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:03:40.9702713Z" + "lastModifiedAt": "2022-10-25T13:53:52.0757283Z" } } }, @@ -2378,7 +2692,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2386,14 +2700,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:15:03 GMT", + "Date": "Tue, 25 Oct 2022 14:06:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1eed1605-fd09-47aa-a630-bb0cef367eee", + "x-ms-correlation-request-id": "11c06e49-6424-4427-9894-1fccdcfee9c4", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091504Z:1eed1605-fd09-47aa-a630-bb0cef367eee" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140650Z:11c06e49-6424-4427-9894-1fccdcfee9c4" }, "ResponseBody": { "error": { @@ -2410,36 +2724,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce0398ef-b7ae-4f43-baf7-456fdbad09bc?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/483743c4-ea93-4675-8f87-7b4803789511?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:15:15 GMT", + "Date": "Tue, 25 Oct 2022 14:07:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce0398ef-b7ae-4f43-baf7-456fdbad09bc?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/483743c4-ea93-4675-8f87-7b4803789511?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b01ace2-22dd-4a5e-b8fc-1ef72d7fe915", + "x-ms-correlation-request-id": "c09ab424-d598-4abc-956a-b9f4511c8a9d", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091516Z:5b01ace2-22dd-4a5e-b8fc-1ef72d7fe915", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140703Z:c09ab424-d598-4abc-956a-b9f4511c8a9d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce0398ef-b7ae-4f43-baf7-456fdbad09bc?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/483743c4-ea93-4675-8f87-7b4803789511?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2447,7 +2761,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:15:45 GMT", + "Date": "Tue, 25 Oct 2022 14:07:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2455,17 +2769,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4ee1f9a-a044-4f06-b932-8ff7fb78f15a", + "x-ms-correlation-request-id": "96e90089-230e-4107-8d80-1a1fade04e73", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091546Z:c4ee1f9a-a044-4f06-b932-8ff7fb78f15a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140703Z:96e90089-230e-4107-8d80-1a1fade04e73", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce0398ef-b7ae-4f43-baf7-456fdbad09bc", - "name": "ce0398ef-b7ae-4f43-baf7-456fdbad09bc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/483743c4-ea93-4675-8f87-7b4803789511", + "name": "483743c4-ea93-4675-8f87-7b4803789511", + "status": "Deleting", + "startTime": "2022-10-25T14:07:02.992548Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/483743c4-ea93-4675-8f87-7b4803789511?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:07:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a686a89e-da29-4b07-ba39-2f944bf1dfa0", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140733Z:a686a89e-da29-4b07-ba39-2f944bf1dfa0", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/483743c4-ea93-4675-8f87-7b4803789511", + "name": "483743c4-ea93-4675-8f87-7b4803789511", "status": "Succeeded", - "startTime": "2022-09-19T09:15:15.9685707Z", - "endTime": "2022-09-19T09:15:16.9373294Z", + "startTime": "2022-10-25T14:07:02.992548Z", + "endTime": "2022-10-25T14:07:04.0864329Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1" @@ -2473,13 +2827,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce0398ef-b7ae-4f43-baf7-456fdbad09bc?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/483743c4-ea93-4675-8f87-7b4803789511?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2487,7 +2841,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:15:46 GMT", + "Date": "Tue, 25 Oct 2022 14:07:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2495,22 +2849,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d53a5f6-03a8-4a40-a91f-3c4576dfeee1", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091546Z:6d53a5f6-03a8-4a40-a91f-3c4576dfeee1", + "x-ms-correlation-request-id": "5d65a17a-f34e-4ff8-bf40-822ab36ff973", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140733Z:5d65a17a-f34e-4ff8-bf40-822ab36ff973", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-7b9b28b3/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A15%3A15.9688717Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A07%3A02.9856235Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:03:06.6097361Z" + "CreatedOnDate": "2022-10-25T13:53:47.6704204Z" }, "properties": { - "poolId": "70023690-0a80-5acc-238b-5b86b3204324", + "poolId": "1d666028-9897-c1b1-adab-fce5e34ea117", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3/capacityPools/sdk-py-tests-pool-1", @@ -2524,10 +2878,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:03:07.7199006Z", + "createdAt": "2022-10-25T13:53:48.8248917Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:03:07.7199006Z" + "lastModifiedAt": "2022-10-25T13:53:48.8248917Z" } } }, @@ -2539,20 +2893,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:15:56 GMT", + "Date": "Tue, 25 Oct 2022 14:07:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a8a99ae-1192-45f2-97c5-bfb8e65e429c", + "x-ms-correlation-request-id": "f265524c-85f4-48e7-8e72-ac20874ce4e2", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091556Z:3a8a99ae-1192-45f2-97c5-bfb8e65e429c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140744Z:f265524c-85f4-48e7-8e72-ac20874ce4e2" }, "ResponseBody": null }, @@ -2564,20 +2918,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:16:06 GMT", + "Date": "Tue, 25 Oct 2022 14:07:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58904438-2da4-4b5a-8b26-295a9f4362bb", + "x-ms-correlation-request-id": "986875d8-e90c-4572-b5a4-ceaa94498745", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091607Z:58904438-2da4-4b5a-8b26-295a9f4362bb" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140754Z:986875d8-e90c-4572-b5a4-ceaa94498745" }, "ResponseBody": null }, @@ -2589,20 +2943,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:16:17 GMT", + "Date": "Tue, 25 Oct 2022 14:08:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db7f0c6c-ecb1-4872-9f2d-c584aa91b45d", + "x-ms-correlation-request-id": "b0db81fe-22a4-4017-b7ec-dc48152c6e0c", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091617Z:db7f0c6c-ecb1-4872-9f2d-c584aa91b45d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140804Z:b0db81fe-22a4-4017-b7ec-dc48152c6e0c" }, "ResponseBody": null }, @@ -2614,20 +2968,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:16:27 GMT", + "Date": "Tue, 25 Oct 2022 14:08:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5af5cec7-1162-40fb-b9bf-28ff532a8cea", + "x-ms-correlation-request-id": "c9eb60cc-04e2-41c5-933c-58873d5f01aa", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091628Z:5af5cec7-1162-40fb-b9bf-28ff532a8cea" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140815Z:c9eb60cc-04e2-41c5-933c-58873d5f01aa" }, "ResponseBody": null }, @@ -2638,7 +2992,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2646,14 +3000,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:16:37 GMT", + "Date": "Tue, 25 Oct 2022 14:08:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "afe4b2fc-00d4-4265-a1ae-e4f7311d4805", + "x-ms-correlation-request-id": "97511857-b944-41cc-b1eb-ca185c2dc070", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091638Z:afe4b2fc-00d4-4265-a1ae-e4f7311d4805" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140825Z:97511857-b944-41cc-b1eb-ca185c2dc070" }, "ResponseBody": { "error": { @@ -2670,36 +3024,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1422b360-ad03-4dc9-8b8d-73b781a94d08?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69051efe-d44a-4c9b-b57f-25e732bf25d3?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:16:39 GMT", + "Date": "Tue, 25 Oct 2022 14:08:26 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1422b360-ad03-4dc9-8b8d-73b781a94d08?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69051efe-d44a-4c9b-b57f-25e732bf25d3?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f19e997-d577-4985-aee1-3afde4d4938a", + "x-ms-correlation-request-id": "f79d93bf-ba9e-482c-804e-9e0f3109d073", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091639Z:2f19e997-d577-4985-aee1-3afde4d4938a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140827Z:f79d93bf-ba9e-482c-804e-9e0f3109d073", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1422b360-ad03-4dc9-8b8d-73b781a94d08?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69051efe-d44a-4c9b-b57f-25e732bf25d3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2707,7 +3061,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:17:09 GMT", + "Date": "Tue, 25 Oct 2022 14:08:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2715,17 +3069,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbb488a1-593f-49f0-bce9-c899092e5e2d", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091710Z:dbb488a1-593f-49f0-bce9-c899092e5e2d", + "x-ms-correlation-request-id": "94fa90c5-cbc3-4471-b784-cc9c95b2eacc", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140827Z:94fa90c5-cbc3-4471-b784-cc9c95b2eacc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1422b360-ad03-4dc9-8b8d-73b781a94d08", - "name": "1422b360-ad03-4dc9-8b8d-73b781a94d08", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69051efe-d44a-4c9b-b57f-25e732bf25d3", + "name": "69051efe-d44a-4c9b-b57f-25e732bf25d3", "status": "Succeeded", - "startTime": "2022-09-19T09:16:39.6824673Z", - "endTime": "2022-09-19T09:16:39.7137226Z", + "startTime": "2022-10-25T14:08:26.8852166Z", + "endTime": "2022-10-25T14:08:27.103978Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3" @@ -2733,13 +3087,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1422b360-ad03-4dc9-8b8d-73b781a94d08?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69051efe-d44a-4c9b-b57f-25e732bf25d3?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2747,7 +3101,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:17:09 GMT", + "Date": "Tue, 25 Oct 2022 14:08:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2755,19 +3109,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4bf4f32-80f5-4e99-9e5e-47aa97e604f8", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091710Z:d4bf4f32-80f5-4e99-9e5e-47aa97e604f8", + "x-ms-correlation-request-id": "bdd72b7f-3090-44e1-a6bb-db49fdf15070", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140827Z:bdd72b7f-3090-44e1-a6bb-db49fdf15070", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3", "name": "sdk-py-tests-acc-1-7b9b28b3", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A16%3A39.6778142Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A08%3A26.8567486Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:02:32.2762855Z" + "CreatedOnDate": "2022-10-25T13:53:44.3320483Z" }, "properties": { "encryption": { @@ -2778,10 +3132,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:02:33.3756418Z", + "createdAt": "2022-10-25T13:53:45.4567724Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:02:33.3756418Z" + "lastModifiedAt": "2022-10-25T13:53:45.4567724Z" } } }, @@ -2792,50 +3146,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:17:09 GMT", + "Date": "Tue, 25 Oct 2022 14:08:27 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "940ce969-ded8-4372-a680-604b80d6c307", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091710Z:940ce969-ded8-4372-a680-604b80d6c307" + "x-ms-correlation-request-id": "6152408a-07c0-421f-a016-b6aa8adeb87f", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140828Z:6152408a-07c0-421f-a016-b6aa8adeb87f", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9b28b3\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9b28b3?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c73c8024-b6ad-480c-99b3-d2265a43365d?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d6493f8d-0323-4b84-ac2d-3818d196e42b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:17:10 GMT", + "Date": "Tue, 25 Oct 2022 14:08:28 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/c73c8024-b6ad-480c-99b3-d2265a43365d?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/d6493f8d-0323-4b84-ac2d-3818d196e42b?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -2844,10 +3200,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "6796fd11-8a54-4b3f-a61b-22ba68c799a5", - "x-ms-correlation-request-id": "c2b1bfc0-1c94-4669-817b-5477febec449", + "x-ms-arm-service-request-id": "9c6a488c-dd82-41e6-a4ef-5ca696c0c1af", + "x-ms-correlation-request-id": "41c5405d-2082-4680-8718-7dfba5a5dcdf", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T091711Z:c2b1bfc0-1c94-4669-817b-5477febec449" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T140829Z:41c5405d-2082-4680-8718-7dfba5a5dcdf" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_list_snapshots.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_list_snapshots.json index 0e8e3bd7bf20..72f21ac0cd73 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_list_snapshots.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.pyTestNetAppSnapshottest_list_snapshots.json @@ -1,5 +1,38 @@ { "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/1139f91d-cda4-4bec-9b4c-42414411ff20?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1139f91d-cda4-4bec-9b4c-42414411ff20?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:37:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/1139f91d-cda4-4bec-9b4c-42414411ff20?api-version=2022-05-01", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "626d3fbb-2692-4d0b-8b5c-3a42db31fd0f", + "x-ms-correlation-request-id": "ab3e8102-8284-40da-95af-787085e28448", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133706Z:e289324d-e7ef-45fd-a7bd-8d541cc3ba9b" + }, + "ResponseBody": null + }, { "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration", "RequestMethod": "GET", @@ -7,7 +40,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +50,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:09 GMT", + "Date": "Tue, 25 Oct 2022 13:37:06 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +134,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +144,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:09 GMT", + "Date": "Tue, 25 Oct 2022 13:37:06 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +205,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "31058b7b-3a31-4b2f-8d00-0dba81e63a51", + "client-request-id": "c19f9d10-f743-47cb-96e3-6c3a7aa17fec", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "31058b7b-3a31-4b2f-8d00-0dba81e63a51", + "client-request-id": "c19f9d10-f743-47cb-96e3-6c3a7aa17fec", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:09 GMT", + "Date": "Tue, 25 Oct 2022 13:37:06 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +234,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +246,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +254,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +269,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b69d8924-0c35-4cde-9b87-738f807691c7?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4a4d98b3-3537-49b2-8ccf-8013edffe432?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:15 GMT", + "Date": "Tue, 25 Oct 2022 13:37:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +283,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a6b21d27-6e36-4edd-8118-7084c8ef021e", - "x-ms-correlation-request-id": "acf27c9c-dd38-4660-9e0a-b52d198aab03", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084516Z:acf27c9c-dd38-4660-9e0a-b52d198aab03" + "x-ms-arm-service-request-id": "e709926e-3eb4-4017-a77a-7679994f0fce", + "x-ms-correlation-request-id": "3b51629c-89db-4683-bcd2-29dedbb61620", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133712Z:3b51629c-89db-4683-bcd2-29dedbb61620" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-8a942668", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668", - "etag": "W/\u002219866ac5-932e-41d8-b5d5-088eae987acd\u0022", + "etag": "W/\u0022af9429a0-e775-4d9d-bc00-63eca7d09a88\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:45:11.0784490Z" + "CreatedOnDate": "2022-10-25T13:37:08.2014116Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "599a36b7-56fa-495a-a866-31a56693a1da", + "resourceGuid": "e30cef40-971f-4b34-b9fd-116c531fba14", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +312,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b69d8924-0c35-4cde-9b87-738f807691c7?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4a4d98b3-3537-49b2-8ccf-8013edffe432?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,9 +326,10 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:18 GMT", + "Date": "Tue, 25 Oct 2022 13:37:11 GMT", "Expires": "-1", "Pragma": "no-cache", + "Retry-After": "10", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -304,23 +338,58 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1189dd32-f810-4238-bab6-53a596a8ba64", - "x-ms-correlation-request-id": "198aa366-f7b8-480e-8905-0931f1701aa0", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084519Z:198aa366-f7b8-480e-8905-0931f1701aa0" + "x-ms-arm-service-request-id": "115b7387-725c-4022-a085-5d06ba5708aa", + "x-ms-correlation-request-id": "24dc1548-8f6e-4fef-82e7-1a7400f399dc", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133712Z:24dc1548-8f6e-4fef-82e7-1a7400f399dc" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4a4d98b3-3537-49b2-8ccf-8013edffe432?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:37:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "02bb3ef8-0646-40e1-a68a-d588be917e3f", + "x-ms-correlation-request-id": "e3b4ed39-8604-4047-a0aa-f91c3792b4f0", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133722Z:e3b4ed39-8604-4047-a0aa-f91c3792b4f0" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +397,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:19 GMT", - "ETag": "W/\u00228bb3ba04-4fe7-4b86-89e7-79f89f6e924f\u0022", + "Date": "Tue, 25 Oct 2022 13:37:23 GMT", + "ETag": "W/\u00223b08c6ae-2a8a-4645-a5c7-a3b8a3faec42\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +409,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2dc0a162-e534-42e6-ab5c-1620161bf691", - "x-ms-correlation-request-id": "b97ce142-6b3e-4a73-9540-a6b45691306a", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084519Z:b97ce142-6b3e-4a73-9540-a6b45691306a" + "x-ms-arm-service-request-id": "7844399b-6871-4af7-b145-0c933f59a458", + "x-ms-correlation-request-id": "717ba6fe-e828-4b4b-a138-9b45b4baea75", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133723Z:717ba6fe-e828-4b4b-a138-9b45b4baea75" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-8a942668", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668", - "etag": "W/\u00228bb3ba04-4fe7-4b86-89e7-79f89f6e924f\u0022", + "etag": "W/\u00223b08c6ae-2a8a-4645-a5c7-a3b8a3faec42\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:45:11.0784490Z" + "CreatedOnDate": "2022-10-25T13:37:08.2014116Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "599a36b7-56fa-495a-a866-31a56693a1da", + "resourceGuid": "e30cef40-971f-4b34-b9fd-116c531fba14", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +438,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +446,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +463,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ffe0532f-daaa-4056-92a8-6e82d52b56f7?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/60debc8d-c104-495c-95cd-8e22fdfe1b74?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:20 GMT", + "Date": "Tue, 25 Oct 2022 13:37:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +478,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "10128007-4c3f-42b3-93f8-1ee5b9adeb82", - "x-ms-correlation-request-id": "0c2050de-8508-4ec3-ac5b-6033cc75666b", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084520Z:0c2050de-8508-4ec3-ac5b-6033cc75666b" + "x-ms-arm-service-request-id": "4130bcc5-2afc-4a8b-8242-04774f2dee42", + "x-ms-correlation-request-id": "8f80890e-8d3f-49a8-b38e-b52d82638055", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133723Z:8f80890e-8d3f-49a8-b38e-b52d82638055" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default", - "etag": "W/\u0022d3fb125c-7fea-4552-94d1-dc88b02f55c9\u0022", + "etag": "W/\u0022449d87d5-5ef2-47e3-82b5-00f732529b95\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +494,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022d3fb125c-7fea-4552-94d1-dc88b02f55c9\u0022", + "etag": "W/\u0022449d87d5-5ef2-47e3-82b5-00f732529b95\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +514,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ffe0532f-daaa-4056-92a8-6e82d52b56f7?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/60debc8d-c104-495c-95cd-8e22fdfe1b74?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +528,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:23 GMT", + "Date": "Tue, 25 Oct 2022 13:37:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +539,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7d1dcc78-ee01-4f83-934a-2aba039ba40a", - "x-ms-correlation-request-id": "a3a6e775-cd5a-4b1d-a4a5-3adea4ae388f", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084523Z:a3a6e775-cd5a-4b1d-a4a5-3adea4ae388f" + "x-ms-arm-service-request-id": "94730231-3aa8-40a5-a2dd-e73abc1e7f64", + "x-ms-correlation-request-id": "e0bdb2df-5fac-44fc-9c33-6976f470f27e", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133724Z:e0bdb2df-5fac-44fc-9c33-6976f470f27e" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +563,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:23 GMT", - "ETag": "W/\u0022d48ce1cd-5b0e-40cd-9949-6616f1905051\u0022", + "Date": "Tue, 25 Oct 2022 13:37:24 GMT", + "ETag": "W/\u0022254148ba-3936-48a6-8964-426a15b84e47\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +575,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9925aa82-5994-41d0-a8cb-0c36f611976f", - "x-ms-correlation-request-id": "dba843dd-dc5e-467c-805f-9744f6b035a8", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084524Z:dba843dd-dc5e-467c-805f-9744f6b035a8" + "x-ms-arm-service-request-id": "39c95408-611e-44a0-b211-f9968ee9c433", + "x-ms-correlation-request-id": "73fc3f27-25df-4929-a6e7-aff35927e063", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133724Z:73fc3f27-25df-4929-a6e7-aff35927e063" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default", - "etag": "W/\u0022d48ce1cd-5b0e-40cd-9949-6616f1905051\u0022", + "etag": "W/\u0022254148ba-3936-48a6-8964-426a15b84e47\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +591,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022d48ce1cd-5b0e-40cd-9949-6616f1905051\u0022", + "etag": "W/\u0022254148ba-3936-48a6-8964-426a15b84e47\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +617,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +627,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:23 GMT", + "Date": "Tue, 25 Oct 2022 13:37:24 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +711,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +721,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:23 GMT", + "Date": "Tue, 25 Oct 2022 13:37:24 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +782,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "78aeca36-fc99-4067-bf32-c0e74681f8b6", + "client-request-id": "0fc54c3d-c2ac-43fa-8677-eec95abf161e", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "78aeca36-fc99-4067-bf32-c0e74681f8b6", + "client-request-id": "0fc54c3d-c2ac-43fa-8677-eec95abf161e", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:24 GMT", + "Date": "Tue, 25 Oct 2022 13:37:24 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +811,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +831,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/976d7940-109f-4093-b4b2-2ce4645d68fd?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb0e8854-30d3-431c-b438-3a78be09546d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:27 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A45%3A27.2716226Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:37:28 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A27.0773247Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55fde084-cb02-4c76-bc3f-5f4b4889880e", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084528Z:55fde084-cb02-4c76-bc3f-5f4b4889880e", + "x-ms-correlation-request-id": "ad7ea3bc-e431-4cd3-921c-d234a1975c57", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133728Z:ad7ea3bc-e431-4cd3-921c-d234a1975c57", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668", "name": "sdk-py-tests-acc-1-8a942668", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A45%3A27.2716226Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A27.0773247Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:45:25.4494771Z" + "CreatedOnDate": "2022-10-25T13:37:25.9837296Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +869,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:45:26.3966322Z", + "createdAt": "2022-10-25T13:37:26.8286638Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:45:26.3966322Z" + "lastModifiedAt": "2022-10-25T13:37:26.8286638Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/976d7940-109f-4093-b4b2-2ce4645d68fd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb0e8854-30d3-431c-b438-3a78be09546d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +891,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:57 GMT", + "Date": "Tue, 25 Oct 2022 13:37:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +899,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84ad9eea-5bb6-4b69-9f6e-7cbf17a964fa", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084558Z:84ad9eea-5bb6-4b69-9f6e-7cbf17a964fa", + "x-ms-correlation-request-id": "0baba625-ec54-4129-aaaa-68c2abdd9d3e", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133728Z:0baba625-ec54-4129-aaaa-68c2abdd9d3e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/976d7940-109f-4093-b4b2-2ce4645d68fd", - "name": "976d7940-109f-4093-b4b2-2ce4645d68fd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fb0e8854-30d3-431c-b438-3a78be09546d", + "name": "fb0e8854-30d3-431c-b438-3a78be09546d", "status": "Succeeded", - "startTime": "2022-09-19T08:45:27.2793285Z", - "endTime": "2022-09-19T08:45:27.3262176Z", + "startTime": "2022-10-25T13:37:27.076177Z", + "endTime": "2022-10-25T13:37:27.1074115Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668" @@ -853,7 +923,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +931,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:45:58 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A45%3A27.331801Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:37:28 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A27.1054728Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +940,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c55c7df1-0b53-4b1e-9362-dab52167eb43", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084558Z:c55c7df1-0b53-4b1e-9362-dab52167eb43", + "x-ms-correlation-request-id": "209e3ceb-cadd-4b18-8a04-431086ada0b1", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133728Z:209e3ceb-cadd-4b18-8a04-431086ada0b1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668", "name": "sdk-py-tests-acc-1-8a942668", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A45%3A27.331801Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A27.1054728Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:45:25.4494771Z" + "CreatedOnDate": "2022-10-25T13:37:25.9837296Z" }, "properties": { "activeDirectories": [ @@ -911,10 +981,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:45:26.3966322Z", + "createdAt": "2022-10-25T13:37:26.8286638Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:45:26.3966322Z" + "lastModifiedAt": "2022-10-25T13:37:26.8286638Z" } } }, @@ -927,7 +997,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +1010,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/677d11bb-2f0d-427d-9bae-01c43ac55c6b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5fea52e-9a0f-46ef-9790-0749111e0a06?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "922", + "Content-Length": "921", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:46:01 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A46%3A00.8935533Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:37:31 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A30.562316Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc35b6fb-fb14-4085-840f-1a5016c31680", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084602Z:dc35b6fb-fb14-4085-840f-1a5016c31680", + "x-ms-correlation-request-id": "12b0bbd6-b2d5-418c-a928-8c96df873e3f", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133731Z:12b0bbd6-b2d5-418c-a928-8c96df873e3f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A46%3A00.8935533Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A30.562316Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:45:59.4911787Z" + "CreatedOnDate": "2022-10-25T13:37:29.2445868Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +1047,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:46:00.6937697Z", + "createdAt": "2022-10-25T13:37:30.2524284Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:46:00.6937697Z" + "lastModifiedAt": "2022-10-25T13:37:30.2524284Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/677d11bb-2f0d-427d-9bae-01c43ac55c6b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5fea52e-9a0f-46ef-9790-0749111e0a06?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1069,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:46:31 GMT", + "Date": "Tue, 25 Oct 2022 13:37:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1077,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebb93ef9-226a-409a-8ac9-e0554d8afac6", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084632Z:ebb93ef9-226a-409a-8ac9-e0554d8afac6", + "x-ms-correlation-request-id": "ce93403f-cbce-44f0-9099-86fde455783b", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133731Z:ce93403f-cbce-44f0-9099-86fde455783b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/677d11bb-2f0d-427d-9bae-01c43ac55c6b", - "name": "677d11bb-2f0d-427d-9bae-01c43ac55c6b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5fea52e-9a0f-46ef-9790-0749111e0a06", + "name": "c5fea52e-9a0f-46ef-9790-0749111e0a06", "status": "Succeeded", - "startTime": "2022-09-19T08:46:00.8902268Z", - "endTime": "2022-09-19T08:46:01.9527423Z", + "startTime": "2022-10-25T13:37:30.5660533Z", + "endTime": "2022-10-25T13:37:31.3631404Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1101,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1109,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:46:32 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A46%3A01.9590771Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:37:31 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A31.3570581Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1118,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87eede3e-08d0-4e75-9688-124f0e9e7b08", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084632Z:87eede3e-08d0-4e75-9688-124f0e9e7b08", + "x-ms-correlation-request-id": "80ec16b6-a378-4b56-811b-83b6c8d723d3", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133732Z:80ec16b6-a378-4b56-811b-83b6c8d723d3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A46%3A01.9590771Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A31.3570581Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:45:59.4911787Z" + "CreatedOnDate": "2022-10-25T13:37:29.2445868Z" }, "properties": { - "poolId": "6436fe81-fbb0-e60a-e30a-be26e9e0cf5f", + "poolId": "8b9400b9-5a19-90f5-7514-6197cac32d43", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1146,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:46:00.6937697Z", + "createdAt": "2022-10-25T13:37:30.2524284Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:46:00.6937697Z" + "lastModifiedAt": "2022-10-25T13:37:30.2524284Z" } } }, @@ -1092,7 +1162,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1192,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "1585", + "Content-Length": "1583", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:46:35 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A46%3A35.2030856Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:37:34 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A34.2791729Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a29aade0-2287-4095-a63b-9e33784c23a4", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084636Z:a29aade0-2287-4095-a63b-9e33784c23a4", + "x-ms-correlation-request-id": "43178026-c4c0-4bb3-ad1f-254cd190a947", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133735Z:43178026-c4c0-4bb3-ad1f-254cd190a947", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668", "name": "sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8a942668", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A46%3A35.2030856Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A37%3A34.2791729Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:46:33.1883446Z" + "CreatedOnDate": "2022-10-25T13:37:32.3405569Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1245,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:46:34.2721448Z", + "createdAt": "2022-10-25T13:37:33.473587Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:46:34.2721448Z" + "lastModifiedAt": "2022-10-25T13:37:33.473587Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1267,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:47:06 GMT", + "Date": "Tue, 25 Oct 2022 13:37:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1275,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9c0bb62-0e3a-4997-93b5-09429ae8aa92", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084706Z:b9c0bb62-0e3a-4997-93b5-09429ae8aa92", + "x-ms-correlation-request-id": "5ed29c7f-4014-4434-8306-f194a7aa6fa5", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133735Z:5ed29c7f-4014-4434-8306-f194a7aa6fa5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb", - "name": "47108428-1ccd-4b29-82cb-bd5980f6dabb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", "status": "Creating", - "startTime": "2022-09-19T08:46:35.2056119Z", + "startTime": "2022-10-25T13:37:34.2858423Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1293,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1307,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:47:35 GMT", + "Date": "Tue, 25 Oct 2022 13:38:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1315,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5cf535d6-cdbb-4516-9c20-984f403888fb", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084736Z:5cf535d6-cdbb-4516-9c20-984f403888fb", + "x-ms-correlation-request-id": "61862dfb-b690-42a5-9bec-57f57ddf856b", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133805Z:61862dfb-b690-42a5-9bec-57f57ddf856b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb", - "name": "47108428-1ccd-4b29-82cb-bd5980f6dabb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", "status": "Creating", - "startTime": "2022-09-19T08:46:35.2056119Z", + "startTime": "2022-10-25T13:37:34.2858423Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1333,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1347,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:48:06 GMT", + "Date": "Tue, 25 Oct 2022 13:38:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1355,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1e2c73e-c9f8-4e3a-a7cd-022e5161e358", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084806Z:b1e2c73e-c9f8-4e3a-a7cd-022e5161e358", + "x-ms-correlation-request-id": "d980f254-1394-4912-84fe-8631037cff3e", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133835Z:d980f254-1394-4912-84fe-8631037cff3e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb", - "name": "47108428-1ccd-4b29-82cb-bd5980f6dabb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", "status": "Creating", - "startTime": "2022-09-19T08:46:35.2056119Z", + "startTime": "2022-10-25T13:37:34.2858423Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1373,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1387,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:48:36 GMT", + "Date": "Tue, 25 Oct 2022 13:39:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1395,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09d36aa5-456b-4f4c-bb62-ce4d3b8d72a7", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084837Z:09d36aa5-456b-4f4c-bb62-ce4d3b8d72a7", + "x-ms-correlation-request-id": "9288136f-f1ae-4696-92bf-6c07a9f92b6f", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133906Z:9288136f-f1ae-4696-92bf-6c07a9f92b6f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb", - "name": "47108428-1ccd-4b29-82cb-bd5980f6dabb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", "status": "Creating", - "startTime": "2022-09-19T08:46:35.2056119Z", + "startTime": "2022-10-25T13:37:34.2858423Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1413,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1427,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:49:06 GMT", + "Date": "Tue, 25 Oct 2022 13:39:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1435,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "604f0ecf-b276-47fc-b14c-27b5cca7c5c2", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084907Z:604f0ecf-b276-47fc-b14c-27b5cca7c5c2", + "x-ms-correlation-request-id": "a9f98906-5495-4acd-8a6d-8a247e3bcd91", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T133936Z:a9f98906-5495-4acd-8a6d-8a247e3bcd91", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb", - "name": "47108428-1ccd-4b29-82cb-bd5980f6dabb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", "status": "Creating", - "startTime": "2022-09-19T08:46:35.2056119Z", + "startTime": "2022-10-25T13:37:34.2858423Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1453,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1467,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:49:36 GMT", + "Date": "Tue, 25 Oct 2022 13:40:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1475,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09b2df26-30c4-4564-83b5-bbf1dbc5cd1f", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T084937Z:09b2df26-30c4-4564-83b5-bbf1dbc5cd1f", + "x-ms-correlation-request-id": "15a1503f-0e71-489b-b3b2-9712f9df38ea", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134006Z:15a1503f-0e71-489b-b3b2-9712f9df38ea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb", - "name": "47108428-1ccd-4b29-82cb-bd5980f6dabb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", "status": "Creating", - "startTime": "2022-09-19T08:46:35.2056119Z", + "startTime": "2022-10-25T13:37:34.2858423Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1493,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1507,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:50:07 GMT", + "Date": "Tue, 25 Oct 2022 13:40:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1515,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b134e186-0505-4689-909f-ae2ea01bbc33", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085007Z:b134e186-0505-4689-909f-ae2ea01bbc33", + "x-ms-correlation-request-id": "6f045175-216f-445b-b76f-9eec9a0d9878", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134036Z:6f045175-216f-445b-b76f-9eec9a0d9878", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb", - "name": "47108428-1ccd-4b29-82cb-bd5980f6dabb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", "status": "Creating", - "startTime": "2022-09-19T08:46:35.2056119Z", + "startTime": "2022-10-25T13:37:34.2858423Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1533,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1547,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:50:37 GMT", + "Date": "Tue, 25 Oct 2022 13:41:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1555,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7075911b-e0df-4d43-9b2b-9b7659eac119", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085038Z:7075911b-e0df-4d43-9b2b-9b7659eac119", + "x-ms-correlation-request-id": "246a41b5-279e-4215-b39c-1cd217f292d4", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134107Z:246a41b5-279e-4215-b39c-1cd217f292d4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47108428-1ccd-4b29-82cb-bd5980f6dabb", - "name": "47108428-1ccd-4b29-82cb-bd5980f6dabb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "status": "Creating", + "startTime": "2022-10-25T13:37:34.2858423Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:41:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b25d16b9-4df0-4044-95e7-4fda7a88cdc4", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134138Z:b25d16b9-4df0-4044-95e7-4fda7a88cdc4", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "status": "Creating", + "startTime": "2022-10-25T13:37:34.2858423Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:42:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8fccef29-d16e-42c0-8a94-537f81483c26", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134208Z:8fccef29-d16e-42c0-8a94-537f81483c26", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "status": "Creating", + "startTime": "2022-10-25T13:37:34.2858423Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:42:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "163cf10d-8961-4e36-b0a1-6ed4ab080492", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134238Z:163cf10d-8961-4e36-b0a1-6ed4ab080492", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bace7e6c-637b-4fca-8dd9-e2515cb52ce4", + "name": "bace7e6c-637b-4fca-8dd9-e2515cb52ce4", "status": "Succeeded", - "startTime": "2022-09-19T08:46:35.2056119Z", - "endTime": "2022-09-19T08:50:24.673812Z", + "startTime": "2022-10-25T13:37:34.2858423Z", + "endTime": "2022-10-25T13:42:11.7705683Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668" @@ -1509,7 +1699,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1707,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:50:38 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A50%3A24.6748301Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:42:38 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A42%3A11.7596869Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1716,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3299485c-46ea-400a-8192-16c25aaef4d9", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085039Z:3299485c-46ea-400a-8192-16c25aaef4d9", + "x-ms-correlation-request-id": "95c47b31-bef7-4721-9759-4b9a9404d134", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134239Z:95c47b31-bef7-4721-9759-4b9a9404d134", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668", "name": "sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8a942668", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A50%3A24.6748301Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A42%3A11.7596869Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:46:33.1883446Z" + "CreatedOnDate": "2022-10-25T13:37:32.3405569Z" }, "properties": { - "fileSystemId": "79e04b62-e851-4275-ff44-06298fd8f921", + "fileSystemId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-8a942668", "usageThreshold": 107374182400, @@ -1569,7 +1759,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_69909f8a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_710ee7ea", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1774,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "79e04b62-e851-4275-ff44-06298fd8f921", - "fileSystemId": "79e04b62-e851-4275-ff44-06298fd8f921", + "mountTargetId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", + "fileSystemId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1795,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:46:34.2721448Z", + "createdAt": "2022-10-25T13:37:33.473587Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:46:34.2721448Z" + "lastModifiedAt": "2022-10-25T13:37:33.473587Z" } } }, @@ -1619,7 +1809,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1627,8 +1817,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:50:39 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A50%3A24.6748301Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:42:39 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A42%3A11.7596869Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1636,22 +1826,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39024b44-8dda-467a-9dfe-1bc59f0b384b", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085039Z:39024b44-8dda-467a-9dfe-1bc59f0b384b", + "x-ms-correlation-request-id": "21713a28-dedd-4c35-ab6c-8a4c078c5e4e", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134239Z:21713a28-dedd-4c35-ab6c-8a4c078c5e4e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668", "name": "sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8a942668", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A50%3A24.6748301Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A42%3A11.7596869Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:46:33.1883446Z" + "CreatedOnDate": "2022-10-25T13:37:32.3405569Z" }, "properties": { - "fileSystemId": "79e04b62-e851-4275-ff44-06298fd8f921", + "fileSystemId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-8a942668", "usageThreshold": 107374182400, @@ -1679,7 +1869,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_69909f8a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_710ee7ea", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1694,8 +1884,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "79e04b62-e851-4275-ff44-06298fd8f921", - "fileSystemId": "79e04b62-e851-4275-ff44-06298fd8f921", + "mountTargetId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", + "fileSystemId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", "ipAddress": "10.0.0.4" } ], @@ -1715,10 +1905,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:46:34.2721448Z", + "createdAt": "2022-10-25T13:37:33.473587Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:46:34.2721448Z" + "lastModifiedAt": "2022-10-25T13:37:33.473587Z" } } }, @@ -1731,27 +1921,27 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8090b6ea-28a9-480f-9812-6ae557e5cb22?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be3adf7a-2a60-43e1-bf5b-41cc0a196553?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "522", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:50:39 GMT", + "Date": "Tue, 25 Oct 2022 13:42:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8090b6ea-28a9-480f-9812-6ae557e5cb22?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be3adf7a-2a60-43e1-bf5b-41cc0a196553?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12162014-9ee8-4c86-a469-5e08b4e36cc7", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085040Z:12162014-9ee8-4c86-a469-5e08b4e36cc7", + "x-ms-correlation-request-id": "04fada8c-7903-4fac-aa3b-5720b50570f3", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134240Z:04fada8c-7903-4fac-aa3b-5720b50570f3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1765,13 +1955,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8090b6ea-28a9-480f-9812-6ae557e5cb22?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be3adf7a-2a60-43e1-bf5b-41cc0a196553?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1779,7 +1969,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:51:09 GMT", + "Date": "Tue, 25 Oct 2022 13:42:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1787,17 +1977,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "856b4f39-3131-466b-a1bc-f4a234ca7776", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085110Z:856b4f39-3131-466b-a1bc-f4a234ca7776", + "x-ms-correlation-request-id": "49523072-48fa-44f6-b329-b1a46f271ab7", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134240Z:49523072-48fa-44f6-b329-b1a46f271ab7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8090b6ea-28a9-480f-9812-6ae557e5cb22", - "name": "8090b6ea-28a9-480f-9812-6ae557e5cb22", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be3adf7a-2a60-43e1-bf5b-41cc0a196553", + "name": "be3adf7a-2a60-43e1-bf5b-41cc0a196553", + "status": "Creating", + "startTime": "2022-10-25T13:42:40.3590071Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots/sdk-py-tests-snapshot-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be3adf7a-2a60-43e1-bf5b-41cc0a196553?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:43:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f2cedd69-f13a-465d-93bc-c499997ca1dc", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134311Z:f2cedd69-f13a-465d-93bc-c499997ca1dc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be3adf7a-2a60-43e1-bf5b-41cc0a196553", + "name": "be3adf7a-2a60-43e1-bf5b-41cc0a196553", "status": "Succeeded", - "startTime": "2022-09-19T08:50:40.2007798Z", - "endTime": "2022-09-19T08:50:42.9046742Z", + "startTime": "2022-10-25T13:42:40.3590071Z", + "endTime": "2022-10-25T13:42:48.0628197Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots/sdk-py-tests-snapshot-1" @@ -1805,41 +2035,41 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8090b6ea-28a9-480f-9812-6ae557e5cb22?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be3adf7a-2a60-43e1-bf5b-41cc0a196553?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "638", + "Content-Length": "639", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:51:10 GMT", + "Date": "Tue, 25 Oct 2022 13:43:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c892bf7-97ff-4960-8c17-81cac1b00cf3", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085110Z:0c892bf7-97ff-4960-8c17-81cac1b00cf3", + "x-ms-correlation-request-id": "a080cc7e-67eb-41b0-82ea-c04f04438311", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134311Z:a080cc7e-67eb-41b0-82ea-c04f04438311", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots/sdk-py-tests-snapshot-1", "name": "sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8a942668/sdk-py-tests-snapshot-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots", - "etag": "9/19/2022 8:50:42 AM", + "etag": "10/25/2022 1:42:48 PM", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "snapshotId": "40574206-227a-fc59-9cfc-63ba8a57a15d", - "created": "2022-09-19T08:50:40Z" + "snapshotId": "4a8b8b47-3bc4-dee8-f74e-e69f544b0d9d", + "created": "2022-10-25T13:42:41Z" } } }, @@ -1850,7 +2080,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1858,8 +2088,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:51:10 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T08%3A50%3A24.6748301Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:43:10 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A42%3A11.7596869Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1867,22 +2097,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0aeaead7-bcb6-46fe-a723-8303db0f4d25", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085111Z:0aeaead7-bcb6-46fe-a723-8303db0f4d25", + "x-ms-correlation-request-id": "21b46482-e5f1-49cc-b7dd-28385971fe88", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134311Z:21b46482-e5f1-49cc-b7dd-28385971fe88", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668", "name": "sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8a942668", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A50%3A24.6748301Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A42%3A11.7596869Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:46:33.1883446Z" + "CreatedOnDate": "2022-10-25T13:37:32.3405569Z" }, "properties": { - "fileSystemId": "79e04b62-e851-4275-ff44-06298fd8f921", + "fileSystemId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-8a942668", "usageThreshold": 107374182400, @@ -1910,7 +2140,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_69909f8a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_710ee7ea", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1925,8 +2155,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "79e04b62-e851-4275-ff44-06298fd8f921", - "fileSystemId": "79e04b62-e851-4275-ff44-06298fd8f921", + "mountTargetId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", + "fileSystemId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", "ipAddress": "10.0.0.4" } ], @@ -1946,10 +2176,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:46:34.2721448Z", + "createdAt": "2022-10-25T13:37:33.473587Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:46:34.2721448Z" + "lastModifiedAt": "2022-10-25T13:37:33.473587Z" } } }, @@ -1962,27 +2192,27 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/443aec8b-72e7-4588-9126-b16b26e023c5?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a078c5-ca2c-478a-be6f-b34027f50e50?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "522", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:51:11 GMT", + "Date": "Tue, 25 Oct 2022 13:43:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/443aec8b-72e7-4588-9126-b16b26e023c5?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a078c5-ca2c-478a-be6f-b34027f50e50?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13ede3b2-d311-4036-a319-b73b80a643ec", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085111Z:13ede3b2-d311-4036-a319-b73b80a643ec", + "x-ms-correlation-request-id": "2abd9dfe-6c7e-4832-847a-a743799bff00", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134312Z:2abd9dfe-6c7e-4832-847a-a743799bff00", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1996,13 +2226,53 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/443aec8b-72e7-4588-9126-b16b26e023c5?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a078c5-ca2c-478a-be6f-b34027f50e50?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:43:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "716ceaef-7795-4024-8ccc-29317c9b4521", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134312Z:716ceaef-7795-4024-8ccc-29317c9b4521", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a078c5-ca2c-478a-be6f-b34027f50e50", + "name": "24a078c5-ca2c-478a-be6f-b34027f50e50", + "status": "Creating", + "startTime": "2022-10-25T13:43:12.155055Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots/sdk-py-tests-snapshot-2" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a078c5-ca2c-478a-be6f-b34027f50e50?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2010,7 +2280,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:51:41 GMT", + "Date": "Tue, 25 Oct 2022 13:43:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2018,17 +2288,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a55a340-8412-4cce-9a36-16ca95259105", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085142Z:3a55a340-8412-4cce-9a36-16ca95259105", + "x-ms-correlation-request-id": "b4579cae-26f2-4e70-a583-a097efefabb8", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134342Z:b4579cae-26f2-4e70-a583-a097efefabb8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/443aec8b-72e7-4588-9126-b16b26e023c5", - "name": "443aec8b-72e7-4588-9126-b16b26e023c5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a078c5-ca2c-478a-be6f-b34027f50e50", + "name": "24a078c5-ca2c-478a-be6f-b34027f50e50", "status": "Succeeded", - "startTime": "2022-09-19T08:51:11.6314599Z", - "endTime": "2022-09-19T08:51:14.4138679Z", + "startTime": "2022-10-25T13:43:12.155055Z", + "endTime": "2022-10-25T13:43:17.8248212Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots/sdk-py-tests-snapshot-2" @@ -2036,41 +2306,41 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/443aec8b-72e7-4588-9126-b16b26e023c5?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24a078c5-ca2c-478a-be6f-b34027f50e50?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "638", + "Content-Length": "639", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:51:42 GMT", + "Date": "Tue, 25 Oct 2022 13:43:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ef40bc1-a2c0-445d-9d3d-ddd358c15c32", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085142Z:5ef40bc1-a2c0-445d-9d3d-ddd358c15c32", + "x-ms-correlation-request-id": "fe3d357d-8631-4cd0-8fe1-fd12e75ba6e6", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134343Z:fe3d357d-8631-4cd0-8fe1-fd12e75ba6e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots/sdk-py-tests-snapshot-2", "name": "sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8a942668/sdk-py-tests-snapshot-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots", - "etag": "9/19/2022 8:51:14 AM", + "etag": "10/25/2022 1:43:17 PM", "location": "westus2", "properties": { "provisioningState": "Succeeded", - "snapshotId": "1d25ca85-b527-6d52-9ce0-0488c98f3bdb", - "created": "2022-09-19T08:51:11Z" + "snapshotId": "2b658c8e-0656-cdb8-2569-53c92cfbb73a", + "created": "2022-10-25T13:43:12Z" } } }, @@ -2081,7 +2351,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2089,7 +2359,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:51:42 GMT", + "Date": "Tue, 25 Oct 2022 13:43:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2097,9 +2367,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55779f3b-dc8d-498a-b629-e65b896e956a", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085143Z:55779f3b-dc8d-498a-b629-e65b896e956a", + "x-ms-correlation-request-id": "a7138361-3d1b-4fb4-bd87-2af67332597c", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134344Z:a7138361-3d1b-4fb4-bd87-2af67332597c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2111,8 +2381,8 @@ "location": "westus2", "properties": { "provisioningState": "Succeeded", - "snapshotId": "40574206-227a-fc59-9cfc-63ba8a57a15d", - "created": "2022-09-19T08:50:40Z" + "snapshotId": "4a8b8b47-3bc4-dee8-f74e-e69f544b0d9d", + "created": "2022-10-25T13:42:41Z" } }, { @@ -2122,8 +2392,8 @@ "location": "westus2", "properties": { "provisioningState": "Succeeded", - "snapshotId": "1d25ca85-b527-6d52-9ce0-0488c98f3bdb", - "created": "2022-09-19T08:51:11Z" + "snapshotId": "2b658c8e-0656-cdb8-2569-53c92cfbb73a", + "created": "2022-10-25T13:43:12Z" } } ] @@ -2137,36 +2407,76 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ca8608e-d110-4bb0-8b26-fd6ec0ffca58?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67f3e15d-5658-48c0-a097-0f722559893b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 08:51:43 GMT", + "Date": "Tue, 25 Oct 2022 13:43:44 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ca8608e-d110-4bb0-8b26-fd6ec0ffca58?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67f3e15d-5658-48c0-a097-0f722559893b?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63ec1f19-db8f-4cb7-861c-016e2ca6e2ef", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085143Z:63ec1f19-db8f-4cb7-861c-016e2ca6e2ef", + "x-ms-correlation-request-id": "f20d8939-d236-4d32-a227-a8c966b24e3e", + "x-ms-ratelimit-remaining-subscription-deletes": "14949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134344Z:f20d8939-d236-4d32-a227-a8c966b24e3e", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ca8608e-d110-4bb0-8b26-fd6ec0ffca58?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67f3e15d-5658-48c0-a097-0f722559893b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:43:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0be5e89d-34b7-4050-a9f3-f832d075018f", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134344Z:0be5e89d-34b7-4050-a9f3-f832d075018f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67f3e15d-5658-48c0-a097-0f722559893b", + "name": "67f3e15d-5658-48c0-a097-0f722559893b", + "status": "Deleting", + "startTime": "2022-10-25T13:43:44.5672698Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots/sdk-py-tests-snapshot-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67f3e15d-5658-48c0-a097-0f722559893b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2174,7 +2484,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:52:13 GMT", + "Date": "Tue, 25 Oct 2022 13:44:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2182,17 +2492,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63ea240b-0076-472d-aff9-3c3900cf7616", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085214Z:63ea240b-0076-472d-aff9-3c3900cf7616", + "x-ms-correlation-request-id": "7e259e56-c60d-4d29-a873-f258ce0e302e", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134415Z:7e259e56-c60d-4d29-a873-f258ce0e302e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ca8608e-d110-4bb0-8b26-fd6ec0ffca58", - "name": "8ca8608e-d110-4bb0-8b26-fd6ec0ffca58", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67f3e15d-5658-48c0-a097-0f722559893b", + "name": "67f3e15d-5658-48c0-a097-0f722559893b", "status": "Succeeded", - "startTime": "2022-09-19T08:51:43.6926133Z", - "endTime": "2022-09-19T08:51:45.8689645Z", + "startTime": "2022-10-25T13:43:44.5672698Z", + "endTime": "2022-10-25T13:43:50.0883005Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots/sdk-py-tests-snapshot-1" @@ -2200,13 +2510,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8ca8608e-d110-4bb0-8b26-fd6ec0ffca58?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67f3e15d-5658-48c0-a097-0f722559893b?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2214,7 +2524,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:52:13 GMT", + "Date": "Tue, 25 Oct 2022 13:44:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2222,9 +2532,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90080c5f-de3c-4716-abf3-9cf7210a4b01", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085214Z:90080c5f-de3c-4716-abf3-9cf7210a4b01", + "x-ms-correlation-request-id": "ec802caa-bb33-4909-b726-523ae105d3f1", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134415Z:ec802caa-bb33-4909-b726-523ae105d3f1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2241,7 +2551,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2249,15 +2559,15 @@ "Cache-Control": "no-cache", "Content-Length": "326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:52:34 GMT", + "Date": "Tue, 25 Oct 2022 13:44:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70f9359e-b70f-41a1-af96-1200ecfa5706", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085235Z:70f9359e-b70f-41a1-af96-1200ecfa5706", + "x-ms-correlation-request-id": "ba4a2788-41c4-44f1-b2ed-9801aa1ce1b8", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134436Z:ba4a2788-41c4-44f1-b2ed-9801aa1ce1b8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2275,36 +2585,76 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0065e4cc-5165-4a4d-b033-15b605cb6a8e?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f1d1248-2dd1-488a-8539-e9df59a7efa1?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 08:52:35 GMT", + "Date": "Tue, 25 Oct 2022 13:44:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0065e4cc-5165-4a4d-b033-15b605cb6a8e?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f1d1248-2dd1-488a-8539-e9df59a7efa1?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "286b1808-0dc2-401d-a446-c9bac4bc60e3", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085235Z:286b1808-0dc2-401d-a446-c9bac4bc60e3", + "x-ms-correlation-request-id": "d9e1b6ec-20b2-4887-b809-97e73a44cc11", + "x-ms-ratelimit-remaining-subscription-deletes": "14948", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134436Z:d9e1b6ec-20b2-4887-b809-97e73a44cc11", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0065e4cc-5165-4a4d-b033-15b605cb6a8e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f1d1248-2dd1-488a-8539-e9df59a7efa1?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:44:36 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b3c303b8-7651-45a4-b56f-d20798655a61", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134437Z:b3c303b8-7651-45a4-b56f-d20798655a61", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f1d1248-2dd1-488a-8539-e9df59a7efa1", + "name": "3f1d1248-2dd1-488a-8539-e9df59a7efa1", + "status": "Deleting", + "startTime": "2022-10-25T13:44:36.8646359Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots/sdk-py-tests-snapshot-2" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f1d1248-2dd1-488a-8539-e9df59a7efa1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2312,7 +2662,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:53:05 GMT", + "Date": "Tue, 25 Oct 2022 13:45:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2320,17 +2670,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d06606a-285b-437a-ba1e-4f71e923204b", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085306Z:1d06606a-285b-437a-ba1e-4f71e923204b", + "x-ms-correlation-request-id": "48b6e568-7160-4897-80cc-313aa64687d2", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134507Z:48b6e568-7160-4897-80cc-313aa64687d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0065e4cc-5165-4a4d-b033-15b605cb6a8e", - "name": "0065e4cc-5165-4a4d-b033-15b605cb6a8e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f1d1248-2dd1-488a-8539-e9df59a7efa1", + "name": "3f1d1248-2dd1-488a-8539-e9df59a7efa1", "status": "Succeeded", - "startTime": "2022-09-19T08:52:35.6568603Z", - "endTime": "2022-09-19T08:52:38.3600112Z", + "startTime": "2022-10-25T13:44:36.8646359Z", + "endTime": "2022-10-25T13:44:43.6776459Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668/snapshots/sdk-py-tests-snapshot-2" @@ -2338,13 +2688,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0065e4cc-5165-4a4d-b033-15b605cb6a8e?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3f1d1248-2dd1-488a-8539-e9df59a7efa1?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2352,7 +2702,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:53:05 GMT", + "Date": "Tue, 25 Oct 2022 13:45:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2360,9 +2710,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab1beef7-d4cf-4acd-bd18-0151989fea5f", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085306Z:ab1beef7-d4cf-4acd-bd18-0151989fea5f", + "x-ms-correlation-request-id": "266f17e5-05d9-45b7-97d4-2c0e2e1ddc29", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134507Z:266f17e5-05d9-45b7-97d4-2c0e2e1ddc29", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2379,7 +2729,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2387,15 +2737,15 @@ "Cache-Control": "no-cache", "Content-Length": "326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:53:27 GMT", + "Date": "Tue, 25 Oct 2022 13:45:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d61aca10-123f-47c2-afe0-c2fafd39d09a", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085327Z:d61aca10-123f-47c2-afe0-c2fafd39d09a", + "x-ms-correlation-request-id": "46756b68-81e1-401c-a647-4e9f1fde85af", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134529Z:46756b68-81e1-401c-a647-4e9f1fde85af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2413,36 +2763,76 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 08:53:27 GMT", + "Date": "Tue, 25 Oct 2022 13:45:28 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f7ea0a9-3ce9-4f39-8176-706d2150b9d6", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085328Z:5f7ea0a9-3ce9-4f39-8176-706d2150b9d6", + "x-ms-correlation-request-id": "07f7fbe1-6ace-4232-a54c-d65a9572c788", + "x-ms-ratelimit-remaining-subscription-deletes": "14947", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134529Z:07f7fbe1-6ace-4232-a54c-d65a9572c788", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:45:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c81ba2b8-832e-4c64-b83c-58cab2b31d0c", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134530Z:c81ba2b8-832e-4c64-b83c-58cab2b31d0c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9", + "name": "e50b84de-0182-4f0e-9224-ce69872845e9", + "status": "Deleting", + "startTime": "2022-10-25T13:45:29.8357107Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2450,7 +2840,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:53:57 GMT", + "Date": "Tue, 25 Oct 2022 13:46:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2458,16 +2848,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65dce21e-e3dd-42a3-a260-fe519f682adb", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085358Z:65dce21e-e3dd-42a3-a260-fe519f682adb", + "x-ms-correlation-request-id": "3a259e66-77b4-4a77-8275-cac63218555a", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134600Z:3a259e66-77b4-4a77-8275-cac63218555a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90", - "name": "31be0683-da26-4202-b483-00d495df7d90", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9", + "name": "e50b84de-0182-4f0e-9224-ce69872845e9", "status": "Deleting", - "startTime": "2022-09-19T08:53:27.9575847Z", + "startTime": "2022-10-25T13:45:29.8357107Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2476,13 +2866,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2490,7 +2880,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:54:27 GMT", + "Date": "Tue, 25 Oct 2022 13:46:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2498,16 +2888,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5700f714-14a9-4c5e-a03d-e8012f96f796", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085428Z:5700f714-14a9-4c5e-a03d-e8012f96f796", + "x-ms-correlation-request-id": "a23bfe63-2e58-4fb7-8fd9-c1c962c66569", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134631Z:a23bfe63-2e58-4fb7-8fd9-c1c962c66569", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90", - "name": "31be0683-da26-4202-b483-00d495df7d90", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9", + "name": "e50b84de-0182-4f0e-9224-ce69872845e9", "status": "Deleting", - "startTime": "2022-09-19T08:53:27.9575847Z", + "startTime": "2022-10-25T13:45:29.8357107Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2516,13 +2906,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2530,7 +2920,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:54:58 GMT", + "Date": "Tue, 25 Oct 2022 13:47:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2538,16 +2928,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48c1c8e4-3137-415e-b5d3-a6f109c18ab7", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085458Z:48c1c8e4-3137-415e-b5d3-a6f109c18ab7", + "x-ms-correlation-request-id": "5bc9e3b0-d4c1-4991-a947-4a399acd63b4", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134701Z:5bc9e3b0-d4c1-4991-a947-4a399acd63b4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90", - "name": "31be0683-da26-4202-b483-00d495df7d90", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9", + "name": "e50b84de-0182-4f0e-9224-ce69872845e9", "status": "Deleting", - "startTime": "2022-09-19T08:53:27.9575847Z", + "startTime": "2022-10-25T13:45:29.8357107Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2556,13 +2946,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2570,7 +2960,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:55:29 GMT", + "Date": "Tue, 25 Oct 2022 13:47:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2578,16 +2968,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e2251b1-52b0-4e97-b7f6-0c55ad5f79e1", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085529Z:5e2251b1-52b0-4e97-b7f6-0c55ad5f79e1", + "x-ms-correlation-request-id": "ca5457e8-31b5-4645-b757-4c1e9d82cdf1", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134732Z:ca5457e8-31b5-4645-b757-4c1e9d82cdf1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90", - "name": "31be0683-da26-4202-b483-00d495df7d90", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9", + "name": "e50b84de-0182-4f0e-9224-ce69872845e9", "status": "Deleting", - "startTime": "2022-09-19T08:53:27.9575847Z", + "startTime": "2022-10-25T13:45:29.8357107Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2596,13 +2986,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2610,7 +3000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:55:58 GMT", + "Date": "Tue, 25 Oct 2022 13:48:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2618,16 +3008,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "781d064a-682a-4dae-8e91-d454b0b78538", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085559Z:781d064a-682a-4dae-8e91-d454b0b78538", + "x-ms-correlation-request-id": "d8d82da1-4fd9-4325-8f17-cf0001bb863c", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134802Z:d8d82da1-4fd9-4325-8f17-cf0001bb863c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90", - "name": "31be0683-da26-4202-b483-00d495df7d90", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9", + "name": "e50b84de-0182-4f0e-9224-ce69872845e9", "status": "Deleting", - "startTime": "2022-09-19T08:53:27.9575847Z", + "startTime": "2022-10-25T13:45:29.8357107Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2636,13 +3026,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2650,7 +3040,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:56:29 GMT", + "Date": "Tue, 25 Oct 2022 13:48:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2658,17 +3048,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1ea3c40-f3ac-4cd7-966c-8b61dc4a3202", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085630Z:b1ea3c40-f3ac-4cd7-966c-8b61dc4a3202", + "x-ms-correlation-request-id": "a2f23d9b-c593-4723-b3e4-7f171224c5ac", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134832Z:a2f23d9b-c593-4723-b3e4-7f171224c5ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90", - "name": "31be0683-da26-4202-b483-00d495df7d90", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9", + "name": "e50b84de-0182-4f0e-9224-ce69872845e9", "status": "Succeeded", - "startTime": "2022-09-19T08:53:27.9575847Z", - "endTime": "2022-09-19T08:56:03.065209Z", + "startTime": "2022-10-25T13:45:29.8357107Z", + "endTime": "2022-10-25T13:48:15.6645719Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668" @@ -2676,13 +3066,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31be0683-da26-4202-b483-00d495df7d90?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e50b84de-0182-4f0e-9224-ce69872845e9?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2690,7 +3080,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:56:29 GMT", + "Date": "Tue, 25 Oct 2022 13:48:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2698,22 +3088,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21242b37-518d-4cf2-9f48-66b643df371b", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085630Z:21242b37-518d-4cf2-9f48-66b643df371b", + "x-ms-correlation-request-id": "3dbd357c-aa99-4e16-8082-13bf7e376a24", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T134832Z:3dbd357c-aa99-4e16-8082-13bf7e376a24", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668", "name": "sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8a942668", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T08%3A55%3A45.7009749Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A48%3A06.3148635Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:46:33.1883446Z" + "CreatedOnDate": "2022-10-25T13:37:32.3405569Z" }, "properties": { - "fileSystemId": "79e04b62-e851-4275-ff44-06298fd8f921", + "fileSystemId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-8a942668", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2744,19 +3134,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_69909f8a", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_710ee7ea", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8a942668", - "poolId": "6436fe81-fbb0-e60a-e30a-be26e9e0cf5f", + "poolId": "8b9400b9-5a19-90f5-7514-6197cac32d43", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "79e04b62-e851-4275-ff44-06298fd8f921", - "fileSystemId": "79e04b62-e851-4275-ff44-06298fd8f921", + "mountTargetId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", + "fileSystemId": "01fa760d-bf1e-e05b-b8ff-022f2a328108", "startIp": "", "endIp": "", "gateway": "", @@ -2788,10 +3178,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:46:34.2721448Z", + "createdAt": "2022-10-25T13:37:33.473587Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:46:34.2721448Z" + "lastModifiedAt": "2022-10-25T13:37:33.473587Z" } } }, @@ -2802,7 +3192,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2810,14 +3200,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 08:59:52 GMT", + "Date": "Tue, 25 Oct 2022 13:51:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6cf3db39-a2e6-45a1-b36c-a4d1fdc52fc4", + "x-ms-correlation-request-id": "53afa85a-fac1-49f0-9e7a-f270b82c6a92", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T085953Z:6cf3db39-a2e6-45a1-b36c-a4d1fdc52fc4" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135155Z:53afa85a-fac1-49f0-9e7a-f270b82c6a92" }, "ResponseBody": { "error": { @@ -2834,36 +3224,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e69f743f-76e2-49ce-bd17-e114addf74ab?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8412d2-d814-4c08-ad64-770912a19a3a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:00:05 GMT", + "Date": "Tue, 25 Oct 2022 13:52:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e69f743f-76e2-49ce-bd17-e114addf74ab?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8412d2-d814-4c08-ad64-770912a19a3a?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6fe3b06-fa96-4580-bd73-ef159a462e4f", + "x-ms-correlation-request-id": "dc0fef56-4522-4ecf-8af5-f32e131f1cd7", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090005Z:c6fe3b06-fa96-4580-bd73-ef159a462e4f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135208Z:dc0fef56-4522-4ecf-8af5-f32e131f1cd7", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e69f743f-76e2-49ce-bd17-e114addf74ab?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8412d2-d814-4c08-ad64-770912a19a3a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2871,7 +3261,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:00:36 GMT", + "Date": "Tue, 25 Oct 2022 13:52:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2879,17 +3269,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29af4718-5fd1-48a2-8f92-d782bc8cabc1", + "x-ms-correlation-request-id": "f7730f6f-5871-4330-86b2-4c9e2aee1012", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090036Z:29af4718-5fd1-48a2-8f92-d782bc8cabc1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135208Z:f7730f6f-5871-4330-86b2-4c9e2aee1012", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8412d2-d814-4c08-ad64-770912a19a3a", + "name": "3e8412d2-d814-4c08-ad64-770912a19a3a", + "status": "Deleting", + "startTime": "2022-10-25T13:52:08.5024076Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8412d2-d814-4c08-ad64-770912a19a3a?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:52:39 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "011ea0b4-8d2d-40c6-83a6-a5f27cad78e7", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135239Z:011ea0b4-8d2d-40c6-83a6-a5f27cad78e7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e69f743f-76e2-49ce-bd17-e114addf74ab", - "name": "e69f743f-76e2-49ce-bd17-e114addf74ab", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8412d2-d814-4c08-ad64-770912a19a3a", + "name": "3e8412d2-d814-4c08-ad64-770912a19a3a", "status": "Succeeded", - "startTime": "2022-09-19T09:00:05.7744106Z", - "endTime": "2022-09-19T09:00:06.7900655Z", + "startTime": "2022-10-25T13:52:08.5024076Z", + "endTime": "2022-10-25T13:52:09.955905Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1" @@ -2897,13 +3327,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e69f743f-76e2-49ce-bd17-e114addf74ab?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3e8412d2-d814-4c08-ad64-770912a19a3a?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2911,7 +3341,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:00:36 GMT", + "Date": "Tue, 25 Oct 2022 13:52:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2919,22 +3349,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea3a3e6e-67bb-4d2b-9e67-668faea54f73", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090036Z:ea3a3e6e-67bb-4d2b-9e67-668faea54f73", + "x-ms-correlation-request-id": "39f27f4d-91cf-4395-8e9f-9fcf24a8b326", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135239Z:39f27f4d-91cf-4395-8e9f-9fcf24a8b326", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8a942668/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A00%3A05.7823167Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A52%3A08.5057515Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:45:59.4911787Z" + "CreatedOnDate": "2022-10-25T13:37:29.2445868Z" }, "properties": { - "poolId": "6436fe81-fbb0-e60a-e30a-be26e9e0cf5f", + "poolId": "8b9400b9-5a19-90f5-7514-6197cac32d43", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668/capacityPools/sdk-py-tests-pool-1", @@ -2948,10 +3378,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:46:00.6937697Z", + "createdAt": "2022-10-25T13:37:30.2524284Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:46:00.6937697Z" + "lastModifiedAt": "2022-10-25T13:37:30.2524284Z" } } }, @@ -2963,20 +3393,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:00:46 GMT", + "Date": "Tue, 25 Oct 2022 13:52:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a2f2a5a-2edb-4c0f-9573-6321ad82af4f", + "x-ms-correlation-request-id": "25f4520d-55a8-41a8-b466-c7ac77c7e4df", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090046Z:3a2f2a5a-2edb-4c0f-9573-6321ad82af4f" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135249Z:25f4520d-55a8-41a8-b466-c7ac77c7e4df" }, "ResponseBody": null }, @@ -2988,20 +3418,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:00:56 GMT", + "Date": "Tue, 25 Oct 2022 13:52:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72dbc1b5-59c4-4cd7-95fa-a8419d089d26", + "x-ms-correlation-request-id": "c18b116b-ee9d-4d6d-a10b-30e20c837f5c", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090057Z:72dbc1b5-59c4-4cd7-95fa-a8419d089d26" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135300Z:c18b116b-ee9d-4d6d-a10b-30e20c837f5c" }, "ResponseBody": null }, @@ -3013,20 +3443,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:01:07 GMT", + "Date": "Tue, 25 Oct 2022 13:53:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52593601-e888-4c32-9f47-b1530968394a", + "x-ms-correlation-request-id": "99be082d-157d-436c-83d4-9e6e2387941a", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090107Z:52593601-e888-4c32-9f47-b1530968394a" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135310Z:99be082d-157d-436c-83d4-9e6e2387941a" }, "ResponseBody": null }, @@ -3038,20 +3468,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:01:17 GMT", + "Date": "Tue, 25 Oct 2022 13:53:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0dd6de1d-ec20-4aa6-9c48-37307e273df7", + "x-ms-correlation-request-id": "8279b079-84f3-44ea-afda-07e0e44d113f", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090118Z:0dd6de1d-ec20-4aa6-9c48-37307e273df7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135320Z:8279b079-84f3-44ea-afda-07e0e44d113f" }, "ResponseBody": null }, @@ -3062,7 +3492,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -3070,14 +3500,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:01:27 GMT", + "Date": "Tue, 25 Oct 2022 13:53:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20bfa127-9c68-470e-bf95-b4046024dd1c", + "x-ms-correlation-request-id": "ff3f5765-a56e-44c5-8c03-69dcc70001a5", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090128Z:20bfa127-9c68-470e-bf95-b4046024dd1c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135330Z:ff3f5765-a56e-44c5-8c03-69dcc70001a5" }, "ResponseBody": { "error": { @@ -3094,36 +3524,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14099d78-d607-42f5-a466-70037a3d96da?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63e77701-ac8c-48b3-8a7f-e12e0c76c001?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:01:29 GMT", + "Date": "Tue, 25 Oct 2022 13:53:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14099d78-d607-42f5-a466-70037a3d96da?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63e77701-ac8c-48b3-8a7f-e12e0c76c001?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59544552-e0d9-45cb-bf69-56064e400fe9", + "x-ms-correlation-request-id": "3b4ac430-2dff-4c17-a6e8-3b058f817c61", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090129Z:59544552-e0d9-45cb-bf69-56064e400fe9", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135332Z:3b4ac430-2dff-4c17-a6e8-3b058f817c61", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14099d78-d607-42f5-a466-70037a3d96da?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63e77701-ac8c-48b3-8a7f-e12e0c76c001?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3131,7 +3561,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:00 GMT", + "Date": "Tue, 25 Oct 2022 13:53:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3139,17 +3569,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18435815-9c47-40df-992f-694b8138313f", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090200Z:18435815-9c47-40df-992f-694b8138313f", + "x-ms-correlation-request-id": "261187b3-f6e3-413b-a7a3-5ca028bbb390", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135332Z:261187b3-f6e3-413b-a7a3-5ca028bbb390", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14099d78-d607-42f5-a466-70037a3d96da", - "name": "14099d78-d607-42f5-a466-70037a3d96da", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63e77701-ac8c-48b3-8a7f-e12e0c76c001", + "name": "63e77701-ac8c-48b3-8a7f-e12e0c76c001", "status": "Succeeded", - "startTime": "2022-09-19T09:01:29.714036Z", - "endTime": "2022-09-19T09:01:29.7609055Z", + "startTime": "2022-10-25T13:53:32.1853747Z", + "endTime": "2022-10-25T13:53:32.3103342Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668" @@ -3157,13 +3587,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/14099d78-d607-42f5-a466-70037a3d96da?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63e77701-ac8c-48b3-8a7f-e12e0c76c001?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3171,7 +3601,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:00 GMT", + "Date": "Tue, 25 Oct 2022 13:53:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3179,19 +3609,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c6049c9-bf4e-4cc3-ab26-35d95e1c1663", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090200Z:5c6049c9-bf4e-4cc3-ab26-35d95e1c1663", + "x-ms-correlation-request-id": "7e6d159a-d0e6-4eb4-900f-add523870c7d", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135332Z:7e6d159a-d0e6-4eb4-900f-add523870c7d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668", "name": "sdk-py-tests-acc-1-8a942668", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A01%3A29.7182344Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A53%3A32.1762119Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T08:45:25.4494771Z" + "CreatedOnDate": "2022-10-25T13:37:25.9837296Z" }, "properties": { "encryption": { @@ -3202,10 +3632,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T08:45:26.3966322Z", + "createdAt": "2022-10-25T13:37:26.8286638Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T08:45:26.3966322Z" + "lastModifiedAt": "2022-10-25T13:37:26.8286638Z" } } }, @@ -3216,50 +3646,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:02:00 GMT", + "Date": "Tue, 25 Oct 2022 13:53:33 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "388bfe90-8a50-424e-9f70-7f22bf6618f4", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090200Z:388bfe90-8a50-424e-9f70-7f22bf6618f4" + "x-ms-correlation-request-id": "6fe437d9-2031-49ca-b361-598b9f8d3a3d", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135333Z:6fe437d9-2031-49ca-b361-598b9f8d3a3d", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8a942668\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8a942668?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1b90d2f2-4521-4e14-ba9e-e8f1e0f470be?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9c8ef7b1-61f9-4192-98a7-681b58b8f870?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:02:01 GMT", + "Date": "Tue, 25 Oct 2022 13:53:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/1b90d2f2-4521-4e14-ba9e-e8f1e0f470be?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/9c8ef7b1-61f9-4192-98a7-681b58b8f870?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -3268,10 +3700,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "636aae9d-d2d7-43ee-a4b8-ae3f73e2ec05", - "x-ms-correlation-request-id": "65550746-0c1b-4849-b8f9-bbe2cc660f2f", + "x-ms-arm-service-request-id": "1b592977-6f92-4bf2-912a-1fdcf6359310", + "x-ms-correlation-request-id": "3624b877-7edd-4150-acdf-a5b219aa6300", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T090201Z:65550746-0c1b-4849-b8f9-bbe2cc660f2f" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T135333Z:3624b877-7edd-4150-acdf-a5b219aa6300" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_assign_snapshot_policy_to_volume.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_assign_snapshot_policy_to_volume.json index 2032dc502fa0..4bafb71ada43 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_assign_snapshot_policy_to_volume.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_assign_snapshot_policy_to_volume.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:41 GMT", + "Date": "Tue, 25 Oct 2022 13:06:33 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:41 GMT", + "Date": "Tue, 25 Oct 2022 13:06:33 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "93eccf0a-7eed-45b9-bf56-829c53eb61c1", + "client-request-id": "5553567f-a99e-4a12-99be-a2729b2cb7f3", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "93eccf0a-7eed-45b9-bf56-829c53eb61c1", + "client-request-id": "5553567f-a99e-4a12-99be-a2729b2cb7f3", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:42 GMT", + "Date": "Tue, 25 Oct 2022 13:06:33 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/deef444d-9dc1-4045-b3d5-cb2c1257600b?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fc64557e-3081-451d-a510-5dd89038dc9a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:48 GMT", + "Date": "Tue, 25 Oct 2022 13:06:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "705b5da4-7452-47c6-9029-75d7adb6b690", - "x-ms-correlation-request-id": "3bbd0e39-5a8b-4ade-a150-ea89757089d9", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093448Z:3bbd0e39-5a8b-4ade-a150-ea89757089d9" + "x-ms-arm-service-request-id": "82cccf17-1711-4530-9177-f7fe2bc8f3bd", + "x-ms-correlation-request-id": "ed2be7b3-fd6b-441d-9d93-323ba261f060", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130639Z:ed2be7b3-fd6b-441d-9d93-323ba261f060" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-8676340d", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d", - "etag": "W/\u00225b195eaa-9600-4078-a03c-7e124d358390\u0022", + "etag": "W/\u00220b33871e-e894-42d1-a561-bc263e2cd4de\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:34:44.4340934Z" + "CreatedOnDate": "2022-10-25T13:06:35.8369026Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "7dc691bb-8963-4fff-aa67-9cf131fd6a35", + "resourceGuid": "928c7d9e-9fda-4e9f-8d17-c32253fa1c99", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,49 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/deef444d-9dc1-4045-b3d5-cb2c1257600b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fc64557e-3081-451d-a510-5dd89038dc9a?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:06:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "b758050b-2010-4a4f-b606-e6baa9249303", + "x-ms-correlation-request-id": "6facdb1d-039d-4675-b829-e394f71e377a", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130639Z:6facdb1d-039d-4675-b829-e394f71e377a" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fc64557e-3081-451d-a510-5dd89038dc9a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +329,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:51 GMT", + "Date": "Tue, 25 Oct 2022 13:06:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2ba84f84-dbe4-49c7-908e-6fab87d0fd3b", - "x-ms-correlation-request-id": "f59bb5fd-5a80-4823-a7e6-41ecf8365738", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093451Z:f59bb5fd-5a80-4823-a7e6-41ecf8365738" + "x-ms-arm-service-request-id": "92d59b59-058d-49c7-a2a4-43372be951d4", + "x-ms-correlation-request-id": "f95e76a8-9b95-4c17-89d1-c878db220a66", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130649Z:f95e76a8-9b95-4c17-89d1-c878db220a66" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +364,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:52 GMT", - "ETag": "W/\u0022a866834b-fa95-48de-a175-b92e1b914025\u0022", + "Date": "Tue, 25 Oct 2022 13:06:49 GMT", + "ETag": "W/\u0022ae223f45-4427-4376-90ad-b1b27a7ef9d1\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +376,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e17b5737-e363-43fe-9787-c9b9e445453c", - "x-ms-correlation-request-id": "7aee0c22-fad5-4ca2-a1c3-2b2fbb701626", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093453Z:7aee0c22-fad5-4ca2-a1c3-2b2fbb701626" + "x-ms-arm-service-request-id": "b5ba48f8-5da7-44b6-a3b2-db0a0a1b55cb", + "x-ms-correlation-request-id": "79cb4e62-6df8-40f2-816f-8f9788ab5a1a", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130650Z:79cb4e62-6df8-40f2-816f-8f9788ab5a1a" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-8676340d", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d", - "etag": "W/\u0022a866834b-fa95-48de-a175-b92e1b914025\u0022", + "etag": "W/\u0022ae223f45-4427-4376-90ad-b1b27a7ef9d1\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:34:44.4340934Z" + "CreatedOnDate": "2022-10-25T13:06:35.8369026Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "7dc691bb-8963-4fff-aa67-9cf131fd6a35", + "resourceGuid": "928c7d9e-9fda-4e9f-8d17-c32253fa1c99", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +405,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +413,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +430,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/726a2f00-52e1-41bf-bfdf-688cb23b4ee7?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6cc82e76-8751-4094-b002-4ded3abf0017?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:53 GMT", + "Date": "Tue, 25 Oct 2022 13:06:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +445,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2e17a31a-707e-4bff-aa23-033a7959d3be", - "x-ms-correlation-request-id": "96f0779f-23e7-475b-bc97-87d004b1ebc6", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093453Z:96f0779f-23e7-475b-bc97-87d004b1ebc6" + "x-ms-arm-service-request-id": "d90b9a72-8d58-4295-bc8b-3b9c76204646", + "x-ms-correlation-request-id": "6e2bc822-7f0a-4aa1-8f94-11e63248dbec", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130650Z:6e2bc822-7f0a-4aa1-8f94-11e63248dbec" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default", - "etag": "W/\u00227f7f3d7c-0f5f-4452-9e4b-6a55b18a093f\u0022", + "etag": "W/\u00226f165018-33de-4bef-8a80-58ff54b06954\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +461,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00227f7f3d7c-0f5f-4452-9e4b-6a55b18a093f\u0022", + "etag": "W/\u00226f165018-33de-4bef-8a80-58ff54b06954\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +481,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/726a2f00-52e1-41bf-bfdf-688cb23b4ee7?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6cc82e76-8751-4094-b002-4ded3abf0017?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +495,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:56 GMT", + "Date": "Tue, 25 Oct 2022 13:06:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +506,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "356960fc-2f6b-4529-a96a-ff07c279c43d", - "x-ms-correlation-request-id": "d631d13c-3e9f-4138-82be-7dd3c405d46f", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093456Z:d631d13c-3e9f-4138-82be-7dd3c405d46f" + "x-ms-arm-service-request-id": "497911c7-b920-4042-b3ac-2ae60f82e44f", + "x-ms-correlation-request-id": "1bd446c0-b6c9-43ef-a46f-cad3ddab81eb", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130651Z:1bd446c0-b6c9-43ef-a46f-cad3ddab81eb" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +530,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:56 GMT", - "ETag": "W/\u0022456ba4ee-f178-4db9-92f3-291e68947267\u0022", + "Date": "Tue, 25 Oct 2022 13:06:50 GMT", + "ETag": "W/\u0022dd90a09f-cc56-4bb7-a527-a12f5ab6a261\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +542,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0de081f6-ab89-4779-80a0-447ee84265dc", - "x-ms-correlation-request-id": "3f884bbd-bd0d-4d57-9dbc-8e64cf0fe4bd", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093457Z:3f884bbd-bd0d-4d57-9dbc-8e64cf0fe4bd" + "x-ms-arm-service-request-id": "55d71da1-0a4e-4112-bf4a-bcd038132c11", + "x-ms-correlation-request-id": "894ad06c-b9bb-431f-a603-9e5f32a12ec3", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130651Z:894ad06c-b9bb-431f-a603-9e5f32a12ec3" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default", - "etag": "W/\u0022456ba4ee-f178-4db9-92f3-291e68947267\u0022", + "etag": "W/\u0022dd90a09f-cc56-4bb7-a527-a12f5ab6a261\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +558,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022456ba4ee-f178-4db9-92f3-291e68947267\u0022", + "etag": "W/\u0022dd90a09f-cc56-4bb7-a527-a12f5ab6a261\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +584,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +594,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:57 GMT", + "Date": "Tue, 25 Oct 2022 13:06:50 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +678,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +688,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:57 GMT", + "Date": "Tue, 25 Oct 2022 13:06:50 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +749,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "569cf41b-732d-4022-bab4-ed1156e627d7", + "client-request-id": "7aa90829-d052-4440-9b4f-a6dbd2a438e9", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "569cf41b-732d-4022-bab4-ed1156e627d7", + "client-request-id": "7aa90829-d052-4440-9b4f-a6dbd2a438e9", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:57 GMT", + "Date": "Tue, 25 Oct 2022 13:06:50 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +778,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +798,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f55d13c0-c23f-497b-a7f3-3bf6aef0ac78?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5619256e-6398-4851-90a1-38a2766af8ba?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:35:00 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A35%3A00.2359958Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:06:54 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A06%3A53.9836198Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b606ec7a-fe6c-4741-a21c-f5b8278e4298", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093501Z:b606ec7a-fe6c-4741-a21c-f5b8278e4298", + "x-ms-correlation-request-id": "8e8cce67-5a04-4f41-87f9-60b934edd095", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130655Z:8e8cce67-5a04-4f41-87f9-60b934edd095", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d", "name": "sdk-py-tests-acc-1-8676340d", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A35%3A00.2359958Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A06%3A53.9836198Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:34:58.3140197Z" + "CreatedOnDate": "2022-10-25T13:06:53.0104062Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +836,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:34:59.3003552Z", + "createdAt": "2022-10-25T13:06:53.8295569Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:34:59.3003552Z" + "lastModifiedAt": "2022-10-25T13:06:53.8295569Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f55d13c0-c23f-497b-a7f3-3bf6aef0ac78?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5619256e-6398-4851-90a1-38a2766af8ba?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +858,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:35:30 GMT", + "Date": "Tue, 25 Oct 2022 13:06:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +866,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be79dc90-2b23-4c46-855c-4b77e2e885f6", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093531Z:be79dc90-2b23-4c46-855c-4b77e2e885f6", + "x-ms-correlation-request-id": "11727fbf-b5f8-42c8-a86c-77b216cb7edf", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130655Z:11727fbf-b5f8-42c8-a86c-77b216cb7edf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f55d13c0-c23f-497b-a7f3-3bf6aef0ac78", - "name": "f55d13c0-c23f-497b-a7f3-3bf6aef0ac78", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5619256e-6398-4851-90a1-38a2766af8ba", + "name": "5619256e-6398-4851-90a1-38a2766af8ba", "status": "Succeeded", - "startTime": "2022-09-19T09:35:00.2316766Z", - "endTime": "2022-09-19T09:35:00.294152Z", + "startTime": "2022-10-25T13:06:53.9865263Z", + "endTime": "2022-10-25T13:06:54.0490281Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d" @@ -853,7 +890,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +898,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:35:31 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A35%3A00.2991199Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:06:55 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A06%3A54.04938Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +907,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "716c7018-03df-41cd-a5aa-6ddb1b961763", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093532Z:716c7018-03df-41cd-a5aa-6ddb1b961763", + "x-ms-correlation-request-id": "ff9c16be-9125-4526-a6fc-c6b09f7852c8", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130655Z:ff9c16be-9125-4526-a6fc-c6b09f7852c8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d", "name": "sdk-py-tests-acc-1-8676340d", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A35%3A00.2991199Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A06%3A54.04938Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:34:58.3140197Z" + "CreatedOnDate": "2022-10-25T13:06:53.0104062Z" }, "properties": { "activeDirectories": [ @@ -911,10 +948,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:34:59.3003552Z", + "createdAt": "2022-10-25T13:06:53.8295569Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:34:59.3003552Z" + "lastModifiedAt": "2022-10-25T13:06:53.8295569Z" } } }, @@ -927,7 +964,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +977,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bf8784a-89a5-44ac-ae15-26b0ba8b3043?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de5b47e-a068-40e3-bfe9-9abfb264df6a?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "922", + "Content-Length": "921", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:35:41 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A35%3A40.1721583Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:06:57 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A06%3A57.489593Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "388c03b8-fc2e-4734-b890-e46dd9586a19", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093541Z:388c03b8-fc2e-4734-b890-e46dd9586a19", + "x-ms-correlation-request-id": "51ed9af6-f26e-426c-b4d9-0b107d7086a6", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130658Z:51ed9af6-f26e-426c-b4d9-0b107d7086a6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8676340d/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A35%3A40.1721583Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A06%3A57.489593Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:35:32.5545519Z" + "CreatedOnDate": "2022-10-25T13:06:56.2705828Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +1014,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:35:39.9884372Z", + "createdAt": "2022-10-25T13:06:57.2530025Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:35:39.9884372Z" + "lastModifiedAt": "2022-10-25T13:06:57.2530025Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bf8784a-89a5-44ac-ae15-26b0ba8b3043?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de5b47e-a068-40e3-bfe9-9abfb264df6a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1036,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:36:11 GMT", + "Date": "Tue, 25 Oct 2022 13:06:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1044,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "782e4d3a-b6c3-4991-ac4f-9c7e192d2a01", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093611Z:782e4d3a-b6c3-4991-ac4f-9c7e192d2a01", + "x-ms-correlation-request-id": "04da62c1-ea12-4589-ad42-1feb96a6dfbb", + "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130658Z:04da62c1-ea12-4589-ad42-1feb96a6dfbb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bf8784a-89a5-44ac-ae15-26b0ba8b3043", - "name": "7bf8784a-89a5-44ac-ae15-26b0ba8b3043", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de5b47e-a068-40e3-bfe9-9abfb264df6a", + "name": "5de5b47e-a068-40e3-bfe9-9abfb264df6a", "status": "Succeeded", - "startTime": "2022-09-19T09:35:40.1713448Z", - "endTime": "2022-09-19T09:35:41.265311Z", + "startTime": "2022-10-25T13:06:57.4865083Z", + "endTime": "2022-10-25T13:06:58.2677085Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1068,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1076,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:36:12 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A35%3A41.2626996Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:06:59 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A06%3A58.2579889Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1085,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d38360cf-c00e-4cbf-bcc0-03f85d1bd7c9", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093613Z:d38360cf-c00e-4cbf-bcc0-03f85d1bd7c9", + "x-ms-correlation-request-id": "ee74837e-0bb7-41f2-a541-bf39d1949422", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130659Z:ee74837e-0bb7-41f2-a541-bf39d1949422", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8676340d/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A35%3A41.2626996Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A06%3A58.2579889Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:35:32.5545519Z" + "CreatedOnDate": "2022-10-25T13:06:56.2705828Z" }, "properties": { - "poolId": "dcf00916-a602-4471-73be-2d6c9b129f63", + "poolId": "a5456ccd-9fde-ec32-948a-cbe5294cd20a", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1113,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:35:39.9884372Z", + "createdAt": "2022-10-25T13:06:57.2530025Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:35:39.9884372Z" + "lastModifiedAt": "2022-10-25T13:06:57.2530025Z" } } }, @@ -1092,7 +1129,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1159,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:36:16 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A36%3A15.6818763Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:07:01 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A07%3A00.7267219Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d68e1d46-e779-439c-9179-550c95633bf8", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093616Z:d68e1d46-e779-439c-9179-550c95633bf8", + "x-ms-correlation-request-id": "cadd1e93-5f6f-4ad7-a2c5-cb087de17f48", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130701Z:cadd1e93-5f6f-4ad7-a2c5-cb087de17f48", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d", "name": "sdk-py-tests-acc-1-8676340d/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8676340d", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A36%3A15.6818763Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A07%3A00.7267219Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:36:13.7476417Z" + "CreatedOnDate": "2022-10-25T13:06:59.4384138Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1212,101 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:36:14.8483627Z", + "createdAt": "2022-10-25T13:07:00.4613855Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:36:14.8483627Z" + "lastModifiedAt": "2022-10-25T13:07:00.4613855Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:07:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bea01c00-5209-48dc-b9fa-5b92d35dcf73", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130701Z:bea01c00-5209-48dc-b9fa-5b92d35dcf73", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", + "status": "Creating", + "startTime": "2022-10-25T13:07:00.7364397Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:07:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d4e1d74d-7fd9-4681-aea7-8f0b2bc88655", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130732Z:d4e1d74d-7fd9-4681-aea7-8f0b2bc88655", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", + "status": "Creating", + "startTime": "2022-10-25T13:07:00.7364397Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1314,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:36:46 GMT", + "Date": "Tue, 25 Oct 2022 13:08:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1322,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7bbbb91f-e4ef-4518-a36a-dd355f049756", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093646Z:7bbbb91f-e4ef-4518-a36a-dd355f049756", + "x-ms-correlation-request-id": "3df2190f-d6e0-4c19-a25e-e279825bd602", + "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130802Z:3df2190f-d6e0-4c19-a25e-e279825bd602", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8", - "name": "347e0a3d-532f-4f31-98f0-d70cad66f1d8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", "status": "Creating", - "startTime": "2022-09-19T09:36:15.6746907Z", + "startTime": "2022-10-25T13:07:00.7364397Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1340,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1354,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:37:17 GMT", + "Date": "Tue, 25 Oct 2022 13:08:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1362,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6a7d831-baca-4185-b0be-6bf1bcb6cc5a", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093717Z:c6a7d831-baca-4185-b0be-6bf1bcb6cc5a", + "x-ms-correlation-request-id": "58f74e76-c216-4d85-9db0-0d9054cdecb8", + "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130832Z:58f74e76-c216-4d85-9db0-0d9054cdecb8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8", - "name": "347e0a3d-532f-4f31-98f0-d70cad66f1d8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", "status": "Creating", - "startTime": "2022-09-19T09:36:15.6746907Z", + "startTime": "2022-10-25T13:07:00.7364397Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1380,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1394,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:37:46 GMT", + "Date": "Tue, 25 Oct 2022 13:09:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1402,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "741b2077-60cb-4eb5-814d-4c98f05705cf", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093747Z:741b2077-60cb-4eb5-814d-4c98f05705cf", + "x-ms-correlation-request-id": "efabc057-6886-441e-aa05-a411322a5559", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130902Z:efabc057-6886-441e-aa05-a411322a5559", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8", - "name": "347e0a3d-532f-4f31-98f0-d70cad66f1d8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", "status": "Creating", - "startTime": "2022-09-19T09:36:15.6746907Z", + "startTime": "2022-10-25T13:07:00.7364397Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1420,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1434,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:38:16 GMT", + "Date": "Tue, 25 Oct 2022 13:09:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1442,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2274d0b2-571b-4879-898f-53d240717e48", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093817Z:2274d0b2-571b-4879-898f-53d240717e48", + "x-ms-correlation-request-id": "915cde3f-dceb-4e21-8ad1-edd185be09ab", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130933Z:915cde3f-dceb-4e21-8ad1-edd185be09ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8", - "name": "347e0a3d-532f-4f31-98f0-d70cad66f1d8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", "status": "Creating", - "startTime": "2022-09-19T09:36:15.6746907Z", + "startTime": "2022-10-25T13:07:00.7364397Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1460,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1474,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:38:47 GMT", + "Date": "Tue, 25 Oct 2022 13:10:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1482,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7dfec258-b9eb-4db5-be37-f615c972adcb", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093847Z:7dfec258-b9eb-4db5-be37-f615c972adcb", + "x-ms-correlation-request-id": "fc190d9d-cf01-4088-b8b7-585548eb6d32", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131003Z:fc190d9d-cf01-4088-b8b7-585548eb6d32", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8", - "name": "347e0a3d-532f-4f31-98f0-d70cad66f1d8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", "status": "Creating", - "startTime": "2022-09-19T09:36:15.6746907Z", + "startTime": "2022-10-25T13:07:00.7364397Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1500,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1514,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:39:17 GMT", + "Date": "Tue, 25 Oct 2022 13:10:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1522,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45f2e890-45de-42e4-8e2e-5f712318f6c0", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093918Z:45f2e890-45de-42e4-8e2e-5f712318f6c0", + "x-ms-correlation-request-id": "ebc21597-0104-4a74-8f37-fd064d36a4ae", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131033Z:ebc21597-0104-4a74-8f37-fd064d36a4ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8", - "name": "347e0a3d-532f-4f31-98f0-d70cad66f1d8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", "status": "Creating", - "startTime": "2022-09-19T09:36:15.6746907Z", + "startTime": "2022-10-25T13:07:00.7364397Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1540,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1554,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:39:47 GMT", + "Date": "Tue, 25 Oct 2022 13:11:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1562,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a24d93d7-8e50-4d64-9725-94aedb2c4f70", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093948Z:a24d93d7-8e50-4d64-9725-94aedb2c4f70", + "x-ms-correlation-request-id": "51f6a9c7-0aa0-4f24-af3e-2624ed089ea4", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131103Z:51f6a9c7-0aa0-4f24-af3e-2624ed089ea4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8", - "name": "347e0a3d-532f-4f31-98f0-d70cad66f1d8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", "status": "Creating", - "startTime": "2022-09-19T09:36:15.6746907Z", + "startTime": "2022-10-25T13:07:00.7364397Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1580,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1594,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:40:17 GMT", + "Date": "Tue, 25 Oct 2022 13:11:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1602,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73991641-0f5b-4438-9344-0148300f2682", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094018Z:73991641-0f5b-4438-9344-0148300f2682", + "x-ms-correlation-request-id": "621e752b-50fb-499a-9a36-309a3e73940f", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131134Z:621e752b-50fb-499a-9a36-309a3e73940f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/347e0a3d-532f-4f31-98f0-d70cad66f1d8", - "name": "347e0a3d-532f-4f31-98f0-d70cad66f1d8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", + "status": "Creating", + "startTime": "2022-10-25T13:07:00.7364397Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:12:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1c2e509f-0292-42ac-aede-b2b0e5adcf27", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131205Z:1c2e509f-0292-42ac-aede-b2b0e5adcf27", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/74e70251-5db2-45a8-b027-4dc2e897adc4", + "name": "74e70251-5db2-45a8-b027-4dc2e897adc4", "status": "Succeeded", - "startTime": "2022-09-19T09:36:15.6746907Z", - "endTime": "2022-09-19T09:40:18.4766448Z", + "startTime": "2022-10-25T13:07:00.7364397Z", + "endTime": "2022-10-25T13:11:45.4813436Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" @@ -1509,7 +1666,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1674,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:40:18 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A18.4656536Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:12:05 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A11%3A45.4725705Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1683,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2cef83ef-8a50-41e7-bcf5-e0ff7638534b", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094019Z:2cef83ef-8a50-41e7-bcf5-e0ff7638534b", + "x-ms-correlation-request-id": "65b9ac82-bc7b-4531-9ada-de64f44e7168", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131205Z:65b9ac82-bc7b-4531-9ada-de64f44e7168", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d", "name": "sdk-py-tests-acc-1-8676340d/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8676340d", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A18.4656536Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A11%3A45.4725705Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:36:13.7476417Z" + "CreatedOnDate": "2022-10-25T13:06:59.4384138Z" }, "properties": { - "fileSystemId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", + "fileSystemId": "e72e3c23-e309-e586-fe5d-52027b84c89a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-8676340d", "usageThreshold": 107374182400, @@ -1569,7 +1726,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f85835d5", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_146cc73f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1741,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", - "fileSystemId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", + "mountTargetId": "e72e3c23-e309-e586-fe5d-52027b84c89a", + "fileSystemId": "e72e3c23-e309-e586-fe5d-52027b84c89a", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1762,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:36:14.8483627Z", + "createdAt": "2022-10-25T13:07:00.4613855Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:36:14.8483627Z" + "lastModifiedAt": "2022-10-25T13:07:00.4613855Z" } } }, @@ -1621,19 +1778,19 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aafa00ff-f9ec-4cee-aac7-c896e2a1244d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7b07aef-fddd-4799-8492-8231bc82175e?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:40:20 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A19.5689913Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:12:07 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A12%3A06.1627791Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1641,19 +1798,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24b76024-ba28-44fc-a6fd-e635c4b773e8", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094021Z:24b76024-ba28-44fc-a6fd-e635c4b773e8", + "x-ms-correlation-request-id": "47a923a1-ba30-4ec2-b851-96f09b5e8553", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131207Z:47a923a1-ba30-4ec2-b851-96f09b5e8553", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d", "name": "sdk-py-tests-acc-1-8676340d", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A19.5689913Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A12%3A06.1627791Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:34:58.3140197Z" + "CreatedOnDate": "2022-10-25T13:06:53.0104062Z" }, "properties": { "provisioningState": "Updating", @@ -1682,21 +1839,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:34:59.3003552Z", + "createdAt": "2022-10-25T13:06:53.8295569Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:34:59.3003552Z" + "lastModifiedAt": "2022-10-25T13:06:53.8295569Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aafa00ff-f9ec-4cee-aac7-c896e2a1244d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7b07aef-fddd-4799-8492-8231bc82175e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1704,7 +1861,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:40:51 GMT", + "Date": "Tue, 25 Oct 2022 13:12:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1712,17 +1869,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a25e3b1-0daf-4a8c-8a97-dbbbd5d8d417", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094051Z:3a25e3b1-0daf-4a8c-8a97-dbbbd5d8d417", + "x-ms-correlation-request-id": "0a53ea60-2e1f-4ade-a2b1-25068b97dfac", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131208Z:0a53ea60-2e1f-4ade-a2b1-25068b97dfac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aafa00ff-f9ec-4cee-aac7-c896e2a1244d", - "name": "aafa00ff-f9ec-4cee-aac7-c896e2a1244d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7b07aef-fddd-4799-8492-8231bc82175e", + "name": "b7b07aef-fddd-4799-8492-8231bc82175e", "status": "Succeeded", - "startTime": "2022-09-19T09:40:19.5703865Z", - "endTime": "2022-09-19T09:40:20.0704427Z", + "startTime": "2022-10-25T13:12:06.16742Z", + "endTime": "2022-10-25T13:12:06.7299514Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d" @@ -1736,7 +1893,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1744,8 +1901,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:40:51 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A20.0696903Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:12:08 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A12%3A06.7244589Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1753,19 +1910,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0421e35-649b-4266-9831-8327046c6be3", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094052Z:e0421e35-649b-4266-9831-8327046c6be3", + "x-ms-correlation-request-id": "43abb636-d229-4f51-813a-e814278bafec", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131208Z:43abb636-d229-4f51-813a-e814278bafec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d", "name": "sdk-py-tests-acc-1-8676340d", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A20.0696903Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A12%3A06.7244589Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:40:19.2707006Z" + "CreatedOnDate": "2022-10-25T13:12:05.7667578Z" }, "properties": { "provisioningState": "Succeeded", @@ -1794,10 +1951,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:34:59.3003552Z", + "createdAt": "2022-10-25T13:06:53.8295569Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:40:19.4460408Z" + "lastModifiedAt": "2022-10-25T13:12:06.0073448Z" } } }, @@ -1810,7 +1967,7 @@ "Connection": "keep-alive", "Content-Length": "179", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1827,30 +1984,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b5b8b3f-f23c-492c-9891-9d85a2c360d6?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/68ac1ca2-ba1f-45fc-89e4-6c383b7788b9?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "928", + "Content-Length": "929", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:40:54 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A53.595308Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:12:10 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A12%3A09.9258442Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86963635-885c-4996-9cca-8e72bc0079b1", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094054Z:86963635-885c-4996-9cca-8e72bc0079b1", + "x-ms-correlation-request-id": "8590ac1f-f238-4f0b-98ee-2957ee5d3a9f", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131211Z:8590ac1f-f238-4f0b-98ee-2957ee5d3a9f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-8676340d/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A53.595308Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A12%3A09.9258442Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:40:52.3360735Z" + "CreatedOnDate": "2022-10-25T13:12:08.8121988Z" }, "properties": { "enabled": false, @@ -1866,10 +2023,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:40:53.4464725Z", + "createdAt": "2022-10-25T13:12:09.7753467Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:40:53.4464725Z" + "lastModifiedAt": "2022-10-25T13:12:09.7753467Z" } } }, @@ -1882,7 +2039,7 @@ "Connection": "keep-alive", "Content-Length": "432", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1900,35 +2057,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/408977c2-3942-413d-b38e-41b441d1c1ac?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09425c99-58de-4be3-b8bc-81b36de69e45?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "2480", + "Content-Length": "2479", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:40:54 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A54.8857937Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:12:11 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A12%3A11.627665Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/408977c2-3942-413d-b38e-41b441d1c1ac?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09425c99-58de-4be3-b8bc-81b36de69e45?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d18f129c-202c-4a67-a4c6-b8862ca23797", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094055Z:d18f129c-202c-4a67-a4c6-b8862ca23797", + "x-ms-correlation-request-id": "9652a1ba-5a34-41bc-a0ef-38818b0039e3", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131211Z:9652a1ba-5a34-41bc-a0ef-38818b0039e3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d", "name": "sdk-py-tests-acc-1-8676340d/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8676340d", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A54.8857937Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A12%3A11.627665Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:36:13.7476417Z" + "CreatedOnDate": "2022-10-25T13:06:59.4384138Z" }, "properties": { "provisioningState": "Patching", - "fileSystemId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", + "fileSystemId": "e72e3c23-e309-e586-fe5d-52027b84c89a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-8676340d", "usageThreshold": 107374182400, @@ -1956,7 +2113,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f85835d5", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_146cc73f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1971,8 +2128,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", - "fileSystemId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", + "mountTargetId": "e72e3c23-e309-e586-fe5d-52027b84c89a", + "fileSystemId": "e72e3c23-e309-e586-fe5d-52027b84c89a", "ipAddress": "10.0.0.4" } ], @@ -1991,21 +2148,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:36:14.8483627Z", + "createdAt": "2022-10-25T13:07:00.4613855Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:36:14.8483627Z" + "lastModifiedAt": "2022-10-25T13:07:00.4613855Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/408977c2-3942-413d-b38e-41b441d1c1ac?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09425c99-58de-4be3-b8bc-81b36de69e45?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2013,7 +2170,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:41:24 GMT", + "Date": "Tue, 25 Oct 2022 13:12:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2021,17 +2178,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a9ea1fc-7cf1-46c3-821a-f4e9d3d4cc02", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094125Z:9a9ea1fc-7cf1-46c3-821a-f4e9d3d4cc02", + "x-ms-correlation-request-id": "465ba4b4-6cbb-4c22-b62f-0120b6c66657", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131212Z:465ba4b4-6cbb-4c22-b62f-0120b6c66657", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/408977c2-3942-413d-b38e-41b441d1c1ac", - "name": "408977c2-3942-413d-b38e-41b441d1c1ac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09425c99-58de-4be3-b8bc-81b36de69e45", + "name": "09425c99-58de-4be3-b8bc-81b36de69e45", + "status": "Patching", + "startTime": "2022-10-25T13:12:11.62203Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09425c99-58de-4be3-b8bc-81b36de69e45?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:12:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "10e3bc7a-dba7-4352-8778-220c263c12c8", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131242Z:10e3bc7a-dba7-4352-8778-220c263c12c8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09425c99-58de-4be3-b8bc-81b36de69e45", + "name": "09425c99-58de-4be3-b8bc-81b36de69e45", "status": "Succeeded", - "startTime": "2022-09-19T09:40:54.8883613Z", - "endTime": "2022-09-19T09:40:57.9471339Z", + "startTime": "2022-10-25T13:12:11.62203Z", + "endTime": "2022-10-25T13:12:14.1378909Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" @@ -2039,13 +2236,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/408977c2-3942-413d-b38e-41b441d1c1ac?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09425c99-58de-4be3-b8bc-81b36de69e45?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2053,7 +2250,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:41:25 GMT", + "Date": "Tue, 25 Oct 2022 13:12:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2061,19 +2258,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62b9df30-d86b-4c1a-aff3-4c3f7c018ba9", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094126Z:62b9df30-d86b-4c1a-aff3-4c3f7c018ba9", + "x-ms-correlation-request-id": "de3052e6-236a-46bd-b316-255449337fda", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131242Z:de3052e6-236a-46bd-b316-255449337fda", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d", "name": "sdk-py-tests-acc-1-8676340d/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8676340d", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A40%3A57.9449589Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A12%3A14.1322369Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:40:54.5671932Z" + "CreatedOnDate": "2022-10-25T13:12:11.2886751Z" }, "properties": { "dataProtection": { @@ -2081,7 +2278,7 @@ "snapshotPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1" } }, - "fileSystemId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", + "fileSystemId": "e72e3c23-e309-e586-fe5d-52027b84c89a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-8676340d", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2112,19 +2309,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f85835d5", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_146cc73f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d", - "poolId": "dcf00916-a602-4471-73be-2d6c9b129f63", + "poolId": "a5456ccd-9fde-ec32-948a-cbe5294cd20a", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", - "fileSystemId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", + "mountTargetId": "e72e3c23-e309-e586-fe5d-52027b84c89a", + "fileSystemId": "e72e3c23-e309-e586-fe5d-52027b84c89a", "startIp": "", "endIp": "", "gateway": "", @@ -2156,10 +2353,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:36:14.8483627Z", + "createdAt": "2022-10-25T13:07:00.4613855Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:40:54.7589924Z" + "lastModifiedAt": "2022-10-25T13:12:11.4636389Z" } } }, @@ -2171,36 +2368,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a2448921-e3d2-48da-ac76-33ae66b47381?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:41:26 GMT", + "Date": "Tue, 25 Oct 2022 13:12:44 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a2448921-e3d2-48da-ac76-33ae66b47381?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "118f1efc-0f70-4ad3-ab9c-6c92e1b1630d", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094127Z:118f1efc-0f70-4ad3-ab9c-6c92e1b1630d", + "x-ms-correlation-request-id": "77a8cd91-0526-4277-9f3f-53fe5813ca7e", + "x-ms-ratelimit-remaining-subscription-deletes": "14990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131244Z:77a8cd91-0526-4277-9f3f-53fe5813ca7e", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a2448921-e3d2-48da-ac76-33ae66b47381?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2208,7 +2405,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:41:56 GMT", + "Date": "Tue, 25 Oct 2022 13:12:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2216,16 +2413,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8196ad78-86ee-41f3-9fe2-a20b2f342bec", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094157Z:8196ad78-86ee-41f3-9fe2-a20b2f342bec", + "x-ms-correlation-request-id": "6c40a5ea-9d76-4f37-8f20-e84c98acf297", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131244Z:6c40a5ea-9d76-4f37-8f20-e84c98acf297", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a2448921-e3d2-48da-ac76-33ae66b47381", - "name": "a2448921-e3d2-48da-ac76-33ae66b47381", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1", + "name": "30c1fb46-76d1-48e2-bf39-fed0a4001ab1", "status": "Deleting", - "startTime": "2022-09-19T09:41:26.8983106Z", + "startTime": "2022-10-25T13:12:44.3707396Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2234,13 +2431,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a2448921-e3d2-48da-ac76-33ae66b47381?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2248,7 +2445,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:42:27 GMT", + "Date": "Tue, 25 Oct 2022 13:13:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2256,17 +2453,177 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2fefba2a-b59f-4b48-8e83-51ad7e7c863f", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094227Z:2fefba2a-b59f-4b48-8e83-51ad7e7c863f", + "x-ms-correlation-request-id": "182327ef-923b-4a80-b6c6-ac2f2da59bf0", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131315Z:182327ef-923b-4a80-b6c6-ac2f2da59bf0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a2448921-e3d2-48da-ac76-33ae66b47381", - "name": "a2448921-e3d2-48da-ac76-33ae66b47381", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1", + "name": "30c1fb46-76d1-48e2-bf39-fed0a4001ab1", + "status": "Deleting", + "startTime": "2022-10-25T13:12:44.3707396Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:13:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2f196706-b760-4f5e-8e44-382a969d5685", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131345Z:2f196706-b760-4f5e-8e44-382a969d5685", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1", + "name": "30c1fb46-76d1-48e2-bf39-fed0a4001ab1", + "status": "Deleting", + "startTime": "2022-10-25T13:12:44.3707396Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:14:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "28a08392-0b93-47d1-bd1a-8908fda14c9a", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131415Z:28a08392-0b93-47d1-bd1a-8908fda14c9a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1", + "name": "30c1fb46-76d1-48e2-bf39-fed0a4001ab1", + "status": "Deleting", + "startTime": "2022-10-25T13:12:44.3707396Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:14:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "91ccfa55-d696-49f7-a621-2269e9db58e8", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131445Z:91ccfa55-d696-49f7-a621-2269e9db58e8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1", + "name": "30c1fb46-76d1-48e2-bf39-fed0a4001ab1", + "status": "Deleting", + "startTime": "2022-10-25T13:12:44.3707396Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:15:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c96b254f-6e12-43c4-a61c-91e078443618", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131516Z:c96b254f-6e12-43c4-a61c-91e078443618", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1", + "name": "30c1fb46-76d1-48e2-bf39-fed0a4001ab1", "status": "Succeeded", - "startTime": "2022-09-19T09:41:26.8983106Z", - "endTime": "2022-09-19T09:42:11.475594Z", + "startTime": "2022-10-25T13:12:44.3707396Z", + "endTime": "2022-10-25T13:14:48.7203248Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d" @@ -2274,13 +2631,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a2448921-e3d2-48da-ac76-33ae66b47381?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/30c1fb46-76d1-48e2-bf39-fed0a4001ab1?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2288,7 +2645,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:42:27 GMT", + "Date": "Tue, 25 Oct 2022 13:15:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2296,19 +2653,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9545db6b-1a64-4e04-b456-aedb4ae9531a", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094227Z:9545db6b-1a64-4e04-b456-aedb4ae9531a", + "x-ms-correlation-request-id": "3540528e-7241-40ef-bdfb-495117e2eacf", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131516Z:3540528e-7241-40ef-bdfb-495117e2eacf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d", "name": "sdk-py-tests-acc-1-8676340d/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8676340d", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A42%3A02.199458Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A14%3A39.6482485Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:40:54.5671932Z" + "CreatedOnDate": "2022-10-25T13:12:11.2886751Z" }, "properties": { "dataProtection": { @@ -2316,7 +2673,7 @@ "snapshotPolicyId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1" } }, - "fileSystemId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", + "fileSystemId": "e72e3c23-e309-e586-fe5d-52027b84c89a", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-8676340d", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2347,19 +2704,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f85835d5", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_146cc73f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8676340d", - "poolId": "dcf00916-a602-4471-73be-2d6c9b129f63", + "poolId": "a5456ccd-9fde-ec32-948a-cbe5294cd20a", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", - "fileSystemId": "6f0939dd-ec7d-68da-ce2e-d59f6b0c53b0", + "mountTargetId": "e72e3c23-e309-e586-fe5d-52027b84c89a", + "fileSystemId": "e72e3c23-e309-e586-fe5d-52027b84c89a", "startIp": "", "endIp": "", "gateway": "", @@ -2391,10 +2748,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:36:14.8483627Z", + "createdAt": "2022-10-25T13:07:00.4613855Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:40:54.7589924Z" + "lastModifiedAt": "2022-10-25T13:12:11.4636389Z" } } }, @@ -2405,7 +2762,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2413,14 +2770,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:45:48 GMT", + "Date": "Tue, 25 Oct 2022 13:18:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1da4f7f1-f790-447d-90b2-e05b63449245", + "x-ms-correlation-request-id": "b8b5f00c-e97a-4cb0-9000-e8d316056159", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094548Z:1da4f7f1-f790-447d-90b2-e05b63449245" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131838Z:b8b5f00c-e97a-4cb0-9000-e8d316056159" }, "ResponseBody": { "error": { @@ -2437,36 +2794,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e24f553-d210-4b9b-9e7a-a1cafb31bf29?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bece16a0-7c3c-454b-a3dd-4811c9a5dc98?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:45:50 GMT", + "Date": "Tue, 25 Oct 2022 13:18:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e24f553-d210-4b9b-9e7a-a1cafb31bf29?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bece16a0-7c3c-454b-a3dd-4811c9a5dc98?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "282e322f-5814-4e90-adcb-cdc8b4911adb", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094550Z:282e322f-5814-4e90-adcb-cdc8b4911adb", + "x-ms-correlation-request-id": "b59c52ea-2f84-43fb-b953-14af2dc85f5d", + "x-ms-ratelimit-remaining-subscription-deletes": "14964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131840Z:b59c52ea-2f84-43fb-b953-14af2dc85f5d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e24f553-d210-4b9b-9e7a-a1cafb31bf29?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bece16a0-7c3c-454b-a3dd-4811c9a5dc98?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2474,7 +2831,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:46:20 GMT", + "Date": "Tue, 25 Oct 2022 13:18:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2482,17 +2839,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4f26ab5-f4e1-41d1-9262-cf878716c807", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094621Z:b4f26ab5-f4e1-41d1-9262-cf878716c807", + "x-ms-correlation-request-id": "726884f0-2940-4bfa-b6d1-2d8ebffb5e2b", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131840Z:726884f0-2940-4bfa-b6d1-2d8ebffb5e2b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e24f553-d210-4b9b-9e7a-a1cafb31bf29", - "name": "8e24f553-d210-4b9b-9e7a-a1cafb31bf29", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bece16a0-7c3c-454b-a3dd-4811c9a5dc98", + "name": "bece16a0-7c3c-454b-a3dd-4811c9a5dc98", "status": "Succeeded", - "startTime": "2022-09-19T09:45:50.5480291Z", - "endTime": "2022-09-19T09:45:50.579257Z", + "startTime": "2022-10-25T13:18:40.2845224Z", + "endTime": "2022-10-25T13:18:40.3626411Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1" @@ -2500,13 +2857,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e24f553-d210-4b9b-9e7a-a1cafb31bf29?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bece16a0-7c3c-454b-a3dd-4811c9a5dc98?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2514,7 +2871,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:46:20 GMT", + "Date": "Tue, 25 Oct 2022 13:18:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2522,19 +2879,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31d69418-1688-46ee-a2dd-ebed3c4059d5", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094621Z:31d69418-1688-46ee-a2dd-ebed3c4059d5", + "x-ms-correlation-request-id": "dc4707e9-8a38-4ca5-9b0b-fd02a9151535", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131840Z:dc4707e9-8a38-4ca5-9b0b-fd02a9151535", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-8676340d/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A45%3A50.5350078Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A18%3A40.2791174Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:40:52.3360735Z" + "CreatedOnDate": "2022-10-25T13:12:08.8121988Z" }, "properties": { "enabled": false, @@ -2550,10 +2907,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:40:53.4464725Z", + "createdAt": "2022-10-25T13:12:09.7753467Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:40:53.4464725Z" + "lastModifiedAt": "2022-10-25T13:12:09.7753467Z" } } }, @@ -2564,27 +2921,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "302", + "Content-Length": "303", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:46:25 GMT", + "Date": "Tue, 25 Oct 2022 13:18:46 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1075f3a5-68d6-42f3-9f85-86dff54ad2b5", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094626Z:1075f3a5-68d6-42f3-9f85-86dff54ad2b5" + "x-ms-correlation-request-id": "fcf72ea7-8b69-4549-866b-330166f09071", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131846Z:fcf72ea7-8b69-4549-866b-330166f09071", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 is not found." } } }, @@ -2596,36 +2955,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bbb8d753-83ab-4ed4-a37f-c35d1a14e571?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/153301be-8409-49da-a294-da1f7a673663?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:46:37 GMT", + "Date": "Tue, 25 Oct 2022 13:18:56 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bbb8d753-83ab-4ed4-a37f-c35d1a14e571?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/153301be-8409-49da-a294-da1f7a673663?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f24c10a6-c003-4f5a-88d9-c9417b13394d", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094637Z:f24c10a6-c003-4f5a-88d9-c9417b13394d", + "x-ms-correlation-request-id": "17882e7b-d8f7-4d7b-8ed3-c7d78ca6d502", + "x-ms-ratelimit-remaining-subscription-deletes": "14963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131857Z:17882e7b-d8f7-4d7b-8ed3-c7d78ca6d502", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bbb8d753-83ab-4ed4-a37f-c35d1a14e571?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/153301be-8409-49da-a294-da1f7a673663?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2633,7 +2992,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:47:07 GMT", + "Date": "Tue, 25 Oct 2022 13:18:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2641,17 +3000,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28342712-9d53-4460-8f7a-5dae0adf9434", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094707Z:28342712-9d53-4460-8f7a-5dae0adf9434", + "x-ms-correlation-request-id": "abd4c0c7-83c3-4626-89a3-d5a5e166904a", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131857Z:abd4c0c7-83c3-4626-89a3-d5a5e166904a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bbb8d753-83ab-4ed4-a37f-c35d1a14e571", - "name": "bbb8d753-83ab-4ed4-a37f-c35d1a14e571", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/153301be-8409-49da-a294-da1f7a673663", + "name": "153301be-8409-49da-a294-da1f7a673663", + "status": "Deleting", + "startTime": "2022-10-25T13:18:56.9501583Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/153301be-8409-49da-a294-da1f7a673663?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 13:19:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "259ac154-091d-4db4-9a93-28dc955aa285", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131927Z:259ac154-091d-4db4-9a93-28dc955aa285", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/153301be-8409-49da-a294-da1f7a673663", + "name": "153301be-8409-49da-a294-da1f7a673663", "status": "Succeeded", - "startTime": "2022-09-19T09:46:37.0402945Z", - "endTime": "2022-09-19T09:46:38.3840419Z", + "startTime": "2022-10-25T13:18:56.9501583Z", + "endTime": "2022-10-25T13:19:00.5232946Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1" @@ -2659,13 +3058,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bbb8d753-83ab-4ed4-a37f-c35d1a14e571?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/153301be-8409-49da-a294-da1f7a673663?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2673,7 +3072,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:47:07 GMT", + "Date": "Tue, 25 Oct 2022 13:19:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2681,22 +3080,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abbf8406-5bca-4bed-94bf-d76aa5707835", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094707Z:abbf8406-5bca-4bed-94bf-d76aa5707835", + "x-ms-correlation-request-id": "cd81cf99-e87b-4461-a1ee-e38d88468fe6", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131927Z:cd81cf99-e87b-4461-a1ee-e38d88468fe6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8676340d/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A46%3A37.0471469Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A18%3A56.9496488Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:35:32.5545519Z" + "CreatedOnDate": "2022-10-25T13:06:56.2705828Z" }, "properties": { - "poolId": "dcf00916-a602-4471-73be-2d6c9b129f63", + "poolId": "a5456ccd-9fde-ec32-948a-cbe5294cd20a", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d/capacityPools/sdk-py-tests-pool-1", @@ -2710,10 +3109,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:35:39.9884372Z", + "createdAt": "2022-10-25T13:06:57.2530025Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:35:39.9884372Z" + "lastModifiedAt": "2022-10-25T13:06:57.2530025Z" } } }, @@ -2725,20 +3124,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:47:17 GMT", + "Date": "Tue, 25 Oct 2022 13:19:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1351c1d-c6df-428d-9cb5-a6f11931281f", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094717Z:c1351c1d-c6df-428d-9cb5-a6f11931281f" + "x-ms-correlation-request-id": "45fcada2-0e3e-4567-af31-f1419d98fede", + "x-ms-ratelimit-remaining-subscription-deletes": "14962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131938Z:45fcada2-0e3e-4567-af31-f1419d98fede" }, "ResponseBody": null }, @@ -2750,20 +3149,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:47:27 GMT", + "Date": "Tue, 25 Oct 2022 13:19:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edb21546-89a9-4a48-b2d7-07a99d65f8a6", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094728Z:edb21546-89a9-4a48-b2d7-07a99d65f8a6" + "x-ms-correlation-request-id": "f6b1bfb0-8302-4328-9ae8-64aaeda21d48", + "x-ms-ratelimit-remaining-subscription-deletes": "14961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131948Z:f6b1bfb0-8302-4328-9ae8-64aaeda21d48" }, "ResponseBody": null }, @@ -2775,20 +3174,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:47:37 GMT", + "Date": "Tue, 25 Oct 2022 13:19:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "444e6885-5c01-4216-9b07-07f75b52d63d", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094738Z:444e6885-5c01-4216-9b07-07f75b52d63d" + "x-ms-correlation-request-id": "87746fa6-b7a1-4636-95c6-2c40e8ecd599", + "x-ms-ratelimit-remaining-subscription-deletes": "14960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T131958Z:87746fa6-b7a1-4636-95c6-2c40e8ecd599" }, "ResponseBody": null }, @@ -2800,20 +3199,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 09:47:48 GMT", + "Date": "Tue, 25 Oct 2022 13:20:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33e6f1cc-067c-4af6-aa11-cc8966291f8d", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094748Z:33e6f1cc-067c-4af6-aa11-cc8966291f8d" + "x-ms-correlation-request-id": "6584ccec-e4ed-410e-b43b-13f1d6804090", + "x-ms-ratelimit-remaining-subscription-deletes": "14959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132009Z:6584ccec-e4ed-410e-b43b-13f1d6804090" }, "ResponseBody": null }, @@ -2824,7 +3223,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2832,14 +3231,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:47:58 GMT", + "Date": "Tue, 25 Oct 2022 13:20:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd8edbae-1418-428e-8327-d7a808944cb8", + "x-ms-correlation-request-id": "d484da9c-ddaa-42cd-a651-fcfc522ecffb", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094758Z:dd8edbae-1418-428e-8327-d7a808944cb8" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132019Z:d484da9c-ddaa-42cd-a651-fcfc522ecffb" }, "ResponseBody": { "error": { @@ -2856,36 +3255,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a39f775-b6eb-4627-8a33-d1a02547f847?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/35786100-4315-47b3-93f5-3f187953f5ce?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:47:59 GMT", + "Date": "Tue, 25 Oct 2022 13:21:10 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a39f775-b6eb-4627-8a33-d1a02547f847?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/35786100-4315-47b3-93f5-3f187953f5ce?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "814a5f76-7115-4544-8170-e189adec0ae6", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094800Z:814a5f76-7115-4544-8170-e189adec0ae6", + "x-ms-correlation-request-id": "fb7b5126-1a60-4e02-b378-aa1219821383", + "x-ms-ratelimit-remaining-subscription-deletes": "14958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132110Z:fb7b5126-1a60-4e02-b378-aa1219821383", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a39f775-b6eb-4627-8a33-d1a02547f847?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/35786100-4315-47b3-93f5-3f187953f5ce?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2893,7 +3292,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:48:30 GMT", + "Date": "Tue, 25 Oct 2022 13:21:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2901,17 +3300,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4336577a-c33e-49d7-9428-c2975e4a0589", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094830Z:4336577a-c33e-49d7-9428-c2975e4a0589", + "x-ms-correlation-request-id": "fa80dc7f-09cd-4d12-9fc6-e577b3ea8828", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132111Z:fa80dc7f-09cd-4d12-9fc6-e577b3ea8828", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a39f775-b6eb-4627-8a33-d1a02547f847", - "name": "0a39f775-b6eb-4627-8a33-d1a02547f847", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/35786100-4315-47b3-93f5-3f187953f5ce", + "name": "35786100-4315-47b3-93f5-3f187953f5ce", "status": "Succeeded", - "startTime": "2022-09-19T09:48:00.2006438Z", - "endTime": "2022-09-19T09:48:00.2944063Z", + "startTime": "2022-10-25T13:21:10.7586464Z", + "endTime": "2022-10-25T13:21:10.8367553Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d" @@ -2919,13 +3318,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a39f775-b6eb-4627-8a33-d1a02547f847?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/35786100-4315-47b3-93f5-3f187953f5ce?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2933,7 +3332,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:48:30 GMT", + "Date": "Tue, 25 Oct 2022 13:21:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2941,19 +3340,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "264d4c76-0fb1-4a68-adb6-66777f1ce04e", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094830Z:264d4c76-0fb1-4a68-adb6-66777f1ce04e", + "x-ms-correlation-request-id": "0cdd11ad-1021-4e01-b1dd-8e6ced7b7a15", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132111Z:0cdd11ad-1021-4e01-b1dd-8e6ced7b7a15", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d", "name": "sdk-py-tests-acc-1-8676340d", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A48%3A00.2053518Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A21%3A10.756622Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:40:19.2707006Z" + "CreatedOnDate": "2022-10-25T13:12:05.7667578Z" }, "properties": { "encryption": { @@ -2965,10 +3364,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:34:59.3003552Z", + "createdAt": "2022-10-25T13:06:53.8295569Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:40:19.4460408Z" + "lastModifiedAt": "2022-10-25T13:12:06.0073448Z" } } }, @@ -2979,50 +3378,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:48:30 GMT", + "Date": "Tue, 25 Oct 2022 13:21:11 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25e48ba9-9d33-488b-9218-24a0b01d1e98", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094831Z:25e48ba9-9d33-488b-9218-24a0b01d1e98" + "x-ms-correlation-request-id": "353e0b01-1620-4b9c-8e50-fbe03b3ccb59", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132111Z:353e0b01-1620-4b9c-8e50-fbe03b3ccb59", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8676340d\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8676340d?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4f84bc59-6c89-4f2d-87d8-b0b8e65c2269?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8806463a-d9b5-42d2-abea-57bf1fac35f7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:48:31 GMT", + "Date": "Tue, 25 Oct 2022 13:21:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/4f84bc59-6c89-4f2d-87d8-b0b8e65c2269?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/8806463a-d9b5-42d2-abea-57bf1fac35f7?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -3031,10 +3432,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7b479a98-91d8-46f2-97c0-515add8b0e4d", - "x-ms-correlation-request-id": "d6e6266a-5fbf-4f92-9bae-ea4d58478354", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094831Z:d6e6266a-5fbf-4f92-9bae-ea4d58478354" + "x-ms-arm-service-request-id": "7b0b73f6-7a8e-4b3e-b11e-94b353c02fea", + "x-ms-correlation-request-id": "97d70d19-eb18-48d7-ad3a-0dbd67eaba07", + "x-ms-ratelimit-remaining-subscription-deletes": "14957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T132112Z:97d70d19-eb18-48d7-ad3a-0dbd67eaba07" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_create_delete_snapshot_policy.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_create_delete_snapshot_policy.json index 1cda8b772f7f..ae0e20ddcdf4 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_create_delete_snapshot_policy.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_create_delete_snapshot_policy.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:24:27 GMT", + "Date": "Tue, 25 Oct 2022 13:01:45 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:24:28 GMT", + "Date": "Tue, 25 Oct 2022 13:01:46 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "c29fdf77-fd94-4e17-9fb0-cf9f9d20e76f", + "client-request-id": "be0472de-1443-4e22-b980-11bf30a41896", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "c29fdf77-fd94-4e17-9fb0-cf9f9d20e76f", + "client-request-id": "be0472de-1443-4e22-b980-11bf30a41896", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:24:28 GMT", + "Date": "Tue, 25 Oct 2022 13:01:46 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e34879bf-b437-4bb7-a0b9-6d9f0f0737bb?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dffd7358-8db0-483a-9275-52e9d1a604be?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "706", + "Content-Length": "705", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:24:35 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A24%3A34.5882803Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:01:53 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A01%3A53.053548Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c53a4da-1004-4fe6-8005-65e957cffb97", + "x-ms-correlation-request-id": "a14d3515-329e-458c-ba24-d708bc8c1543", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092436Z:9c53a4da-1004-4fe6-8005-65e957cffb97", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130154Z:a14d3515-329e-458c-ba24-d708bc8c1543", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295", "name": "sdk-py-tests-acc-1-e2f73295", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A24%3A34.5882803Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A01%3A53.053548Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:24:30.2044012Z" + "CreatedOnDate": "2022-10-25T13:01:49.5786713Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:24:33.6952111Z", + "createdAt": "2022-10-25T13:01:52.0847802Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:24:33.6952111Z" + "lastModifiedAt": "2022-10-25T13:01:52.0847802Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e34879bf-b437-4bb7-a0b9-6d9f0f0737bb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dffd7358-8db0-483a-9275-52e9d1a604be?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:25:06 GMT", + "Date": "Tue, 25 Oct 2022 13:01:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be56600c-13ac-499c-a55e-0848c6916dbe", + "x-ms-correlation-request-id": "80dd327d-ec39-438b-8354-0d3504d525c8", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092506Z:be56600c-13ac-499c-a55e-0848c6916dbe", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130155Z:80dd327d-ec39-438b-8354-0d3504d525c8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e34879bf-b437-4bb7-a0b9-6d9f0f0737bb", - "name": "e34879bf-b437-4bb7-a0b9-6d9f0f0737bb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dffd7358-8db0-483a-9275-52e9d1a604be", + "name": "dffd7358-8db0-483a-9275-52e9d1a604be", "status": "Succeeded", - "startTime": "2022-09-19T09:24:34.5927303Z", - "endTime": "2022-09-19T09:24:34.6240502Z", + "startTime": "2022-10-25T13:01:53.0530629Z", + "endTime": "2022-10-25T13:01:53.1155689Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:25:06 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A24%3A34.6298779Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:01:55 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A01%3A53.1054478Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ff2da98-49d7-487f-a799-77bb3036c28d", + "x-ms-correlation-request-id": "7360945b-26e5-4612-955d-967231439a18", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092506Z:9ff2da98-49d7-487f-a799-77bb3036c28d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130156Z:7360945b-26e5-4612-955d-967231439a18", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295", "name": "sdk-py-tests-acc-1-e2f73295", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A24%3A34.6298779Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A01%3A53.1054478Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:24:30.2044012Z" + "CreatedOnDate": "2022-10-25T13:01:49.5786713Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:24:33.6952111Z", + "createdAt": "2022-10-25T13:01:52.0847802Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:24:33.6952111Z" + "lastModifiedAt": "2022-10-25T13:01:52.0847802Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "179", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -404,30 +404,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/148750a1-f9a8-462c-9bf1-b459cc8f3deb?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/75a3325c-0ebd-4f4d-a445-662ab2c1bb74?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "929", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:25:26 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A25%3A25.0962776Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:01:57 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A01%3A58.0297577Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db93895b-09a2-49b4-80d7-73d2337f517a", + "x-ms-correlation-request-id": "eb441ad8-8524-4ce1-a2f4-f9849d77f628", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092526Z:db93895b-09a2-49b4-80d7-73d2337f517a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130158Z:eb441ad8-8524-4ce1-a2f4-f9849d77f628", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-e2f73295/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A25%3A25.0962776Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A01%3A58.0297577Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:25:07.1687179Z" + "CreatedOnDate": "2022-10-25T13:01:56.5747080Z" }, "properties": { "enabled": false, @@ -443,10 +443,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:25:24.8988817Z", + "createdAt": "2022-10-25T13:01:57.8544634Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:25:24.8988817Z" + "lastModifiedAt": "2022-10-25T13:01:57.8544634Z" } } }, @@ -457,7 +457,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -465,7 +465,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:25:29 GMT", + "Date": "Tue, 25 Oct 2022 13:01:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -473,9 +473,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d657a274-1376-449d-91c2-3c12d6c521b5", + "x-ms-correlation-request-id": "937aa964-cd71-4774-bcf2-257f2f19ce24", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092529Z:d657a274-1376-449d-91c2-3c12d6c521b5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130159Z:937aa964-cd71-4774-bcf2-257f2f19ce24", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -484,10 +484,10 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-e2f73295/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A25%3A25.1476744Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A01%3A58.1046054Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:25:07.1687179Z" + "CreatedOnDate": "2022-10-25T13:01:56.5747080Z" }, "properties": { "enabled": false, @@ -503,10 +503,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:25:24.8988817Z", + "createdAt": "2022-10-25T13:01:57.8544634Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:25:24.8988817Z" + "lastModifiedAt": "2022-10-25T13:01:57.8544634Z" } } ] @@ -520,36 +520,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af6cac0e-a65b-4acc-9928-d8f04eaac677?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/424ae407-767d-45de-add4-d3baa56aef31?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:25:29 GMT", + "Date": "Tue, 25 Oct 2022 13:01:59 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af6cac0e-a65b-4acc-9928-d8f04eaac677?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/424ae407-767d-45de-add4-d3baa56aef31?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3fcc9b75-323e-445e-9579-8c8d0fde786e", + "x-ms-correlation-request-id": "f52d163c-773e-433b-8149-02e07fa46bc5", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092529Z:3fcc9b75-323e-445e-9579-8c8d0fde786e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130200Z:f52d163c-773e-433b-8149-02e07fa46bc5", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af6cac0e-a65b-4acc-9928-d8f04eaac677?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/424ae407-767d-45de-add4-d3baa56aef31?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,7 +557,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:25:59 GMT", + "Date": "Tue, 25 Oct 2022 13:01:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -565,17 +565,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff2e0f54-9713-44e3-9153-e95f803bc1c0", + "x-ms-correlation-request-id": "665988d5-ec28-467a-9d33-610c382ec67f", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092600Z:ff2e0f54-9713-44e3-9153-e95f803bc1c0", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130200Z:665988d5-ec28-467a-9d33-610c382ec67f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af6cac0e-a65b-4acc-9928-d8f04eaac677", - "name": "af6cac0e-a65b-4acc-9928-d8f04eaac677", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/424ae407-767d-45de-add4-d3baa56aef31", + "name": "424ae407-767d-45de-add4-d3baa56aef31", "status": "Succeeded", - "startTime": "2022-09-19T09:25:29.7897234Z", - "endTime": "2022-09-19T09:25:29.8365622Z", + "startTime": "2022-10-25T13:02:00.0703858Z", + "endTime": "2022-10-25T13:02:00.1015748Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies/sdk-py-tests-snapshot-policy-1" @@ -583,13 +583,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af6cac0e-a65b-4acc-9928-d8f04eaac677?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/424ae407-767d-45de-add4-d3baa56aef31?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -597,7 +597,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:26:00 GMT", + "Date": "Tue, 25 Oct 2022 13:01:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -605,19 +605,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ecdca275-f11a-4600-9e02-fb3a58f3754e", + "x-ms-correlation-request-id": "eeba8395-60af-46f9-8586-e2582a090b69", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092601Z:ecdca275-f11a-4600-9e02-fb3a58f3754e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130200Z:eeba8395-60af-46f9-8586-e2582a090b69", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-e2f73295/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A25%3A29.7839033Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A02%3A00.0484995Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:25:07.1687179Z" + "CreatedOnDate": "2022-10-25T13:01:56.5747080Z" }, "properties": { "enabled": false, @@ -633,10 +633,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:25:24.8988817Z", + "createdAt": "2022-10-25T13:01:57.8544634Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:25:24.8988817Z" + "lastModifiedAt": "2022-10-25T13:01:57.8544634Z" } } }, @@ -647,27 +647,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "302", + "Content-Length": "303", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:26:07 GMT", + "Date": "Tue, 25 Oct 2022 13:02:06 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aba781a6-7e20-41e8-92e5-10141cfe23d0", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092607Z:aba781a6-7e20-41e8-92e5-10141cfe23d0" + "x-ms-correlation-request-id": "9fa5e2cb-ca40-452c-a505-aea01ec396f6", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130206Z:9fa5e2cb-ca40-452c-a505-aea01ec396f6", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 is not found." } } }, @@ -678,7 +680,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -686,7 +688,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:26:07 GMT", + "Date": "Tue, 25 Oct 2022 13:02:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -694,9 +696,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da4ef285-2683-4e77-9093-15eed895e60f", + "x-ms-correlation-request-id": "e08dc215-0015-4258-b442-1ed5ba746608", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092607Z:da4ef285-2683-4e77-9093-15eed895e60f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130206Z:e08dc215-0015-4258-b442-1ed5ba746608", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -711,36 +713,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2147dbf-9718-4278-8ccd-b63c506eb310?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0987e2c-657c-4a0b-9d8a-8e175abcd9d7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:26:08 GMT", + "Date": "Tue, 25 Oct 2022 13:02:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2147dbf-9718-4278-8ccd-b63c506eb310?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0987e2c-657c-4a0b-9d8a-8e175abcd9d7?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11ff8de1-ffd0-419e-8d09-eadb25071583", + "x-ms-correlation-request-id": "10d691bd-3991-4442-bbc9-f71fb1407441", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092608Z:11ff8de1-ffd0-419e-8d09-eadb25071583", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130258Z:10d691bd-3991-4442-bbc9-f71fb1407441", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2147dbf-9718-4278-8ccd-b63c506eb310?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0987e2c-657c-4a0b-9d8a-8e175abcd9d7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -748,7 +750,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:26:38 GMT", + "Date": "Tue, 25 Oct 2022 13:02:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -756,17 +758,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5b6831a-3261-495c-9d2c-0e407c792771", + "x-ms-correlation-request-id": "b9ce66f9-28c0-4091-8344-92bd426eaca9", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092638Z:a5b6831a-3261-495c-9d2c-0e407c792771", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130258Z:b9ce66f9-28c0-4091-8344-92bd426eaca9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2147dbf-9718-4278-8ccd-b63c506eb310", - "name": "b2147dbf-9718-4278-8ccd-b63c506eb310", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0987e2c-657c-4a0b-9d8a-8e175abcd9d7", + "name": "a0987e2c-657c-4a0b-9d8a-8e175abcd9d7", "status": "Succeeded", - "startTime": "2022-09-19T09:26:08.5250856Z", - "endTime": "2022-09-19T09:26:08.5719214Z", + "startTime": "2022-10-25T13:02:58.0764203Z", + "endTime": "2022-10-25T13:02:58.1232524Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295" @@ -774,13 +776,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b2147dbf-9718-4278-8ccd-b63c506eb310?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0987e2c-657c-4a0b-9d8a-8e175abcd9d7?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -788,7 +790,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:26:38 GMT", + "Date": "Tue, 25 Oct 2022 13:02:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -796,19 +798,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65427783-f701-41cd-b3f0-426ceb359998", + "x-ms-correlation-request-id": "da032023-b405-4a3a-baa2-6b35cf305666", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092639Z:65427783-f701-41cd-b3f0-426ceb359998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130258Z:da032023-b405-4a3a-baa2-6b35cf305666", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295", "name": "sdk-py-tests-acc-1-e2f73295", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A26%3A08.5227634Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A02%3A58.0495269Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:24:30.2044012Z" + "CreatedOnDate": "2022-10-25T13:01:49.5786713Z" }, "properties": { "encryption": { @@ -819,10 +821,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:24:33.6952111Z", + "createdAt": "2022-10-25T13:01:52.0847802Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:24:33.6952111Z" + "lastModifiedAt": "2022-10-25T13:01:52.0847802Z" } } }, @@ -833,27 +835,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:26:38 GMT", + "Date": "Tue, 25 Oct 2022 13:02:58 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8292e49-4d2a-4cc0-8d04-35d6f635c886", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092639Z:f8292e49-4d2a-4cc0-8d04-35d6f635c886" + "x-ms-correlation-request-id": "17bb2456-abbd-4f5f-a384-121ed6f3271b", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130259Z:17bb2456-abbd-4f5f-a384-121ed6f3271b", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e2f73295\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_get_snapshot_policy_by_name.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_get_snapshot_policy_by_name.json index 19fd74d21313..8a6f89e3c995 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_get_snapshot_policy_by_name.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_get_snapshot_policy_by_name.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:29:46 GMT", + "Date": "Tue, 25 Oct 2022 13:04:17 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:29:46 GMT", + "Date": "Tue, 25 Oct 2022 13:04:17 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "ff60c916-ecc7-490b-9f75-0feb22b6464a", + "client-request-id": "28cb80ae-c8d0-4d16-b4d7-108010319195", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "ff60c916-ecc7-490b-9f75-0feb22b6464a", + "client-request-id": "28cb80ae-c8d0-4d16-b4d7-108010319195", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:29:46 GMT", + "Date": "Tue, 25 Oct 2022 13:04:17 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0e872fb-f9d0-4f64-baf4-e20087a69208?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f32c6d9-7488-47a9-8290-feecdbcf2dc2?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:29:55 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A29%3A53.8088458Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:04:22 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A04%3A21.0498273Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "475765f4-cbd3-4e02-97d2-a0129c573268", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092955Z:475765f4-cbd3-4e02-97d2-a0129c573268", + "x-ms-correlation-request-id": "2b83a954-88c7-4817-839c-3735cfffe603", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130422Z:2b83a954-88c7-4817-839c-3735cfffe603", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9", "name": "sdk-py-tests-acc-1-7ffd31c9", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A29%3A53.8088458Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A04%3A21.0498273Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:29:49.4640136Z" + "CreatedOnDate": "2022-10-25T13:04:18.9666867Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:29:52.9118272Z", + "createdAt": "2022-10-25T13:04:20.9029435Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:29:52.9118272Z" + "lastModifiedAt": "2022-10-25T13:04:20.9029435Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0e872fb-f9d0-4f64-baf4-e20087a69208?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f32c6d9-7488-47a9-8290-feecdbcf2dc2?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:30:25 GMT", + "Date": "Tue, 25 Oct 2022 13:04:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d133c6a-a330-4b46-8692-24ef52f0c93d", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093025Z:0d133c6a-a330-4b46-8692-24ef52f0c93d", + "x-ms-correlation-request-id": "ea38f3c9-fb21-41dd-9acc-1606858ee915", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130422Z:ea38f3c9-fb21-41dd-9acc-1606858ee915", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0e872fb-f9d0-4f64-baf4-e20087a69208", - "name": "e0e872fb-f9d0-4f64-baf4-e20087a69208", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f32c6d9-7488-47a9-8290-feecdbcf2dc2", + "name": "0f32c6d9-7488-47a9-8290-feecdbcf2dc2", "status": "Succeeded", - "startTime": "2022-09-19T09:29:53.8114872Z", - "endTime": "2022-09-19T09:29:53.8426731Z", + "startTime": "2022-10-25T13:04:21.0520975Z", + "endTime": "2022-10-25T13:04:21.1142876Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:30:25 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A29%3A53.8492206Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:04:22 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A04%3A21.1143052Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e912dc79-f0fb-49f6-8e8f-87f1e692e478", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093026Z:e912dc79-f0fb-49f6-8e8f-87f1e692e478", + "x-ms-correlation-request-id": "ed51d88f-6ad6-4d85-9f65-0237970c5943", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130423Z:ed51d88f-6ad6-4d85-9f65-0237970c5943", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9", "name": "sdk-py-tests-acc-1-7ffd31c9", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A29%3A53.8492206Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A04%3A21.1143052Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:29:49.4640136Z" + "CreatedOnDate": "2022-10-25T13:04:18.9666867Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:29:52.9118272Z", + "createdAt": "2022-10-25T13:04:20.9029435Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:29:52.9118272Z" + "lastModifiedAt": "2022-10-25T13:04:20.9029435Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "179", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -404,30 +404,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51e067c6-60aa-4be0-ba44-f362c874d394?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d9916398-a163-4036-8db9-1b7530d4812b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "929", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:30:28 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A30%3A27.8994525Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:04:25 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A04%3A24.4748535Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9554d142-efe3-465d-b3c6-d02f3a32cef7", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093028Z:9554d142-efe3-465d-b3c6-d02f3a32cef7", + "x-ms-correlation-request-id": "0db5c340-37c3-41c2-83ca-bea978566c5c", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130425Z:0db5c340-37c3-41c2-83ca-bea978566c5c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-7ffd31c9/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A30%3A27.8994525Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A04%3A24.4748535Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:30:26.4651321Z" + "CreatedOnDate": "2022-10-25T13:04:23.3266622Z" }, "properties": { "enabled": false, @@ -443,10 +443,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:30:27.7523994Z", + "createdAt": "2022-10-25T13:04:24.3270668Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:30:27.7523994Z" + "lastModifiedAt": "2022-10-25T13:04:24.3270668Z" } } }, @@ -457,7 +457,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -465,8 +465,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:30:29 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A30%3A27.9658394Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:04:25 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A04%3A24.5363583Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -474,19 +474,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65049ba1-86a0-41c5-b745-41e50afc9628", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093029Z:65049ba1-86a0-41c5-b745-41e50afc9628", + "x-ms-correlation-request-id": "1974de78-5f5e-4c2c-bf84-ecb5a444fdb3", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130426Z:1974de78-5f5e-4c2c-bf84-ecb5a444fdb3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-7ffd31c9/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A30%3A27.9658394Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A04%3A24.5363583Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:30:26.4651321Z" + "CreatedOnDate": "2022-10-25T13:04:23.3266622Z" }, "properties": { "enabled": false, @@ -502,10 +502,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:30:27.7523994Z", + "createdAt": "2022-10-25T13:04:24.3270668Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:30:27.7523994Z" + "lastModifiedAt": "2022-10-25T13:04:24.3270668Z" } } }, @@ -517,36 +517,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba8c9a87-58e6-4655-9c06-518ec3bdcf93?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed80adda-fcdb-4561-8d69-d3c8eac97f05?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:30:30 GMT", + "Date": "Tue, 25 Oct 2022 13:04:26 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba8c9a87-58e6-4655-9c06-518ec3bdcf93?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed80adda-fcdb-4561-8d69-d3c8eac97f05?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc48f31c-8ffc-4b28-bf96-b3a6ef1388f6", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093030Z:fc48f31c-8ffc-4b28-bf96-b3a6ef1388f6", + "x-ms-correlation-request-id": "68b8b88a-53c9-4775-bb04-efebc0cff6b8", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130427Z:68b8b88a-53c9-4775-bb04-efebc0cff6b8", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba8c9a87-58e6-4655-9c06-518ec3bdcf93?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed80adda-fcdb-4561-8d69-d3c8eac97f05?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -554,7 +554,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:30:59 GMT", + "Date": "Tue, 25 Oct 2022 13:04:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -562,17 +562,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "976e28ad-a918-4b71-9372-a869e0d47783", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093100Z:976e28ad-a918-4b71-9372-a869e0d47783", + "x-ms-correlation-request-id": "462c61ba-9543-41c6-ada5-21a7dfb6c92d", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130427Z:462c61ba-9543-41c6-ada5-21a7dfb6c92d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba8c9a87-58e6-4655-9c06-518ec3bdcf93", - "name": "ba8c9a87-58e6-4655-9c06-518ec3bdcf93", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed80adda-fcdb-4561-8d69-d3c8eac97f05", + "name": "ed80adda-fcdb-4561-8d69-d3c8eac97f05", "status": "Succeeded", - "startTime": "2022-09-19T09:30:30.0538528Z", - "endTime": "2022-09-19T09:30:30.100723Z", + "startTime": "2022-10-25T13:04:26.9282107Z", + "endTime": "2022-10-25T13:04:26.9594414Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1" @@ -580,13 +580,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba8c9a87-58e6-4655-9c06-518ec3bdcf93?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed80adda-fcdb-4561-8d69-d3c8eac97f05?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -594,7 +594,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:31:00 GMT", + "Date": "Tue, 25 Oct 2022 13:04:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -602,19 +602,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b774aed-a25b-48e6-b9d6-9e206e5b0870", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093100Z:0b774aed-a25b-48e6-b9d6-9e206e5b0870", + "x-ms-correlation-request-id": "08e3f949-9d07-4f7d-9f7f-394c3f2a4119", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130427Z:08e3f949-9d07-4f7d-9f7f-394c3f2a4119", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-7ffd31c9/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A30%3A30.0465922Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A04%3A26.9070093Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:30:26.4651321Z" + "CreatedOnDate": "2022-10-25T13:04:23.3266622Z" }, "properties": { "enabled": false, @@ -630,10 +630,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:30:27.7523994Z", + "createdAt": "2022-10-25T13:04:24.3270668Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:30:27.7523994Z" + "lastModifiedAt": "2022-10-25T13:04:24.3270668Z" } } }, @@ -644,27 +644,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "302", + "Content-Length": "303", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:31:05 GMT", + "Date": "Tue, 25 Oct 2022 13:04:32 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78d8162b-1410-4392-9439-cfde1ea9319b", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093105Z:78d8162b-1410-4392-9439-cfde1ea9319b" + "x-ms-correlation-request-id": "68c898f2-4e39-429e-99ed-0f50321b7d01", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130432Z:68c898f2-4e39-429e-99ed-0f50321b7d01", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 is not found." } } }, @@ -676,36 +678,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ebce6e7-e74b-4355-8559-489c053b92c0?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/787ea293-8781-4ccb-89f7-a7c073c6dcde?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:31:06 GMT", + "Date": "Tue, 25 Oct 2022 13:05:23 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ebce6e7-e74b-4355-8559-489c053b92c0?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/787ea293-8781-4ccb-89f7-a7c073c6dcde?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ef33c8a-5e67-41f4-988f-a2fe705b203e", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093106Z:3ef33c8a-5e67-41f4-988f-a2fe705b203e", + "x-ms-correlation-request-id": "401942dc-28eb-4228-94ce-47dc44ec73b7", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130524Z:401942dc-28eb-4228-94ce-47dc44ec73b7", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ebce6e7-e74b-4355-8559-489c053b92c0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/787ea293-8781-4ccb-89f7-a7c073c6dcde?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -713,7 +715,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:31:36 GMT", + "Date": "Tue, 25 Oct 2022 13:05:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -721,17 +723,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e1effff-f4b4-46ff-a66f-2cbc36b12c23", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093136Z:1e1effff-f4b4-46ff-a66f-2cbc36b12c23", + "x-ms-correlation-request-id": "2d83ed3d-421e-4f27-9906-4bf3f44567a8", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130524Z:2d83ed3d-421e-4f27-9906-4bf3f44567a8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ebce6e7-e74b-4355-8559-489c053b92c0", - "name": "2ebce6e7-e74b-4355-8559-489c053b92c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/787ea293-8781-4ccb-89f7-a7c073c6dcde", + "name": "787ea293-8781-4ccb-89f7-a7c073c6dcde", "status": "Succeeded", - "startTime": "2022-09-19T09:31:06.5392771Z", - "endTime": "2022-09-19T09:31:06.5861303Z", + "startTime": "2022-10-25T13:05:24.3596618Z", + "endTime": "2022-10-25T13:05:24.4064653Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9" @@ -739,13 +741,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ebce6e7-e74b-4355-8559-489c053b92c0?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/787ea293-8781-4ccb-89f7-a7c073c6dcde?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -753,7 +755,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:31:36 GMT", + "Date": "Tue, 25 Oct 2022 13:05:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -761,19 +763,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a04944f-61e6-41d1-bd34-8665abfccfa3", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093137Z:5a04944f-61e6-41d1-bd34-8665abfccfa3", + "x-ms-correlation-request-id": "507d3e35-1003-4efe-8dea-f9cd1607e342", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130525Z:507d3e35-1003-4efe-8dea-f9cd1607e342", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9", "name": "sdk-py-tests-acc-1-7ffd31c9", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A31%3A06.530741Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A24.3413162Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:29:49.4640136Z" + "CreatedOnDate": "2022-10-25T13:04:18.9666867Z" }, "properties": { "encryption": { @@ -784,10 +786,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:29:52.9118272Z", + "createdAt": "2022-10-25T13:04:20.9029435Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:29:52.9118272Z" + "lastModifiedAt": "2022-10-25T13:04:20.9029435Z" } } }, @@ -798,27 +800,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:31:36 GMT", + "Date": "Tue, 25 Oct 2022 13:05:24 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85b69c22-10d0-40fd-bd7d-bb95e3dec467", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093137Z:85b69c22-10d0-40fd-bd7d-bb95e3dec467" + "x-ms-correlation-request-id": "eefed896-8a50-490a-9724-702a09866082", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130525Z:eefed896-8a50-490a-9724-702a09866082", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7ffd31c9\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_list_snapshot_policies.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_list_snapshot_policies.json index a1721f1b5ac4..18b65bf5eefa 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_list_snapshot_policies.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_list_snapshot_policies.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:27:02 GMT", + "Date": "Tue, 25 Oct 2022 13:02:59 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:27:03 GMT", + "Date": "Tue, 25 Oct 2022 13:02:59 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "6b08e9b6-a2ea-43a7-85d1-51fe07974a46", + "client-request-id": "d11b081c-d6d4-4e27-9c9a-29732c2085c6", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "6b08e9b6-a2ea-43a7-85d1-51fe07974a46", + "client-request-id": "d11b081c-d6d4-4e27-9c9a-29732c2085c6", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:27:03 GMT", + "Date": "Tue, 25 Oct 2022 13:02:59 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d98549d6-6125-48dd-89bd-6791558ac7df?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f77ff515-4d69-4bce-a81d-6656256c7305?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:27:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A08.2280473Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:03:03 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A03.0530063Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66dfb9ad-b3ee-43b6-91e6-b202b28846d6", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092709Z:66dfb9ad-b3ee-43b6-91e6-b202b28846d6", + "x-ms-correlation-request-id": "b6512fa4-b697-4dc8-b1ee-be261de40258", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130304Z:b6512fa4-b697-4dc8-b1ee-be261de40258", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3", "name": "sdk-py-tests-acc-1-88d22fd3", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A08.2280473Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A03.0530063Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:27:05.0419778Z" + "CreatedOnDate": "2022-10-25T13:03:00.9381746Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:27:07.3441768Z", + "createdAt": "2022-10-25T13:03:02.7804972Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:27:07.3441768Z" + "lastModifiedAt": "2022-10-25T13:03:02.7804972Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d98549d6-6125-48dd-89bd-6791558ac7df?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f77ff515-4d69-4bce-a81d-6656256c7305?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:27:39 GMT", + "Date": "Tue, 25 Oct 2022 13:03:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9040624-6371-4b65-aa8b-4fcad9457990", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092740Z:d9040624-6371-4b65-aa8b-4fcad9457990", + "x-ms-correlation-request-id": "56a2c731-11b0-475d-88f1-5d742863efbc", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130304Z:56a2c731-11b0-475d-88f1-5d742863efbc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d98549d6-6125-48dd-89bd-6791558ac7df", - "name": "d98549d6-6125-48dd-89bd-6791558ac7df", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f77ff515-4d69-4bce-a81d-6656256c7305", + "name": "f77ff515-4d69-4bce-a81d-6656256c7305", "status": "Succeeded", - "startTime": "2022-09-19T09:27:08.2335439Z", - "endTime": "2022-09-19T09:27:08.2960487Z", + "startTime": "2022-10-25T13:03:03.0489933Z", + "endTime": "2022-10-25T13:03:03.1115109Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:27:40 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A08.3020833Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:03:04 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A03.1146496Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2bcbd02c-09c3-410d-9c37-09bc2cd85f81", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092740Z:2bcbd02c-09c3-410d-9c37-09bc2cd85f81", + "x-ms-correlation-request-id": "2d126c10-02cf-4c50-84cf-b38f3ff8bc28", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130304Z:2d126c10-02cf-4c50-84cf-b38f3ff8bc28", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3", "name": "sdk-py-tests-acc-1-88d22fd3", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A08.3020833Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A03.1146496Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:27:05.0419778Z" + "CreatedOnDate": "2022-10-25T13:03:00.9381746Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:27:07.3441768Z", + "createdAt": "2022-10-25T13:03:02.7804972Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:27:07.3441768Z" + "lastModifiedAt": "2022-10-25T13:03:02.7804972Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "179", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -404,30 +404,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/adfea1e4-e9ba-4687-b40a-c1aa1d3cbab5?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aa60e70b-4fe5-444e-999d-eabb7e3e1460?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "929", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:27:42 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A41.8639127Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:03:07 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A06.3771108Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23df5691-c3fd-4210-b9fd-a7e7ea10e557", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092743Z:23df5691-c3fd-4210-b9fd-a7e7ea10e557", + "x-ms-correlation-request-id": "6c17d41c-63c5-4282-9ee6-c96c4744015f", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130307Z:6c17d41c-63c5-4282-9ee6-c96c4744015f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-88d22fd3/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A41.8639127Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A06.3771108Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:27:40.7258374Z" + "CreatedOnDate": "2022-10-25T13:03:05.2548946Z" }, "properties": { "enabled": false, @@ -443,10 +443,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:27:41.6860528Z", + "createdAt": "2022-10-25T13:03:06.2356221Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:27:41.6860528Z" + "lastModifiedAt": "2022-10-25T13:03:06.2356221Z" } } }, @@ -459,7 +459,7 @@ "Connection": "keep-alive", "Content-Length": "179", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -476,30 +476,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e0fa6d14-4689-4ceb-8def-94ca2e035811?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b8213f8-c211-486e-a5d1-df454a7e04e8?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "929", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:27:45 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A44.8052395Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:03:09 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A09.1265435Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da297509-5dbc-433b-86e3-6f14d6b37ddd", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092745Z:da297509-5dbc-433b-86e3-6f14d6b37ddd", + "x-ms-correlation-request-id": "001c0979-0b61-44f3-a97a-c265ad54dc58", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130310Z:001c0979-0b61-44f3-a97a-c265ad54dc58", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-2", "name": "sdk-py-tests-acc-1-88d22fd3/sdk-py-tests-snapshot-policy-2", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A44.8052395Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A09.1265435Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:27:43.5927195Z" + "CreatedOnDate": "2022-10-25T13:03:07.9890104Z" }, "properties": { "enabled": false, @@ -515,10 +515,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:27:44.6732924Z", + "createdAt": "2022-10-25T13:03:08.9563098Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:27:44.6732924Z" + "lastModifiedAt": "2022-10-25T13:03:08.9563098Z" } } }, @@ -529,7 +529,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -537,7 +537,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:27:45 GMT", + "Date": "Tue, 25 Oct 2022 13:03:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -545,9 +545,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fbc594aa-d4ff-4b6e-8857-5c2719028b83", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092746Z:fbc594aa-d4ff-4b6e-8857-5c2719028b83", + "x-ms-correlation-request-id": "3af7609c-4240-4a9f-9971-51b337ce5268", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130310Z:3af7609c-4240-4a9f-9971-51b337ce5268", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -556,10 +556,10 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-88d22fd3/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A41.9000426Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A06.4587496Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:27:40.7258374Z" + "CreatedOnDate": "2022-10-25T13:03:05.2548946Z" }, "properties": { "enabled": false, @@ -575,20 +575,20 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:27:41.6860528Z", + "createdAt": "2022-10-25T13:03:06.2356221Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:27:41.6860528Z" + "lastModifiedAt": "2022-10-25T13:03:06.2356221Z" } }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-2", "name": "sdk-py-tests-acc-1-88d22fd3/sdk-py-tests-snapshot-policy-2", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A44.8532808Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A09.2081872Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:27:43.5927195Z" + "CreatedOnDate": "2022-10-25T13:03:07.9890104Z" }, "properties": { "enabled": false, @@ -604,10 +604,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:27:44.6732924Z", + "createdAt": "2022-10-25T13:03:08.9563098Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:27:44.6732924Z" + "lastModifiedAt": "2022-10-25T13:03:08.9563098Z" } } ] @@ -621,36 +621,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbb06187-3863-45cc-a53b-e364d4fff438?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2f583aa-a199-41f8-870f-6210b8f130ef?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:27:46 GMT", + "Date": "Tue, 25 Oct 2022 13:03:10 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbb06187-3863-45cc-a53b-e364d4fff438?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2f583aa-a199-41f8-870f-6210b8f130ef?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7982b9d-a7f6-4c46-a061-89afd3caf3d6", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092747Z:b7982b9d-a7f6-4c46-a061-89afd3caf3d6", + "x-ms-correlation-request-id": "d6207d2d-a75e-4f66-b2ac-646c3ba7c25d", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130311Z:d6207d2d-a75e-4f66-b2ac-646c3ba7c25d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbb06187-3863-45cc-a53b-e364d4fff438?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2f583aa-a199-41f8-870f-6210b8f130ef?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -658,7 +658,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:28:16 GMT", + "Date": "Tue, 25 Oct 2022 13:03:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -666,17 +666,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "782c2c82-8298-4480-b16e-cf74296e3e36", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092817Z:782c2c82-8298-4480-b16e-cf74296e3e36", + "x-ms-correlation-request-id": "edb60eb3-272d-4a83-9d71-d6b61e107f6b", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130311Z:edb60eb3-272d-4a83-9d71-d6b61e107f6b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbb06187-3863-45cc-a53b-e364d4fff438", - "name": "cbb06187-3863-45cc-a53b-e364d4fff438", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2f583aa-a199-41f8-870f-6210b8f130ef", + "name": "f2f583aa-a199-41f8-870f-6210b8f130ef", "status": "Succeeded", - "startTime": "2022-09-19T09:27:46.9883815Z", - "endTime": "2022-09-19T09:27:47.0196032Z", + "startTime": "2022-10-25T13:03:11.0906741Z", + "endTime": "2022-10-25T13:03:11.1529385Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-1" @@ -684,13 +684,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbb06187-3863-45cc-a53b-e364d4fff438?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2f583aa-a199-41f8-870f-6210b8f130ef?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -698,7 +698,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:28:17 GMT", + "Date": "Tue, 25 Oct 2022 13:03:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -706,19 +706,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "469609ca-0dcc-4bda-a9c4-edad8480004e", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092817Z:469609ca-0dcc-4bda-a9c4-edad8480004e", + "x-ms-correlation-request-id": "8a2291c9-44d4-4388-b5d4-295d8f2a0e74", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130311Z:8a2291c9-44d4-4388-b5d4-295d8f2a0e74", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-88d22fd3/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A27%3A46.719168Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A11.049142Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:27:40.7258374Z" + "CreatedOnDate": "2022-10-25T13:03:05.2548946Z" }, "properties": { "enabled": false, @@ -734,10 +734,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:27:41.6860528Z", + "createdAt": "2022-10-25T13:03:06.2356221Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:27:41.6860528Z" + "lastModifiedAt": "2022-10-25T13:03:06.2356221Z" } } }, @@ -748,27 +748,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "302", + "Content-Length": "303", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:28:22 GMT", + "Date": "Tue, 25 Oct 2022 13:03:16 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70608dbb-3983-44cc-9978-6dfd07934879", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092822Z:70608dbb-3983-44cc-9978-6dfd07934879" + "x-ms-correlation-request-id": "8b00fa6f-7522-42f6-9ea8-bd27c36f7f13", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130317Z:8b00fa6f-7522-42f6-9ea8-bd27c36f7f13", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 is not found." } } }, @@ -780,36 +782,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/868afb0b-3e3b-4026-a631-260250aad91f?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d9860cc9-acba-4d9f-95a0-099c635e334c?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:28:22 GMT", + "Date": "Tue, 25 Oct 2022 13:03:17 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/868afb0b-3e3b-4026-a631-260250aad91f?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d9860cc9-acba-4d9f-95a0-099c635e334c?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "089115b3-c528-48a9-9d2d-22e90847ff2c", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092823Z:089115b3-c528-48a9-9d2d-22e90847ff2c", + "x-ms-correlation-request-id": "0e1525ff-84d4-45a9-a339-cdf612d47914", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130317Z:0e1525ff-84d4-45a9-a339-cdf612d47914", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/868afb0b-3e3b-4026-a631-260250aad91f?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d9860cc9-acba-4d9f-95a0-099c635e334c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -817,7 +819,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:28:53 GMT", + "Date": "Tue, 25 Oct 2022 13:03:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -825,17 +827,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d135014-63ba-41db-b2b6-fec9c8c1d432", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092853Z:0d135014-63ba-41db-b2b6-fec9c8c1d432", + "x-ms-correlation-request-id": "7ca777f4-dee4-475f-a302-4e80c6680008", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130318Z:7ca777f4-dee4-475f-a302-4e80c6680008", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/868afb0b-3e3b-4026-a631-260250aad91f", - "name": "868afb0b-3e3b-4026-a631-260250aad91f", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d9860cc9-acba-4d9f-95a0-099c635e334c", + "name": "d9860cc9-acba-4d9f-95a0-099c635e334c", "status": "Succeeded", - "startTime": "2022-09-19T09:28:23.4149074Z", - "endTime": "2022-09-19T09:28:23.4462831Z", + "startTime": "2022-10-25T13:03:17.86085Z", + "endTime": "2022-10-25T13:03:17.954237Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-2" @@ -843,13 +845,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/868afb0b-3e3b-4026-a631-260250aad91f?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d9860cc9-acba-4d9f-95a0-099c635e334c?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -857,7 +859,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:28:53 GMT", + "Date": "Tue, 25 Oct 2022 13:03:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -865,19 +867,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b67e7fa8-69b8-471a-a6c0-ded739c44920", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092854Z:b67e7fa8-69b8-471a-a6c0-ded739c44920", + "x-ms-correlation-request-id": "639fa78d-1d16-4771-869b-63ee0b3817f9", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130318Z:639fa78d-1d16-4771-869b-63ee0b3817f9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-2", "name": "sdk-py-tests-acc-1-88d22fd3/sdk-py-tests-snapshot-policy-2", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A28%3A23.4012806Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A03%3A17.7133554Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:27:43.5927195Z" + "CreatedOnDate": "2022-10-25T13:03:07.9890104Z" }, "properties": { "enabled": false, @@ -893,10 +895,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:27:44.6732924Z", + "createdAt": "2022-10-25T13:03:08.9563098Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:27:44.6732924Z" + "lastModifiedAt": "2022-10-25T13:03:08.9563098Z" } } }, @@ -907,27 +909,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "302", + "Content-Length": "303", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:28:58 GMT", + "Date": "Tue, 25 Oct 2022 13:03:23 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "612ad9b5-5c66-4227-93d5-67dd86be0d4d", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092859Z:612ad9b5-5c66-4227-93d5-67dd86be0d4d" + "x-ms-correlation-request-id": "5228750e-caa3-4d63-8562-26da94f4ef66", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130323Z:5228750e-caa3-4d63-8562-26da94f4ef66", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-2\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3/snapshotPolicies/sdk-py-tests-snapshot-policy-2\u0027 is not found." } } }, @@ -938,7 +942,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -946,7 +950,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:28:59 GMT", + "Date": "Tue, 25 Oct 2022 13:03:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -954,9 +958,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de998c6f-48d6-4882-bf54-7699dddfb260", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092859Z:de998c6f-48d6-4882-bf54-7699dddfb260", + "x-ms-correlation-request-id": "ae99f224-5350-43f0-a102-1ac6861e0a4f", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130324Z:ae99f224-5350-43f0-a102-1ac6861e0a4f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -971,36 +975,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b549a271-6407-4dfc-b232-6a0e7b304edb?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77cad27c-94e5-48fe-bb11-8d00f567a7a4?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:28:59 GMT", + "Date": "Tue, 25 Oct 2022 13:04:15 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b549a271-6407-4dfc-b232-6a0e7b304edb?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77cad27c-94e5-48fe-bb11-8d00f567a7a4?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47399206-2282-4966-bdc1-b2438d6e77bd", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092900Z:47399206-2282-4966-bdc1-b2438d6e77bd", + "x-ms-correlation-request-id": "cfed18b8-844b-4a83-9921-95e32fa144a3", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130415Z:cfed18b8-844b-4a83-9921-95e32fa144a3", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b549a271-6407-4dfc-b232-6a0e7b304edb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77cad27c-94e5-48fe-bb11-8d00f567a7a4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1008,7 +1012,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:29:30 GMT", + "Date": "Tue, 25 Oct 2022 13:04:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1016,17 +1020,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cdd74075-6c43-49d8-8507-379923750d04", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092930Z:cdd74075-6c43-49d8-8507-379923750d04", + "x-ms-correlation-request-id": "468588c0-6dd2-4804-b50b-70c5f44b3048", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130416Z:468588c0-6dd2-4804-b50b-70c5f44b3048", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b549a271-6407-4dfc-b232-6a0e7b304edb", - "name": "b549a271-6407-4dfc-b232-6a0e7b304edb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77cad27c-94e5-48fe-bb11-8d00f567a7a4", + "name": "77cad27c-94e5-48fe-bb11-8d00f567a7a4", "status": "Succeeded", - "startTime": "2022-09-19T09:29:00.4505856Z", - "endTime": "2022-09-19T09:29:00.5130908Z", + "startTime": "2022-10-25T13:04:15.7077649Z", + "endTime": "2022-10-25T13:04:15.7702545Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3" @@ -1034,13 +1038,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b549a271-6407-4dfc-b232-6a0e7b304edb?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77cad27c-94e5-48fe-bb11-8d00f567a7a4?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1048,7 +1052,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:29:31 GMT", + "Date": "Tue, 25 Oct 2022 13:04:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1056,19 +1060,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52319d97-4038-473b-b3c4-fbcdef03ae8b", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092931Z:52319d97-4038-473b-b3c4-fbcdef03ae8b", + "x-ms-correlation-request-id": "827ca7cb-aee0-4a92-b899-a9ceab232833", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130416Z:827ca7cb-aee0-4a92-b899-a9ceab232833", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3", "name": "sdk-py-tests-acc-1-88d22fd3", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A29%3A00.448126Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A04%3A15.7103796Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:27:05.0419778Z" + "CreatedOnDate": "2022-10-25T13:03:00.9381746Z" }, "properties": { "encryption": { @@ -1079,10 +1083,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:27:07.3441768Z", + "createdAt": "2022-10-25T13:03:02.7804972Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:27:07.3441768Z" + "lastModifiedAt": "2022-10-25T13:03:02.7804972Z" } } }, @@ -1093,27 +1097,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:29:31 GMT", + "Date": "Tue, 25 Oct 2022 13:04:16 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3185c62a-752c-43e5-9e39-e8479783eac3", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T092931Z:3185c62a-752c-43e5-9e39-e8479783eac3" + "x-ms-correlation-request-id": "6377e0fd-8148-4fba-83e1-a34b370f20da", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130416Z:6377e0fd-8148-4fba-83e1-a34b370f20da", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-88d22fd3\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_update_snapshot_policies.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_update_snapshot_policies.json index 000b1cbeeffa..8fccbb3af1be 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_update_snapshot_policies.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot_policies.pyTestNetAppSnapshotPolicytest_update_snapshot_policies.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:31:53 GMT", + "Date": "Tue, 25 Oct 2022 13:05:25 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:31:53 GMT", + "Date": "Tue, 25 Oct 2022 13:05:25 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "d436cff6-a44f-474a-a10c-00a8d05c46b9", + "client-request-id": "6c9ce9d5-8aa3-49e0-a45b-24d65cc83154", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "d436cff6-a44f-474a-a10c-00a8d05c46b9", + "client-request-id": "6c9ce9d5-8aa3-49e0-a45b-24d65cc83154", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:31:53 GMT", + "Date": "Tue, 25 Oct 2022 13:05:25 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -221,37 +221,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c98168d7-f2a1-4942-9a38-64b6edda3c0e?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f44fa1d-1679-422e-90ad-d73e2607b5d9?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "705", + "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:32:04 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A32%3A00.001995Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:05:28 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A28.4906534Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bca2897a-870f-4054-a3e4-73c2691d871c", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093204Z:bca2897a-870f-4054-a3e4-73c2691d871c", + "x-ms-correlation-request-id": "d0da276b-3704-444b-95fd-bbb3a5b6d3bf", + "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130529Z:d0da276b-3704-444b-95fd-bbb3a5b6d3bf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a", "name": "sdk-py-tests-acc-1-e9f2309a", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A32%3A00.001995Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A28.4906534Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:31:56.9934084Z" + "CreatedOnDate": "2022-10-25T13:05:26.9564871Z" }, "properties": { "provisioningState": "Creating" @@ -259,21 +259,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:31:59.0958999Z", + "createdAt": "2022-10-25T13:05:28.2809063Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:31:59.0958999Z" + "lastModifiedAt": "2022-10-25T13:05:28.2809063Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c98168d7-f2a1-4942-9a38-64b6edda3c0e?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f44fa1d-1679-422e-90ad-d73e2607b5d9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -281,7 +281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:32:34 GMT", + "Date": "Tue, 25 Oct 2022 13:05:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -289,17 +289,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6bfb468-cf14-4b1d-8231-3b33b941ee55", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093235Z:a6bfb468-cf14-4b1d-8231-3b33b941ee55", + "x-ms-correlation-request-id": "80f8a5e4-8b50-4a49-839d-8c3a00990630", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130530Z:80f8a5e4-8b50-4a49-839d-8c3a00990630", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c98168d7-f2a1-4942-9a38-64b6edda3c0e", - "name": "c98168d7-f2a1-4942-9a38-64b6edda3c0e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8f44fa1d-1679-422e-90ad-d73e2607b5d9", + "name": "8f44fa1d-1679-422e-90ad-d73e2607b5d9", "status": "Succeeded", - "startTime": "2022-09-19T09:31:59.997501Z", - "endTime": "2022-09-19T09:32:00.0443878Z", + "startTime": "2022-10-25T13:05:28.4990823Z", + "endTime": "2022-10-25T13:05:28.5303174Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a" @@ -313,7 +313,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -321,8 +321,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:32:34 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A32%3A00.0507235Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:05:29 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A28.5329289Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -330,19 +330,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cc51d71-5bb3-49bc-8b13-854da39fcf5f", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093235Z:1cc51d71-5bb3-49bc-8b13-854da39fcf5f", + "x-ms-correlation-request-id": "73429919-d761-45ca-8008-76d6cc985f9e", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130530Z:73429919-d761-45ca-8008-76d6cc985f9e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a", "name": "sdk-py-tests-acc-1-e9f2309a", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A32%3A00.0507235Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A28.5329289Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:31:56.9934084Z" + "CreatedOnDate": "2022-10-25T13:05:26.9564871Z" }, "properties": { "activeDirectories": [ @@ -371,10 +371,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:31:59.0958999Z", + "createdAt": "2022-10-25T13:05:28.2809063Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:31:59.0958999Z" + "lastModifiedAt": "2022-10-25T13:05:28.2809063Z" } } }, @@ -387,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "179", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -404,30 +404,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fdc788ae-a82a-43a1-bce4-d8ceb09b84ac?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a08d38d3-bc73-4bba-b2d6-c74ebf8a26c8?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "929", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:32:45 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A32%3A37.4955997Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:05:33 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A31.9706985Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f54ad555-a6cf-4436-8a05-5fe1500b838a", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093245Z:f54ad555-a6cf-4436-8a05-5fe1500b838a", + "x-ms-correlation-request-id": "ec316ac4-3ff3-41d4-9651-78efd804f939", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130533Z:ec316ac4-3ff3-41d4-9651-78efd804f939", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-e9f2309a/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A32%3A37.4955997Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A31.9706985Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:32:36.1161391Z" + "CreatedOnDate": "2022-10-25T13:05:30.8282820Z" }, "properties": { "enabled": false, @@ -443,10 +443,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:32:37.3032017Z", + "createdAt": "2022-10-25T13:05:31.8303926Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:32:37.3032017Z" + "lastModifiedAt": "2022-10-25T13:05:31.8303926Z" } } }, @@ -459,7 +459,7 @@ "Connection": "keep-alive", "Content-Length": "190", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -477,31 +477,31 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d567f548-218e-48cc-8802-6de9c6314b63?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/285c59f4-8567-46b8-8495-a7099663f3d9?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "929", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:32:45 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A32%3A45.7234289Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 13:05:33 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A33.8239279Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d567f548-218e-48cc-8802-6de9c6314b63?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/285c59f4-8567-46b8-8495-a7099663f3d9?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78515414-d36b-4a1f-b20f-218d25fba106", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093245Z:78515414-d36b-4a1f-b20f-218d25fba106", + "x-ms-correlation-request-id": "a0fdda07-0e84-4d01-b553-65a15602c378", + "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130534Z:a0fdda07-0e84-4d01-b553-65a15602c378", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-e9f2309a/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A32%3A45.7234289Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A33.8239279Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:32:36.1161391Z" + "CreatedOnDate": "2022-10-25T13:05:30.8282820Z" }, "properties": { "provisioningState": "Patching", @@ -517,21 +517,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:32:37.3032017Z", + "createdAt": "2022-10-25T13:05:31.8303926Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:32:37.3032017Z" + "lastModifiedAt": "2022-10-25T13:05:31.8303926Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d567f548-218e-48cc-8802-6de9c6314b63?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/285c59f4-8567-46b8-8495-a7099663f3d9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -539,7 +539,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:33:15 GMT", + "Date": "Tue, 25 Oct 2022 13:05:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -547,17 +547,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edf20e89-03ae-4c08-90be-ec37e7cf4f27", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093316Z:edf20e89-03ae-4c08-90be-ec37e7cf4f27", + "x-ms-correlation-request-id": "a40e8763-ee3d-4748-98da-004b49748e78", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130534Z:a40e8763-ee3d-4748-98da-004b49748e78", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d567f548-218e-48cc-8802-6de9c6314b63", - "name": "d567f548-218e-48cc-8802-6de9c6314b63", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/285c59f4-8567-46b8-8495-a7099663f3d9", + "name": "285c59f4-8567-46b8-8495-a7099663f3d9", "status": "Succeeded", - "startTime": "2022-09-19T09:32:45.7238717Z", - "endTime": "2022-09-19T09:32:45.8487865Z", + "startTime": "2022-10-25T13:05:33.8553284Z", + "endTime": "2022-10-25T13:05:33.9490824Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1" @@ -565,13 +565,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d567f548-218e-48cc-8802-6de9c6314b63?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/285c59f4-8567-46b8-8495-a7099663f3d9?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -579,7 +579,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:33:16 GMT", + "Date": "Tue, 25 Oct 2022 13:05:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -587,19 +587,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d49a7b06-cad7-4600-81b7-edbeecda1dc9", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093316Z:d49a7b06-cad7-4600-81b7-edbeecda1dc9", + "x-ms-correlation-request-id": "0ac55be2-e180-4ba4-a6a5-b28953ec920d", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130534Z:0ac55be2-e180-4ba4-a6a5-b28953ec920d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-e9f2309a/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A32%3A45.8483542Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A33.9438588Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:32:45.4344070Z" + "CreatedOnDate": "2022-10-25T13:05:33.4280330Z" }, "properties": { "enabled": false, @@ -619,10 +619,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:32:37.3032017Z", + "createdAt": "2022-10-25T13:05:31.8303926Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:32:45.5984236Z" + "lastModifiedAt": "2022-10-25T13:05:33.5978556Z" } } }, @@ -634,36 +634,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1b3c2b0-ad35-4f20-8b30-aac3926a1996?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a2ba90b-651c-4dd6-8793-69a9ffaa7629?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:33:16 GMT", + "Date": "Tue, 25 Oct 2022 13:05:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1b3c2b0-ad35-4f20-8b30-aac3926a1996?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a2ba90b-651c-4dd6-8793-69a9ffaa7629?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b40d00d-9471-41b0-a47d-6f7c692cf893", + "x-ms-correlation-request-id": "7ebfe847-8db0-455e-b6f7-6d386e84c89f", "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093317Z:0b40d00d-9471-41b0-a47d-6f7c692cf893", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130535Z:7ebfe847-8db0-455e-b6f7-6d386e84c89f", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1b3c2b0-ad35-4f20-8b30-aac3926a1996?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a2ba90b-651c-4dd6-8793-69a9ffaa7629?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -671,7 +671,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:33:46 GMT", + "Date": "Tue, 25 Oct 2022 13:05:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -679,17 +679,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ba49fa3-a86a-4f41-b999-d462ee25a45a", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093347Z:2ba49fa3-a86a-4f41-b999-d462ee25a45a", + "x-ms-correlation-request-id": "4baf7304-0d17-4918-962c-6ebe0108b1a0", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130535Z:4baf7304-0d17-4918-962c-6ebe0108b1a0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1b3c2b0-ad35-4f20-8b30-aac3926a1996", - "name": "e1b3c2b0-ad35-4f20-8b30-aac3926a1996", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a2ba90b-651c-4dd6-8793-69a9ffaa7629", + "name": "3a2ba90b-651c-4dd6-8793-69a9ffaa7629", "status": "Succeeded", - "startTime": "2022-09-19T09:33:16.9860734Z", - "endTime": "2022-09-19T09:33:17.0330096Z", + "startTime": "2022-10-25T13:05:35.1054954Z", + "endTime": "2022-10-25T13:05:35.4962544Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1" @@ -697,13 +697,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1b3c2b0-ad35-4f20-8b30-aac3926a1996?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a2ba90b-651c-4dd6-8793-69a9ffaa7629?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -711,7 +711,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:33:47 GMT", + "Date": "Tue, 25 Oct 2022 13:05:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -719,19 +719,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c66d22b-3a3e-4ce0-bac2-1474160145e0", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093347Z:6c66d22b-3a3e-4ce0-bac2-1474160145e0", + "x-ms-correlation-request-id": "8ef261ef-83f0-4da8-8cde-493c4f2140c9", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130536Z:8ef261ef-83f0-4da8-8cde-493c4f2140c9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1", "name": "sdk-py-tests-acc-1-e9f2309a/sdk-py-tests-snapshot-policy-1", "type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A33%3A16.9877578Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A05%3A35.0432362Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:32:45.4344070Z" + "CreatedOnDate": "2022-10-25T13:05:33.4280330Z" }, "properties": { "enabled": false, @@ -751,10 +751,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:32:37.3032017Z", + "createdAt": "2022-10-25T13:05:31.8303926Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:32:45.5984236Z" + "lastModifiedAt": "2022-10-25T13:05:33.5978556Z" } } }, @@ -765,27 +765,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "302", + "Content-Length": "303", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:33:52 GMT", + "Date": "Tue, 25 Oct 2022 13:05:41 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dceb53db-4f89-4229-b178-fa28439e9294", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093352Z:dceb53db-4f89-4229-b178-fa28439e9294" + "x-ms-correlation-request-id": "b16eadc7-c5c8-4902-8cf5-fa095ca42cee", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130541Z:b16eadc7-c5c8-4902-8cf5-fa095ca42cee", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a/snapshotPolicies/sdk-py-tests-snapshot-policy-1\u0027 is not found." } } }, @@ -797,36 +799,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07c8f6da-7544-41a1-bf44-8f0c8525beb9?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a471f44-4531-4644-9517-f78b2d10a7fe?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:33:53 GMT", + "Date": "Tue, 25 Oct 2022 13:06:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07c8f6da-7544-41a1-bf44-8f0c8525beb9?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a471f44-4531-4644-9517-f78b2d10a7fe?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "463ed484-8f16-45a6-9d4f-9c90a6dfa731", + "x-ms-correlation-request-id": "be24bd5b-df7e-4982-aa3c-a1d3b44f5ba3", "x-ms-ratelimit-remaining-subscription-deletes": "14991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093353Z:463ed484-8f16-45a6-9d4f-9c90a6dfa731", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130632Z:be24bd5b-df7e-4982-aa3c-a1d3b44f5ba3", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07c8f6da-7544-41a1-bf44-8f0c8525beb9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a471f44-4531-4644-9517-f78b2d10a7fe?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -834,7 +836,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:23 GMT", + "Date": "Tue, 25 Oct 2022 13:06:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -842,17 +844,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca1f9acb-1e70-4247-9268-0d0d5a886140", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093424Z:ca1f9acb-1e70-4247-9268-0d0d5a886140", + "x-ms-correlation-request-id": "bd589a8b-2e92-4438-a8c1-308a41276637", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130633Z:bd589a8b-2e92-4438-a8c1-308a41276637", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07c8f6da-7544-41a1-bf44-8f0c8525beb9", - "name": "07c8f6da-7544-41a1-bf44-8f0c8525beb9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a471f44-4531-4644-9517-f78b2d10a7fe", + "name": "4a471f44-4531-4644-9517-f78b2d10a7fe", "status": "Succeeded", - "startTime": "2022-09-19T09:33:53.6237741Z", - "endTime": "2022-09-19T09:33:53.6705507Z", + "startTime": "2022-10-25T13:06:32.8497805Z", + "endTime": "2022-10-25T13:06:32.8966602Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a" @@ -860,13 +862,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07c8f6da-7544-41a1-bf44-8f0c8525beb9?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4a471f44-4531-4644-9517-f78b2d10a7fe?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -874,7 +876,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:23 GMT", + "Date": "Tue, 25 Oct 2022 13:06:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -882,19 +884,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7fbc089a-907d-4f09-a48d-b58825a64be4", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093424Z:7fbc089a-907d-4f09-a48d-b58825a64be4", + "x-ms-correlation-request-id": "3ebd3e51-b392-4a68-bc2c-5f64aeea8541", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130633Z:3ebd3e51-b392-4a68-bc2c-5f64aeea8541", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a", "name": "sdk-py-tests-acc-1-e9f2309a", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A33%3A53.6298865Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T13%3A06%3A32.8464271Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:31:56.9934084Z" + "CreatedOnDate": "2022-10-25T13:05:26.9564871Z" }, "properties": { "encryption": { @@ -905,10 +907,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:31:59.0958999Z", + "createdAt": "2022-10-25T13:05:28.2809063Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:31:59.0958999Z" + "lastModifiedAt": "2022-10-25T13:05:28.2809063Z" } } }, @@ -919,27 +921,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:34:23 GMT", + "Date": "Tue, 25 Oct 2022 13:06:33 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6bfe7c7-963f-4d58-b9d2-3b8d91453238", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T093424Z:d6bfe7c7-963f-4d58-b9d2-3b8d91453238" + "x-ms-correlation-request-id": "e0cc9db7-0a92-4d14-bcb7-97377bcf3bee", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T130633Z:e0cc9db7-0a92-4d14-bcb7-97377bcf3bee", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-e9f2309a\u0027 is not found." } } } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_crud_subvolumes.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_crud_subvolumes.json index a09c35288982..da38862eee11 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_crud_subvolumes.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_crud_subvolumes.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:06 GMT", + "Date": "Tue, 25 Oct 2022 14:41:08 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:06 GMT", + "Date": "Tue, 25 Oct 2022 14:41:08 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "3aa503c0-494c-47d8-8fc7-1f889299b17d", + "client-request-id": "7d0aec8f-3d8b-425f-b277-e1acbeca0521", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "3aa503c0-494c-47d8-8fc7-1f889299b17d", + "client-request-id": "7d0aec8f-3d8b-425f-b277-e1acbeca0521", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:06 GMT", + "Date": "Tue, 25 Oct 2022 14:41:08 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/acda390c-1904-45f9-8d3b-d54c8ed8ba2f?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bb78f39a-6026-4968-b5f8-84fd5fb969d1?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "748", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:12 GMT", + "Date": "Tue, 25 Oct 2022 14:41:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b7ddc378-edc5-4102-9ab5-94c01edffbb5", - "x-ms-correlation-request-id": "8f920000-c0ce-4a99-a80c-5e7e51ad857d", + "x-ms-arm-service-request-id": "7105116d-84e4-4643-9a7d-65790ece590a", + "x-ms-correlation-request-id": "9d8184cf-56de-4da9-b5fc-c869a29e5d67", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094912Z:8f920000-c0ce-4a99-a80c-5e7e51ad857d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144118Z:9d8184cf-56de-4da9-b5fc-c869a29e5d67" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-6b727b0", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0", - "etag": "W/\u0022d29a34fd-5789-4599-9969-80bf6fc9ad67\u0022", + "etag": "W/\u0022e01327d6-9502-4246-b519-572ff2a09fa2\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:49:08.3152829Z" + "CreatedOnDate": "2022-10-25T14:41:12.1641729Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "a0081959-99e8-4c32-82ba-f86364b97bb6", + "resourceGuid": "dfa08794-bb95-43eb-8b60-4f1f7db51bbd", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/acda390c-1904-45f9-8d3b-d54c8ed8ba2f?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/bb78f39a-6026-4968-b5f8-84fd5fb969d1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:15 GMT", + "Date": "Tue, 25 Oct 2022 14:41:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "dafa85e1-3cae-47a5-82ac-493086a9c6cf", - "x-ms-correlation-request-id": "70caefdc-00e5-44ec-9f93-7e470ca8ae06", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094916Z:70caefdc-00e5-44ec-9f93-7e470ca8ae06" + "x-ms-arm-service-request-id": "7a52720c-39e5-4e90-81b0-88f4d2dfe548", + "x-ms-correlation-request-id": "75cce6d4-2d41-400d-9bcd-ac2f43121dee", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144118Z:75cce6d4-2d41-400d-9bcd-ac2f43121dee" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:16 GMT", - "ETag": "W/\u00226bf9ab52-1804-4023-98ab-1cd87a8c3999\u0022", + "Date": "Tue, 25 Oct 2022 14:41:18 GMT", + "ETag": "W/\u002243e19a42-0eb8-4e59-a094-0e01bafbf95b\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "cfacf7e6-8392-4b7d-accd-5c3b74efbd9f", - "x-ms-correlation-request-id": "e816c7bb-6b59-4c9f-b601-b97c22374758", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094916Z:e816c7bb-6b59-4c9f-b601-b97c22374758" + "x-ms-arm-service-request-id": "bc22f346-cdaa-4c14-9949-16eb2a847007", + "x-ms-correlation-request-id": "76d36e51-ac1b-4d33-87c5-f13ceac8af78", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144119Z:76d36e51-ac1b-4d33-87c5-f13ceac8af78" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-6b727b0", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0", - "etag": "W/\u00226bf9ab52-1804-4023-98ab-1cd87a8c3999\u0022", + "etag": "W/\u002243e19a42-0eb8-4e59-a094-0e01bafbf95b\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:49:08.3152829Z" + "CreatedOnDate": "2022-10-25T14:41:12.1641729Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "a0081959-99e8-4c32-82ba-f86364b97bb6", + "resourceGuid": "dfa08794-bb95-43eb-8b60-4f1f7db51bbd", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/66acdac4-1d37-404c-b9c1-5e3ce0566f31?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/25c538e6-28f0-4352-943f-64cd653ee24a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:16 GMT", + "Date": "Tue, 25 Oct 2022 14:41:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "113e7f36-24ef-4fbf-83cd-f75c4b5fabd2", - "x-ms-correlation-request-id": "5d80ae2e-eb6f-453b-8b70-cfc1a31cdbb7", + "x-ms-arm-service-request-id": "ce8c9e79-0d55-43e8-b7b1-4a7bee36dc02", + "x-ms-correlation-request-id": "44077a5c-5e23-4c3c-8884-bb388e5ec9b2", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094917Z:5d80ae2e-eb6f-453b-8b70-cfc1a31cdbb7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144120Z:44077a5c-5e23-4c3c-8884-bb388e5ec9b2" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default", - "etag": "W/\u0022ca0edda3-6c4f-4e04-bbd7-e48e81412c30\u0022", + "etag": "W/\u0022c0be8142-c90b-4077-a4c1-e663bd752c43\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022ca0edda3-6c4f-4e04-bbd7-e48e81412c30\u0022", + "etag": "W/\u0022c0be8142-c90b-4077-a4c1-e663bd752c43\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/66acdac4-1d37-404c-b9c1-5e3ce0566f31?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/25c538e6-28f0-4352-943f-64cd653ee24a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:20 GMT", + "Date": "Tue, 25 Oct 2022 14:41:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "3bd03b86-e100-4bb7-80ce-c886c6286a0f", - "x-ms-correlation-request-id": "744d061b-8732-4b48-9e8b-4586c6c2dc96", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094920Z:744d061b-8732-4b48-9e8b-4586c6c2dc96" + "x-ms-arm-service-request-id": "252486f1-5667-4a0d-a10b-6e5c62ce1e3f", + "x-ms-correlation-request-id": "45e9e19a-a9d6-4a41-a3a2-7364472c1ab9", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144120Z:45e9e19a-a9d6-4a41-a3a2-7364472c1ab9" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:20 GMT", - "ETag": "W/\u002226cf3a42-fe04-49a5-bf27-3bdf80724f2b\u0022", + "Date": "Tue, 25 Oct 2022 14:41:19 GMT", + "ETag": "W/\u00220a262480-27e0-4d79-a3a9-2a88b2599fb1\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2112a8cb-e7a8-47ee-a5c2-09b719fe78dd", - "x-ms-correlation-request-id": "241f7bbe-f537-49e5-9ced-93275f1d1989", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094920Z:241f7bbe-f537-49e5-9ced-93275f1d1989" + "x-ms-arm-service-request-id": "0fa2928c-00c6-4800-83a9-067e31e4e997", + "x-ms-correlation-request-id": "cb957cb0-f074-450d-ace6-4b225a56d169", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144120Z:cb957cb0-f074-450d-ace6-4b225a56d169" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default", - "etag": "W/\u002226cf3a42-fe04-49a5-bf27-3bdf80724f2b\u0022", + "etag": "W/\u00220a262480-27e0-4d79-a3a9-2a88b2599fb1\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default/delegations/netAppVolumes", - "etag": "W/\u002226cf3a42-fe04-49a5-bf27-3bdf80724f2b\u0022", + "etag": "W/\u00220a262480-27e0-4d79-a3a9-2a88b2599fb1\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:20 GMT", + "Date": "Tue, 25 Oct 2022 14:41:19 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:20 GMT", + "Date": "Tue, 25 Oct 2022 14:41:20 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "2aa6a8d9-b10f-42a1-9338-62b34bd245fd", + "client-request-id": "45bc0e2e-5208-4216-933f-f9213a7b7f30", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "2aa6a8d9-b10f-42a1-9338-62b34bd245fd", + "client-request-id": "45bc0e2e-5208-4216-933f-f9213a7b7f30", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:20 GMT", + "Date": "Tue, 25 Oct 2022 14:41:20 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4159cf13-e28f-4280-9d90-5a5c5999b80a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/608975eb-95d1-4368-9b5c-8850f081e099?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "702", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:24 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A49%3A24.2956375Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:41:24 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A41%3A24.19381Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0201f599-376c-4cb8-8a6b-21d0bbec3bb3", + "x-ms-correlation-request-id": "66cd4e70-bb0b-46ef-ad2d-f9b570b68af5", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094925Z:0201f599-376c-4cb8-8a6b-21d0bbec3bb3", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144125Z:66cd4e70-bb0b-46ef-ad2d-f9b570b68af5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0", "name": "sdk-py-tests-acc-1-6b727b0", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A49%3A24.2956375Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A41%3A24.19381Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:49:21.9801031Z" + "CreatedOnDate": "2022-10-25T14:41:22.0868994Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:49:23.331113Z", + "createdAt": "2022-10-25T14:41:23.2243982Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:49:23.331113Z" + "lastModifiedAt": "2022-10-25T14:41:23.2243982Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4159cf13-e28f-4280-9d90-5a5c5999b80a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/608975eb-95d1-4368-9b5c-8850f081e099?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:54 GMT", + "Date": "Tue, 25 Oct 2022 14:41:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b75b384-4856-4464-8a94-fe9c840aba39", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094955Z:9b75b384-4856-4464-8a94-fe9c840aba39", + "x-ms-correlation-request-id": "aad0a8cd-67e9-4061-92cf-8a935e7da22d", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144125Z:aad0a8cd-67e9-4061-92cf-8a935e7da22d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4159cf13-e28f-4280-9d90-5a5c5999b80a", - "name": "4159cf13-e28f-4280-9d90-5a5c5999b80a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/608975eb-95d1-4368-9b5c-8850f081e099", + "name": "608975eb-95d1-4368-9b5c-8850f081e099", "status": "Succeeded", - "startTime": "2022-09-19T09:49:24.2913586Z", - "endTime": "2022-09-19T09:49:24.3694916Z", + "startTime": "2022-10-25T14:41:24.1952054Z", + "endTime": "2022-10-25T14:41:24.2577128Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:55 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A49%3A24.3759667Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:41:25 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A41%3A24.2582284Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38f800c5-28ec-468e-a57d-7505a3eec003", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094956Z:38f800c5-28ec-468e-a57d-7505a3eec003", + "x-ms-correlation-request-id": "0b5bdf34-36f8-4222-88af-3d81e395a61f", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144125Z:0b5bdf34-36f8-4222-88af-3d81e395a61f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0", "name": "sdk-py-tests-acc-1-6b727b0", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A49%3A24.3759667Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A41%3A24.2582284Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:49:21.9801031Z" + "CreatedOnDate": "2022-10-25T14:41:22.0868994Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:49:23.331113Z", + "createdAt": "2022-10-25T14:41:23.2243982Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:49:23.331113Z" + "lastModifiedAt": "2022-10-25T14:41:23.2243982Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/955240e0-0763-4322-9959-48685266c29c?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67571136-0628-45e1-bd03-8a5b6c6552ef?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "920", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:49:57 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A49%3A57.4625925Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:41:28 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A41%3A27.8417072Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d71c1a4-0faa-4b94-a500-f8a62784f0e2", + "x-ms-correlation-request-id": "283d978f-8613-43c5-b00c-1159ad28526d", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T094958Z:6d71c1a4-0faa-4b94-a500-f8a62784f0e2", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144129Z:283d978f-8613-43c5-b00c-1159ad28526d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A49%3A57.4625925Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A41%3A27.8417072Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:49:56.3182898Z" + "CreatedOnDate": "2022-10-25T14:41:26.2357170Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:49:57.2644751Z", + "createdAt": "2022-10-25T14:41:27.5863451Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:49:57.2644751Z" + "lastModifiedAt": "2022-10-25T14:41:27.5863451Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/955240e0-0763-4322-9959-48685266c29c?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67571136-0628-45e1-bd03-8a5b6c6552ef?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:50:28 GMT", + "Date": "Tue, 25 Oct 2022 14:41:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee5b24e0-2878-443d-9fab-07612b951547", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095028Z:ee5b24e0-2878-443d-9fab-07612b951547", + "x-ms-correlation-request-id": "46af9e87-218f-4005-a6c0-cba8014e734b", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144129Z:46af9e87-218f-4005-a6c0-cba8014e734b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/955240e0-0763-4322-9959-48685266c29c", - "name": "955240e0-0763-4322-9959-48685266c29c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67571136-0628-45e1-bd03-8a5b6c6552ef", + "name": "67571136-0628-45e1-bd03-8a5b6c6552ef", "status": "Succeeded", - "startTime": "2022-09-19T09:49:57.4652523Z", - "endTime": "2022-09-19T09:49:58.5277936Z", + "startTime": "2022-10-25T14:41:27.8372768Z", + "endTime": "2022-10-25T14:41:28.6185249Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:50:29 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A49%3A58.535547Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:41:28 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A41%3A28.6127421Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bb124ac-6683-46f1-9a87-b3eaf8af6228", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095029Z:1bb124ac-6683-46f1-9a87-b3eaf8af6228", + "x-ms-correlation-request-id": "30d484ac-3d14-4488-810f-7840ea98c560", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144129Z:30d484ac-3d14-4488-810f-7840ea98c560", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A49%3A58.535547Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A41%3A28.6127421Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:49:56.3182898Z" + "CreatedOnDate": "2022-10-25T14:41:26.2357170Z" }, "properties": { - "poolId": "ef1eb95b-a79c-fe06-b361-6a87ff8f2932", + "poolId": "c92ee5a4-dcb6-f88e-8ffa-a0dbf60d7354", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:49:57.2644751Z", + "createdAt": "2022-10-25T14:41:27.5863451Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:49:57.2644751Z" + "lastModifiedAt": "2022-10-25T14:41:27.5863451Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "812", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1123,30 +1124,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1608", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:50:34 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A50%3A30.7574756Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:41:31 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A41%3A31.5805526Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96ca2d16-064b-4b45-b619-921f28aa8673", + "x-ms-correlation-request-id": "e708b74d-6563-4144-9369-3119da088379", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095034Z:96ca2d16-064b-4b45-b619-921f28aa8673", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144132Z:e708b74d-6563-4144-9369-3119da088379", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0", "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-6b727b0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A50%3A30.7574756Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A41%3A31.5805526Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:50:29.5191626Z" + "CreatedOnDate": "2022-10-25T14:41:30.0240301Z" }, "properties": { "serviceLevel": "Premium", @@ -1177,21 +1178,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:50:30.4889325Z", + "createdAt": "2022-10-25T14:41:31.3076011Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:50:30.4889325Z" + "lastModifiedAt": "2022-10-25T14:41:31.3076011Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1199,7 +1200,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:51:04 GMT", + "Date": "Tue, 25 Oct 2022 14:41:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1207,16 +1208,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2c47a21-1c28-46ca-a720-ada193033c42", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095104Z:b2c47a21-1c28-46ca-a720-ada193033c42", + "x-ms-correlation-request-id": "5de10d72-706a-4aa5-92f5-7009dc5a4fd9", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144132Z:5de10d72-706a-4aa5-92f5-7009dc5a4fd9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b", - "name": "d5fa5956-c5bb-49fb-9410-c686faf40c4b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", "status": "Creating", - "startTime": "2022-09-19T09:50:30.7618617Z", + "startTime": "2022-10-25T14:41:31.5872887Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1225,13 +1226,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1239,7 +1240,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:51:34 GMT", + "Date": "Tue, 25 Oct 2022 14:42:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1247,16 +1248,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f08acec-8d75-4125-ba57-6fc72d93fe5c", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095134Z:4f08acec-8d75-4125-ba57-6fc72d93fe5c", + "x-ms-correlation-request-id": "1491e985-60d2-4780-8951-c28fa1d0b92c", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144203Z:1491e985-60d2-4780-8951-c28fa1d0b92c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b", - "name": "d5fa5956-c5bb-49fb-9410-c686faf40c4b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", "status": "Creating", - "startTime": "2022-09-19T09:50:30.7618617Z", + "startTime": "2022-10-25T14:41:31.5872887Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1265,13 +1266,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1279,7 +1280,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:52:05 GMT", + "Date": "Tue, 25 Oct 2022 14:42:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1287,16 +1288,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb61cb2e-fda9-4733-ae0f-8eaacac1981c", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095205Z:fb61cb2e-fda9-4733-ae0f-8eaacac1981c", + "x-ms-correlation-request-id": "7d381f74-7a07-406f-bff2-9963da5c2be9", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144233Z:7d381f74-7a07-406f-bff2-9963da5c2be9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b", - "name": "d5fa5956-c5bb-49fb-9410-c686faf40c4b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", "status": "Creating", - "startTime": "2022-09-19T09:50:30.7618617Z", + "startTime": "2022-10-25T14:41:31.5872887Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1305,13 +1306,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1319,7 +1320,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:52:34 GMT", + "Date": "Tue, 25 Oct 2022 14:43:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1327,16 +1328,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "874f4ba2-3dbd-4225-908c-6589160801f7", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095235Z:874f4ba2-3dbd-4225-908c-6589160801f7", + "x-ms-correlation-request-id": "927b0f57-82b8-4cc7-acbf-15d5d07ebd92", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144303Z:927b0f57-82b8-4cc7-acbf-15d5d07ebd92", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b", - "name": "d5fa5956-c5bb-49fb-9410-c686faf40c4b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", "status": "Creating", - "startTime": "2022-09-19T09:50:30.7618617Z", + "startTime": "2022-10-25T14:41:31.5872887Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1345,13 +1346,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1359,7 +1360,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:53:04 GMT", + "Date": "Tue, 25 Oct 2022 14:43:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1367,16 +1368,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a494131-ef17-4095-959f-f7768d2ee2f8", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095305Z:4a494131-ef17-4095-959f-f7768d2ee2f8", + "x-ms-correlation-request-id": "387ef0ac-e221-49e3-9b06-117130da7fc7", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144333Z:387ef0ac-e221-49e3-9b06-117130da7fc7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b", - "name": "d5fa5956-c5bb-49fb-9410-c686faf40c4b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", "status": "Creating", - "startTime": "2022-09-19T09:50:30.7618617Z", + "startTime": "2022-10-25T14:41:31.5872887Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1385,13 +1386,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1399,7 +1400,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:53:35 GMT", + "Date": "Tue, 25 Oct 2022 14:44:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1407,16 +1408,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc9c1aa6-d82e-445d-9df5-1ee6946f26e9", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095335Z:bc9c1aa6-d82e-445d-9df5-1ee6946f26e9", + "x-ms-correlation-request-id": "0f67b276-1982-42ef-8340-f8e2c7cf86ae", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144404Z:0f67b276-1982-42ef-8340-f8e2c7cf86ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b", - "name": "d5fa5956-c5bb-49fb-9410-c686faf40c4b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", "status": "Creating", - "startTime": "2022-09-19T09:50:30.7618617Z", + "startTime": "2022-10-25T14:41:31.5872887Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1425,13 +1426,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1439,7 +1440,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:54:06 GMT", + "Date": "Tue, 25 Oct 2022 14:44:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1447,16 +1448,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55f6690a-9550-40c8-a3d3-771659584dec", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095406Z:55f6690a-9550-40c8-a3d3-771659584dec", + "x-ms-correlation-request-id": "b01c8a55-5791-4230-8ffe-ccad493cc5c3", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144434Z:b01c8a55-5791-4230-8ffe-ccad493cc5c3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b", - "name": "d5fa5956-c5bb-49fb-9410-c686faf40c4b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", "status": "Creating", - "startTime": "2022-09-19T09:50:30.7618617Z", + "startTime": "2022-10-25T14:41:31.5872887Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1465,13 +1466,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1479,7 +1480,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:54:36 GMT", + "Date": "Tue, 25 Oct 2022 14:45:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1487,17 +1488,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e0e4a5b-b073-4d33-9e60-853af052795b", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095437Z:9e0e4a5b-b073-4d33-9e60-853af052795b", + "x-ms-correlation-request-id": "2c367273-c2a6-47ec-9dd8-266778cef74e", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144504Z:2c367273-c2a6-47ec-9dd8-266778cef74e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5fa5956-c5bb-49fb-9410-c686faf40c4b", - "name": "d5fa5956-c5bb-49fb-9410-c686faf40c4b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "status": "Creating", + "startTime": "2022-10-25T14:41:31.5872887Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:45:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cc9425df-b90f-4776-bd6f-2c2224dd050a", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144534Z:cc9425df-b90f-4776-bd6f-2c2224dd050a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "status": "Creating", + "startTime": "2022-10-25T14:41:31.5872887Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:46:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a96c0aad-c2d4-4cf6-b9e4-59da60dfcbc7", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144605Z:a96c0aad-c2d4-4cf6-b9e4-59da60dfcbc7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "status": "Creating", + "startTime": "2022-10-25T14:41:31.5872887Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:46:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fa27073d-e19e-4ed8-aec2-971c559b0d42", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144635Z:fa27073d-e19e-4ed8-aec2-971c559b0d42", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", + "name": "d0d8b75e-c7d4-4b56-bb54-9320a0b5cbc1", "status": "Succeeded", - "startTime": "2022-09-19T09:50:30.7618617Z", - "endTime": "2022-09-19T09:54:36.0539775Z", + "startTime": "2022-10-25T14:41:31.5872887Z", + "endTime": "2022-10-25T14:46:17.940949Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0" @@ -1511,7 +1632,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1519,8 +1640,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:54:36 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T09%3A54%3A36.0469233Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:46:35 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A46%3A17.9261838Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1528,22 +1649,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9e70ebf-fb16-4ccf-a2a0-4a48c37a7bea", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095437Z:b9e70ebf-fb16-4ccf-a2a0-4a48c37a7bea", + "x-ms-correlation-request-id": "93bb088a-6d6c-492b-992d-83189008f18a", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144635Z:93bb088a-6d6c-492b-992d-83189008f18a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0", "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-6b727b0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A54%3A36.0469233Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A46%3A17.9261838Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:50:29.5191626Z" + "CreatedOnDate": "2022-10-25T14:41:30.0240301Z" }, "properties": { - "fileSystemId": "5a27560d-802e-53da-d17b-f9c0bc648eca", + "fileSystemId": "b542e595-388f-fed9-0e9e-1fa99eb9ded6", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-6b727b0", "usageThreshold": 107374182400, @@ -1571,7 +1692,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d60b9c33", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_e19c96de", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1586,8 +1707,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "5a27560d-802e-53da-d17b-f9c0bc648eca", - "fileSystemId": "5a27560d-802e-53da-d17b-f9c0bc648eca", + "mountTargetId": "b542e595-388f-fed9-0e9e-1fa99eb9ded6", + "fileSystemId": "b542e595-388f-fed9-0e9e-1fa99eb9ded6", "ipAddress": "10.0.0.4" } ], @@ -1607,10 +1728,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:50:30.4889325Z", + "createdAt": "2022-10-25T14:41:31.3076011Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:50:30.4889325Z" + "lastModifiedAt": "2022-10-25T14:41:31.3076011Z" } } }, @@ -1623,7 +1744,7 @@ "Connection": "keep-alive", "Content-Length": "59", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1633,20 +1754,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b48333ad-b049-4a91-80aa-e211b072aba5?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/609663b5-c251-48e2-bdc8-14cdfe6515e4?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "540", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:54:37 GMT", + "Date": "Tue, 25 Oct 2022 14:46:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b48333ad-b049-4a91-80aa-e211b072aba5?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/609663b5-c251-48e2-bdc8-14cdfe6515e4?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18710465-6146-4718-b85f-b33cb0c010c5", + "x-ms-correlation-request-id": "e2682436-5900-4fa1-a6fa-783e86e7a19d", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095438Z:18710465-6146-4718-b85f-b33cb0c010c5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144636Z:e2682436-5900-4fa1-a6fa-783e86e7a19d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1661,13 +1782,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b48333ad-b049-4a91-80aa-e211b072aba5?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/609663b5-c251-48e2-bdc8-14cdfe6515e4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1675,7 +1796,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:55:08 GMT", + "Date": "Tue, 25 Oct 2022 14:46:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1683,17 +1804,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7518a846-189b-48c8-8746-5cc28d267301", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095508Z:7518a846-189b-48c8-8746-5cc28d267301", + "x-ms-correlation-request-id": "744eb931-dc30-4248-8b1d-5f5cb608adcc", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144636Z:744eb931-dc30-4248-8b1d-5f5cb608adcc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/609663b5-c251-48e2-bdc8-14cdfe6515e4", + "name": "609663b5-c251-48e2-bdc8-14cdfe6515e4", + "status": "Creating", + "startTime": "2022-10-25T14:46:36.2510346Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0/subvolumes/sdk-py-tests-subvolume-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/609663b5-c251-48e2-bdc8-14cdfe6515e4?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:47:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b2ea367c-200d-499c-876e-56de23124b68", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144706Z:b2ea367c-200d-499c-876e-56de23124b68", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b48333ad-b049-4a91-80aa-e211b072aba5", - "name": "b48333ad-b049-4a91-80aa-e211b072aba5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/609663b5-c251-48e2-bdc8-14cdfe6515e4", + "name": "609663b5-c251-48e2-bdc8-14cdfe6515e4", "status": "Succeeded", - "startTime": "2022-09-19T09:54:38.0110814Z", - "endTime": "2022-09-19T09:54:38.714257Z", + "startTime": "2022-10-25T14:46:36.2510346Z", + "endTime": "2022-10-25T14:46:37.5678077Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0/subvolumes/sdk-py-tests-subvolume-1" @@ -1707,7 +1868,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1715,7 +1876,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:55:09 GMT", + "Date": "Tue, 25 Oct 2022 14:47:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1723,9 +1884,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd0eff8e-8aa0-4efe-bef4-d924558f7183", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095509Z:bd0eff8e-8aa0-4efe-bef4-d924558f7183", + "x-ms-correlation-request-id": "d7bf06a7-2b8d-47bf-b1e9-f1e81e75ac65", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144707Z:d7bf06a7-2b8d-47bf-b1e9-f1e81e75ac65", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1747,7 +1908,7 @@ "Connection": "keep-alive", "Content-Length": "64", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1757,20 +1918,20 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/403dd64b-833a-493f-afab-1468ea62dc0d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78e0a4ee-db8f-4fee-b830-804d80874f64?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "545", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:55:10 GMT", + "Date": "Tue, 25 Oct 2022 14:47:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/403dd64b-833a-493f-afab-1468ea62dc0d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78e0a4ee-db8f-4fee-b830-804d80874f64?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ed10732-ed0e-4e97-b954-614e37b1cc9f", + "x-ms-correlation-request-id": "95f928b4-26fc-4e22-b113-d33d5009a498", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095510Z:8ed10732-ed0e-4e97-b954-614e37b1cc9f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144707Z:95f928b4-26fc-4e22-b113-d33d5009a498", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1785,13 +1946,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/403dd64b-833a-493f-afab-1468ea62dc0d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78e0a4ee-db8f-4fee-b830-804d80874f64?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1799,7 +1960,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:55:40 GMT", + "Date": "Tue, 25 Oct 2022 14:47:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1807,17 +1968,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1c76ff2-eaa1-491e-83e6-180dd3d661db", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095540Z:e1c76ff2-eaa1-491e-83e6-180dd3d661db", + "x-ms-correlation-request-id": "fff9e540-7bae-4865-9ca0-3bd1aa1d40dd", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144708Z:fff9e540-7bae-4865-9ca0-3bd1aa1d40dd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/403dd64b-833a-493f-afab-1468ea62dc0d", - "name": "403dd64b-833a-493f-afab-1468ea62dc0d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78e0a4ee-db8f-4fee-b830-804d80874f64", + "name": "78e0a4ee-db8f-4fee-b830-804d80874f64", + "status": "Patching", + "startTime": "2022-10-25T14:47:07.8609751Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0/subvolumes/sdk-py-tests-subvolume-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78e0a4ee-db8f-4fee-b830-804d80874f64?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:47:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "08397a42-0199-498f-b0b5-10fcd14f874e", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144738Z:08397a42-0199-498f-b0b5-10fcd14f874e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/78e0a4ee-db8f-4fee-b830-804d80874f64", + "name": "78e0a4ee-db8f-4fee-b830-804d80874f64", "status": "Succeeded", - "startTime": "2022-09-19T09:55:10.1492206Z", - "endTime": "2022-09-19T09:55:10.6873209Z", + "startTime": "2022-10-25T14:47:07.8609751Z", + "endTime": "2022-10-25T14:47:08.56405Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0/subvolumes/sdk-py-tests-subvolume-1" @@ -1831,7 +2032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1839,7 +2040,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:55:41 GMT", + "Date": "Tue, 25 Oct 2022 14:47:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1847,9 +2048,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b3ca8e9-a712-437d-bad7-960d79aedfd0", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095541Z:7b3ca8e9-a712-437d-bad7-960d79aedfd0", + "x-ms-correlation-request-id": "b7f65589-25ac-4158-80b7-136b07b15a84", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144740Z:b7f65589-25ac-4158-80b7-136b07b15a84", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1869,7 +2070,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1877,7 +2078,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:55:41 GMT", + "Date": "Tue, 25 Oct 2022 14:47:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1885,9 +2086,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b88315b6-c890-49cc-8d2f-651babd8841f", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095542Z:b88315b6-c890-49cc-8d2f-651babd8841f", + "x-ms-correlation-request-id": "0269a930-2a10-49a7-825d-b0457e9ce2ee", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144741Z:0269a930-2a10-49a7-825d-b0457e9ce2ee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1908,36 +2109,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1d682b32-6628-432c-bbd6-6b6ee297d865?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54b06e44-c4d6-417a-a053-dec15826c5c0?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:55:42 GMT", + "Date": "Tue, 25 Oct 2022 14:47:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1d682b32-6628-432c-bbd6-6b6ee297d865?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54b06e44-c4d6-417a-a053-dec15826c5c0?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d77fc3c-a26f-41ce-abe5-9afca20bc49c", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095542Z:8d77fc3c-a26f-41ce-abe5-9afca20bc49c", + "x-ms-correlation-request-id": "aade2ac8-d3b2-4386-8f4e-d6c8ec1c1f19", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144741Z:aade2ac8-d3b2-4386-8f4e-d6c8ec1c1f19", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1d682b32-6628-432c-bbd6-6b6ee297d865?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54b06e44-c4d6-417a-a053-dec15826c5c0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1945,7 +2146,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:56:12 GMT", + "Date": "Tue, 25 Oct 2022 14:47:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1953,17 +2154,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55e5590c-7532-4b7d-83a7-36e7b0308977", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095613Z:55e5590c-7532-4b7d-83a7-36e7b0308977", + "x-ms-correlation-request-id": "a5fd76b0-1aa0-4098-ab2e-0e0516bfe016", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144741Z:a5fd76b0-1aa0-4098-ab2e-0e0516bfe016", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54b06e44-c4d6-417a-a053-dec15826c5c0", + "name": "54b06e44-c4d6-417a-a053-dec15826c5c0", + "status": "Deleting", + "startTime": "2022-10-25T14:47:41.4187587Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0/subvolumes/sdk-py-tests-subvolume-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54b06e44-c4d6-417a-a053-dec15826c5c0?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:48:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4f17acff-0e59-443d-a27d-bbcc3253a43b", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144812Z:4f17acff-0e59-443d-a27d-bbcc3253a43b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1d682b32-6628-432c-bbd6-6b6ee297d865", - "name": "1d682b32-6628-432c-bbd6-6b6ee297d865", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54b06e44-c4d6-417a-a053-dec15826c5c0", + "name": "54b06e44-c4d6-417a-a053-dec15826c5c0", "status": "Succeeded", - "startTime": "2022-09-19T09:55:42.7294407Z", - "endTime": "2022-09-19T09:55:43.1213616Z", + "startTime": "2022-10-25T14:47:41.4187587Z", + "endTime": "2022-10-25T14:47:41.8875996Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0/subvolumes/sdk-py-tests-subvolume-1" @@ -1977,7 +2218,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1985,7 +2226,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:56:12 GMT", + "Date": "Tue, 25 Oct 2022 14:48:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1993,9 +2234,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3301c5c-fbc2-4b07-9cf2-28993a26faf7", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095613Z:a3301c5c-fbc2-4b07-9cf2-28993a26faf7", + "x-ms-correlation-request-id": "4cbc62d8-b4c1-4a52-81ec-edd88cc060e2", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144812Z:4cbc62d8-b4c1-4a52-81ec-edd88cc060e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2010,36 +2251,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 09:56:13 GMT", + "Date": "Tue, 25 Oct 2022 14:48:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8b08b96-acd7-4b16-a943-1c4c356ed0bd", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095614Z:c8b08b96-acd7-4b16-a943-1c4c356ed0bd", + "x-ms-correlation-request-id": "5a5e955c-7a41-43a0-887b-e4e5b9c4a3a2", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144813Z:5a5e955c-7a41-43a0-887b-e4e5b9c4a3a2", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2047,7 +2288,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:56:44 GMT", + "Date": "Tue, 25 Oct 2022 14:48:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2055,16 +2296,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65d2bcc6-1b3e-4a51-8968-dc0bf94da404", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095644Z:65d2bcc6-1b3e-4a51-8968-dc0bf94da404", + "x-ms-correlation-request-id": "63b370ac-dfcf-45df-b8d1-67707b0916fb", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144813Z:63b370ac-dfcf-45df-b8d1-67707b0916fb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8", - "name": "3181ef5d-1230-451b-9bef-313a70f4a7e8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8", + "name": "70876c5f-1f50-4977-a9a0-4fbd1dc35af8", "status": "Deleting", - "startTime": "2022-09-19T09:56:14.2954989Z", + "startTime": "2022-10-25T14:48:13.4021441Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2073,13 +2314,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2087,7 +2328,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:57:14 GMT", + "Date": "Tue, 25 Oct 2022 14:48:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2095,16 +2336,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0400ec60-3c24-4e76-a6a1-92a3e8cb313c", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095714Z:0400ec60-3c24-4e76-a6a1-92a3e8cb313c", + "x-ms-correlation-request-id": "3e2d24c0-43dd-4a09-b6da-45eedbcd2845", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144844Z:3e2d24c0-43dd-4a09-b6da-45eedbcd2845", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8", - "name": "3181ef5d-1230-451b-9bef-313a70f4a7e8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8", + "name": "70876c5f-1f50-4977-a9a0-4fbd1dc35af8", "status": "Deleting", - "startTime": "2022-09-19T09:56:14.2954989Z", + "startTime": "2022-10-25T14:48:13.4021441Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2113,13 +2354,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2127,7 +2368,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:57:45 GMT", + "Date": "Tue, 25 Oct 2022 14:49:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2135,16 +2376,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "717d3b7c-74c8-451e-9219-ff23eb39c856", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095745Z:717d3b7c-74c8-451e-9219-ff23eb39c856", + "x-ms-correlation-request-id": "54e80514-51ea-4e6b-800d-6a589a3ce77c", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T144914Z:54e80514-51ea-4e6b-800d-6a589a3ce77c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8", - "name": "3181ef5d-1230-451b-9bef-313a70f4a7e8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8", + "name": "70876c5f-1f50-4977-a9a0-4fbd1dc35af8", "status": "Deleting", - "startTime": "2022-09-19T09:56:14.2954989Z", + "startTime": "2022-10-25T14:48:13.4021441Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2153,13 +2394,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2167,7 +2408,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:58:15 GMT", + "Date": "Tue, 25 Oct 2022 14:50:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2175,17 +2416,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17b94589-2ce5-43c0-ba2a-d88532683c43", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095815Z:17b94589-2ce5-43c0-ba2a-d88532683c43", + "x-ms-correlation-request-id": "98e88560-d867-4da7-bcf9-1ad33f2cef7f", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145007Z:98e88560-d867-4da7-bcf9-1ad33f2cef7f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8", + "name": "70876c5f-1f50-4977-a9a0-4fbd1dc35af8", + "status": "Deleting", + "startTime": "2022-10-25T14:48:13.4021441Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:50:37 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "697cc5cf-c721-401c-a628-208402bbe9ba", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145038Z:697cc5cf-c721-401c-a628-208402bbe9ba", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8", + "name": "70876c5f-1f50-4977-a9a0-4fbd1dc35af8", + "status": "Deleting", + "startTime": "2022-10-25T14:48:13.4021441Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:51:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1f8c7b8f-6ff0-4447-bdad-119eaaf2b725", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145108Z:1f8c7b8f-6ff0-4447-bdad-119eaaf2b725", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8", - "name": "3181ef5d-1230-451b-9bef-313a70f4a7e8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8", + "name": "70876c5f-1f50-4977-a9a0-4fbd1dc35af8", "status": "Succeeded", - "startTime": "2022-09-19T09:56:14.2954989Z", - "endTime": "2022-09-19T09:58:07.222087Z", + "startTime": "2022-10-25T14:48:13.4021441Z", + "endTime": "2022-10-25T14:51:03.6366106Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0" @@ -2193,13 +2514,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3181ef5d-1230-451b-9bef-313a70f4a7e8?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70876c5f-1f50-4977-a9a0-4fbd1dc35af8?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2207,7 +2528,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 09:58:16 GMT", + "Date": "Tue, 25 Oct 2022 14:51:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2215,22 +2536,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6489c27c-ac85-49dc-b35e-457f1d866b09", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220919T095816Z:6489c27c-ac85-49dc-b35e-457f1d866b09", + "x-ms-correlation-request-id": "668c904c-386f-4836-853e-647c987d0bcc", + "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145108Z:668c904c-386f-4836-853e-647c987d0bcc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0", "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-6b727b0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T09%3A57%3A50.1077404Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A50%3A46.2884657Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:50:29.5191626Z" + "CreatedOnDate": "2022-10-25T14:41:30.0240301Z" }, "properties": { - "fileSystemId": "5a27560d-802e-53da-d17b-f9c0bc648eca", + "fileSystemId": "b542e595-388f-fed9-0e9e-1fa99eb9ded6", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-6b727b0", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2261,19 +2582,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_d60b9c33", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_e19c96de", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-6b727b0", - "poolId": "ef1eb95b-a79c-fe06-b361-6a87ff8f2932", + "poolId": "c92ee5a4-dcb6-f88e-8ffa-a0dbf60d7354", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "5a27560d-802e-53da-d17b-f9c0bc648eca", - "fileSystemId": "5a27560d-802e-53da-d17b-f9c0bc648eca", + "mountTargetId": "b542e595-388f-fed9-0e9e-1fa99eb9ded6", + "fileSystemId": "b542e595-388f-fed9-0e9e-1fa99eb9ded6", "startIp": "", "endIp": "", "gateway": "", @@ -2305,10 +2626,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:50:30.4889325Z", + "createdAt": "2022-10-25T14:41:31.3076011Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:50:30.4889325Z" + "lastModifiedAt": "2022-10-25T14:41:31.3076011Z" } } }, @@ -2319,7 +2640,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2327,14 +2648,14 @@ "Cache-Control": "no-cache", "Content-Length": "322", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:01:37 GMT", + "Date": "Tue, 25 Oct 2022 14:54:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f2316f6-0d07-4faf-9f7a-4e753e2743f3", + "x-ms-correlation-request-id": "075636fd-f24a-4f5e-a635-ad11b96b7de0", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100138Z:8f2316f6-0d07-4faf-9f7a-4e753e2743f3" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145431Z:075636fd-f24a-4f5e-a635-ad11b96b7de0" }, "ResponseBody": { "error": { @@ -2351,36 +2672,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69c96379-3f83-4729-b0b0-816fe41a91da?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85f0d641-f9b1-41d6-a1ab-353bbb9a046f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:01:49 GMT", + "Date": "Tue, 25 Oct 2022 14:54:43 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69c96379-3f83-4729-b0b0-816fe41a91da?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85f0d641-f9b1-41d6-a1ab-353bbb9a046f?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8b8a178-4ff9-4ee1-8a58-4c5d85f88b6f", + "x-ms-correlation-request-id": "56644e1a-a1a2-4145-af06-769f4401ebf6", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100150Z:d8b8a178-4ff9-4ee1-8a58-4c5d85f88b6f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145444Z:56644e1a-a1a2-4145-af06-769f4401ebf6", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69c96379-3f83-4729-b0b0-816fe41a91da?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85f0d641-f9b1-41d6-a1ab-353bbb9a046f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2388,7 +2709,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:02:20 GMT", + "Date": "Tue, 25 Oct 2022 14:54:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2396,17 +2717,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9719f7f1-8822-4652-88f3-62678af9c6be", + "x-ms-correlation-request-id": "e5699032-6f26-4c94-8e8c-cf97ee140d7e", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100220Z:9719f7f1-8822-4652-88f3-62678af9c6be", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145444Z:e5699032-6f26-4c94-8e8c-cf97ee140d7e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85f0d641-f9b1-41d6-a1ab-353bbb9a046f", + "name": "85f0d641-f9b1-41d6-a1ab-353bbb9a046f", + "status": "Deleting", + "startTime": "2022-10-25T14:54:44.2953506Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85f0d641-f9b1-41d6-a1ab-353bbb9a046f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:55:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d98d8d75-d3f8-497d-abfa-c6ce0bdee9e8", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145514Z:d98d8d75-d3f8-497d-abfa-c6ce0bdee9e8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69c96379-3f83-4729-b0b0-816fe41a91da", - "name": "69c96379-3f83-4729-b0b0-816fe41a91da", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85f0d641-f9b1-41d6-a1ab-353bbb9a046f", + "name": "85f0d641-f9b1-41d6-a1ab-353bbb9a046f", "status": "Succeeded", - "startTime": "2022-09-19T10:01:50.0538857Z", - "endTime": "2022-09-19T10:01:51.1792041Z", + "startTime": "2022-10-25T14:54:44.2953506Z", + "endTime": "2022-10-25T14:54:45.1547886Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1" @@ -2414,13 +2775,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69c96379-3f83-4729-b0b0-816fe41a91da?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85f0d641-f9b1-41d6-a1ab-353bbb9a046f?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2428,7 +2789,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:02:20 GMT", + "Date": "Tue, 25 Oct 2022 14:55:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2436,22 +2797,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2db95e6b-174f-4258-85ba-184ac56ae65c", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100220Z:2db95e6b-174f-4258-85ba-184ac56ae65c", + "x-ms-correlation-request-id": "1f20a5e8-5c37-4a45-ad41-55c30c7471be", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145515Z:1f20a5e8-5c37-4a45-ad41-55c30c7471be", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-6b727b0/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A01%3A50.0523619Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A54%3A44.2949518Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:49:56.3182898Z" + "CreatedOnDate": "2022-10-25T14:41:26.2357170Z" }, "properties": { - "poolId": "ef1eb95b-a79c-fe06-b361-6a87ff8f2932", + "poolId": "c92ee5a4-dcb6-f88e-8ffa-a0dbf60d7354", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0/capacityPools/sdk-py-tests-pool-1", @@ -2465,10 +2826,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:49:57.2644751Z", + "createdAt": "2022-10-25T14:41:27.5863451Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:49:57.2644751Z" + "lastModifiedAt": "2022-10-25T14:41:27.5863451Z" } } }, @@ -2480,20 +2841,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:02:30 GMT", + "Date": "Tue, 25 Oct 2022 14:55:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ee03f4c-621d-4590-a3ed-c6dc21a4e480", + "x-ms-correlation-request-id": "3bd70800-430d-4a2c-8a3f-4f30bca905d0", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100231Z:0ee03f4c-621d-4590-a3ed-c6dc21a4e480" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145525Z:3bd70800-430d-4a2c-8a3f-4f30bca905d0" }, "ResponseBody": null }, @@ -2505,20 +2866,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:02:41 GMT", + "Date": "Tue, 25 Oct 2022 14:55:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0c307d7-9b50-4fbd-92b9-58ae9cc9c848", + "x-ms-correlation-request-id": "64ff707f-f9ac-4139-933a-2fa3c42f08e7", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100241Z:b0c307d7-9b50-4fbd-92b9-58ae9cc9c848" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145535Z:64ff707f-f9ac-4139-933a-2fa3c42f08e7" }, "ResponseBody": null }, @@ -2530,20 +2891,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:02:51 GMT", + "Date": "Tue, 25 Oct 2022 14:55:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c876ce4-c966-4fc3-88af-ad600ad4f7cc", + "x-ms-correlation-request-id": "44687ce8-f260-469c-bfc9-3bb34bfc9a94", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100251Z:4c876ce4-c966-4fc3-88af-ad600ad4f7cc" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145546Z:44687ce8-f260-469c-bfc9-3bb34bfc9a94" }, "ResponseBody": null }, @@ -2555,20 +2916,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:03:01 GMT", + "Date": "Tue, 25 Oct 2022 14:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aca23c98-1fea-407f-a4bc-eff5c972ac5e", + "x-ms-correlation-request-id": "cab0b17c-a123-40d2-a91b-f7f5b51b938f", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100302Z:aca23c98-1fea-407f-a4bc-eff5c972ac5e" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145556Z:cab0b17c-a123-40d2-a91b-f7f5b51b938f" }, "ResponseBody": null }, @@ -2579,7 +2940,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2587,14 +2948,14 @@ "Cache-Control": "no-cache", "Content-Length": "287", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:03:11 GMT", + "Date": "Tue, 25 Oct 2022 14:56:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a006945-d6ac-48f7-aeec-c2258d044f44", + "x-ms-correlation-request-id": "04477284-a88c-49e7-b0a7-e75cbd6a0a1b", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100312Z:5a006945-d6ac-48f7-aeec-c2258d044f44" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145606Z:04477284-a88c-49e7-b0a7-e75cbd6a0a1b" }, "ResponseBody": { "error": { @@ -2611,36 +2972,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/45145219-eed2-4236-b629-14004334b55b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4eb694e5-27cd-442a-b9ee-2a875c446b9d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:03:13 GMT", + "Date": "Tue, 25 Oct 2022 14:56:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/45145219-eed2-4236-b629-14004334b55b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4eb694e5-27cd-442a-b9ee-2a875c446b9d?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfd2634a-4bd6-4d27-a374-087684feab83", + "x-ms-correlation-request-id": "47f70743-b0b4-468b-a75b-bad5eacf00ec", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100313Z:dfd2634a-4bd6-4d27-a374-087684feab83", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145608Z:47f70743-b0b4-468b-a75b-bad5eacf00ec", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/45145219-eed2-4236-b629-14004334b55b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4eb694e5-27cd-442a-b9ee-2a875c446b9d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2648,7 +3009,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:03:43 GMT", + "Date": "Tue, 25 Oct 2022 14:56:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2656,17 +3017,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21d98bb2-13e1-49b0-86f4-909ef73197b1", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100344Z:21d98bb2-13e1-49b0-86f4-909ef73197b1", + "x-ms-correlation-request-id": "679588b1-9037-40c8-a888-399df757d386", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145608Z:679588b1-9037-40c8-a888-399df757d386", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/45145219-eed2-4236-b629-14004334b55b", - "name": "45145219-eed2-4236-b629-14004334b55b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4eb694e5-27cd-442a-b9ee-2a875c446b9d", + "name": "4eb694e5-27cd-442a-b9ee-2a875c446b9d", "status": "Succeeded", - "startTime": "2022-09-19T10:03:13.7645367Z", - "endTime": "2022-09-19T10:03:13.8427462Z", + "startTime": "2022-10-25T14:56:07.971578Z", + "endTime": "2022-10-25T14:56:08.127932Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0" @@ -2674,13 +3035,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/45145219-eed2-4236-b629-14004334b55b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4eb694e5-27cd-442a-b9ee-2a875c446b9d?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2688,7 +3049,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:03:44 GMT", + "Date": "Tue, 25 Oct 2022 14:56:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2696,19 +3057,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5e1dbf6-9697-429e-bbd5-6da33839c76e", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100344Z:d5e1dbf6-9697-429e-bbd5-6da33839c76e", + "x-ms-correlation-request-id": "4831a1ec-a16a-4c27-8549-5ce2104d3770", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145608Z:4831a1ec-a16a-4c27-8549-5ce2104d3770", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0", "name": "sdk-py-tests-acc-1-6b727b0", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A03%3A13.7643354Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A07.9642375Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T09:49:21.9801031Z" + "CreatedOnDate": "2022-10-25T14:41:22.0868994Z" }, "properties": { "encryption": { @@ -2719,10 +3080,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T09:49:23.331113Z", + "createdAt": "2022-10-25T14:41:23.2243982Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T09:49:23.331113Z" + "lastModifiedAt": "2022-10-25T14:41:23.2243982Z" } } }, @@ -2733,50 +3094,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "253", + "Content-Length": "254", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:03:44 GMT", + "Date": "Tue, 25 Oct 2022 14:56:08 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72fde955-770f-444e-8d2a-1b2ee29c9704", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100344Z:72fde955-770f-444e-8d2a-1b2ee29c9704" + "x-ms-correlation-request-id": "f8e55475-2ba8-4f56-a9b5-0013741cbcad", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145609Z:f8e55475-2ba8-4f56-a9b5-0013741cbcad", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-6b727b0\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-6b727b0?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4ebcd242-feff-49fe-b5c2-7f06a7ab4b33?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/26ce3cdd-e016-4418-9493-724100370048?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:03:45 GMT", + "Date": "Tue, 25 Oct 2022 14:56:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/4ebcd242-feff-49fe-b5c2-7f06a7ab4b33?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/26ce3cdd-e016-4418-9493-724100370048?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -2785,10 +3148,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "6d4fa7c5-555c-4db9-bf09-760e8c2da709", - "x-ms-correlation-request-id": "9d8b4549-736f-4b0f-b3d6-b97ac0a38cbb", + "x-ms-arm-service-request-id": "fd382550-1ffa-41ae-9950-b293313ef3ad", + "x-ms-correlation-request-id": "7afa1239-02be-402a-87f1-e32b40441e1c", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100345Z:9d8b4549-736f-4b0f-b3d6-b97ac0a38cbb" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145609Z:7afa1239-02be-402a-87f1-e32b40441e1c" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_get_metadata.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_get_metadata.json index b75e907f9256..db782bbb56fd 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_get_metadata.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_get_metadata.json @@ -1,5 +1,38 @@ { "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/9eab1f8d-c91d-40a6-978b-8f4cbc152c25?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9eab1f8d-c91d-40a6-978b-8f4cbc152c25?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:10:26 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/9eab1f8d-c91d-40a6-978b-8f4cbc152c25?api-version=2022-05-01", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "98c82b3b-3b4d-47f2-a331-25d6766ba79c", + "x-ms-correlation-request-id": "0908e0aa-86c5-40a8-a071-35f69a3ec901", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151027Z:f37723e7-25ed-4312-929b-74308e6b746b" + }, + "ResponseBody": null + }, { "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration", "RequestMethod": "GET", @@ -7,7 +40,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +50,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:22 GMT", + "Date": "Tue, 25 Oct 2022 15:10:27 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +134,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +144,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:22 GMT", + "Date": "Tue, 25 Oct 2022 15:10:27 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +205,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "874f65d7-50df-46e6-b36e-8dcb25de3b27", + "client-request-id": "96c4c31a-91e2-41cb-aae2-202fdb51b018", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "874f65d7-50df-46e6-b36e-8dcb25de3b27", + "client-request-id": "96c4c31a-91e2-41cb-aae2-202fdb51b018", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:22 GMT", + "Date": "Tue, 25 Oct 2022 15:10:27 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +234,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +246,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +254,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +269,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/44a2d5a3-43c0-44a5-98a9-0a5703c00b31?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e35d6341-b3ab-4e0f-ba47-c23c3defae3b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:28 GMT", + "Date": "Tue, 25 Oct 2022 15:10:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +283,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "6498d8e0-0336-477f-abcd-8a4b857c1c7f", - "x-ms-correlation-request-id": "002cf1aa-e0f3-49ff-97ee-e949c8e0828c", + "x-ms-arm-service-request-id": "78181186-32a7-409c-9162-126db57efbd0", + "x-ms-correlation-request-id": "207b5e66-470f-4987-ac29-1eb89b9067f4", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102028Z:002cf1aa-e0f3-49ff-97ee-e949c8e0828c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151032Z:207b5e66-470f-4987-ac29-1eb89b9067f4" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-8b73262e", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e", - "etag": "W/\u0022d7942bcf-e401-488d-bc2f-e7218628c108\u0022", + "etag": "W/\u0022ce297301-c44c-49f1-8fc6-8588932ba9ca\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:20:24.9365118Z" + "CreatedOnDate": "2022-10-25T15:10:28.5871215Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "d4fe6c54-b0a3-43b3-a2e1-e90747d83597", + "resourceGuid": "70c7c587-7d17-4d2b-a2f0-636eb973b04e", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +312,49 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/44a2d5a3-43c0-44a5-98a9-0a5703c00b31?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e35d6341-b3ab-4e0f-ba47-c23c3defae3b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:10:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Retry-After": "10", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1986a3eb-1df4-489f-b671-d6f9f78916da", + "x-ms-correlation-request-id": "3980fd01-a81b-45a5-9bc5-0ce92b474517", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151032Z:3980fd01-a81b-45a5-9bc5-0ce92b474517" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e35d6341-b3ab-4e0f-ba47-c23c3defae3b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +362,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:31 GMT", + "Date": "Tue, 25 Oct 2022 15:10:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +373,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ced92b35-b62c-4a2b-82d9-40d6bd54254c", - "x-ms-correlation-request-id": "9c6a8806-259f-4d2e-943f-b56edc647361", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102032Z:9c6a8806-259f-4d2e-943f-b56edc647361" + "x-ms-arm-service-request-id": "4a5b72c3-d8fb-45b2-bf07-84a54148adc9", + "x-ms-correlation-request-id": "e80f5d07-d707-48b6-84da-1127ccced52c", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151043Z:e80f5d07-d707-48b6-84da-1127ccced52c" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +397,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:32 GMT", - "ETag": "W/\u00227c9a2c1a-2588-434c-8f46-e05b3089eb40\u0022", + "Date": "Tue, 25 Oct 2022 15:10:43 GMT", + "ETag": "W/\u0022a4ae4964-2e53-4c33-8911-a46651530036\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +409,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "cb32bc8e-c3b6-4d1e-9ace-78c8488cce10", - "x-ms-correlation-request-id": "ae33921f-fde1-4e06-aac3-70ffa3dfe627", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102032Z:ae33921f-fde1-4e06-aac3-70ffa3dfe627" + "x-ms-arm-service-request-id": "24b16960-5c54-4a25-b319-c00840d7429e", + "x-ms-correlation-request-id": "fb5d847f-7438-4421-9f53-c36d03f5bed2", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151043Z:fb5d847f-7438-4421-9f53-c36d03f5bed2" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-8b73262e", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e", - "etag": "W/\u00227c9a2c1a-2588-434c-8f46-e05b3089eb40\u0022", + "etag": "W/\u0022a4ae4964-2e53-4c33-8911-a46651530036\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:20:24.9365118Z" + "CreatedOnDate": "2022-10-25T15:10:28.5871215Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "d4fe6c54-b0a3-43b3-a2e1-e90747d83597", + "resourceGuid": "70c7c587-7d17-4d2b-a2f0-636eb973b04e", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +438,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +446,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +463,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/689cde22-4a6f-44e1-9d9b-5fd62373a450?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d3a5a5bc-03f2-476f-80eb-c81514882bec?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:32 GMT", + "Date": "Tue, 25 Oct 2022 15:10:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +478,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e0be851c-50b9-47f9-994a-8765bc4a7e06", - "x-ms-correlation-request-id": "1fd6479f-72e8-42c4-bbe2-62f088728cea", + "x-ms-arm-service-request-id": "b8ca44bb-fafa-417d-98cf-4a2afb0a9db0", + "x-ms-correlation-request-id": "06993d43-c30f-4cd8-92e0-2c6ade1d1841", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102033Z:1fd6479f-72e8-42c4-bbe2-62f088728cea" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151044Z:06993d43-c30f-4cd8-92e0-2c6ade1d1841" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default", - "etag": "W/\u0022552f6c21-06af-47d6-bda9-1e9c47d5d405\u0022", + "etag": "W/\u0022966c48c6-02d4-4344-bc8a-28a55f632a58\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +494,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022552f6c21-06af-47d6-bda9-1e9c47d5d405\u0022", + "etag": "W/\u0022966c48c6-02d4-4344-bc8a-28a55f632a58\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +514,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/689cde22-4a6f-44e1-9d9b-5fd62373a450?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d3a5a5bc-03f2-476f-80eb-c81514882bec?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +528,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:36 GMT", + "Date": "Tue, 25 Oct 2022 15:10:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +539,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c5529caf-e576-48b7-be13-71c93f6e5a04", - "x-ms-correlation-request-id": "3d4c47e6-9c4a-4619-b9be-c25fb7648b82", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102036Z:3d4c47e6-9c4a-4619-b9be-c25fb7648b82" + "x-ms-arm-service-request-id": "8d2c86bd-bb71-42ff-91cd-ef94a2ed2874", + "x-ms-correlation-request-id": "e4a7e71d-4474-4fbf-9a24-de9921b0d2b3", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151044Z:e4a7e71d-4474-4fbf-9a24-de9921b0d2b3" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +563,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:36 GMT", - "ETag": "W/\u002230324379-10b3-41d0-bb83-0002e63dc4a0\u0022", + "Date": "Tue, 25 Oct 2022 15:10:44 GMT", + "ETag": "W/\u00221056c6b6-7571-4385-8be1-5b37434893de\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +575,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e40c8834-9746-4e92-8226-b5418639cf49", - "x-ms-correlation-request-id": "18b2918f-e18d-4d1a-8976-4b5f3b7d1216", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102036Z:18b2918f-e18d-4d1a-8976-4b5f3b7d1216" + "x-ms-arm-service-request-id": "1d60ac1e-575a-404f-8160-4fc718bbaf00", + "x-ms-correlation-request-id": "2a636161-4ed2-47c8-8a1b-6c98b9ccdb2d", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151044Z:2a636161-4ed2-47c8-8a1b-6c98b9ccdb2d" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default", - "etag": "W/\u002230324379-10b3-41d0-bb83-0002e63dc4a0\u0022", + "etag": "W/\u00221056c6b6-7571-4385-8be1-5b37434893de\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +591,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default/delegations/netAppVolumes", - "etag": "W/\u002230324379-10b3-41d0-bb83-0002e63dc4a0\u0022", + "etag": "W/\u00221056c6b6-7571-4385-8be1-5b37434893de\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +617,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +627,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:36 GMT", + "Date": "Tue, 25 Oct 2022 15:10:44 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +711,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +721,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:36 GMT", + "Date": "Tue, 25 Oct 2022 15:10:44 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +782,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "77103802-dce9-484f-a4fa-1cb1cbbadd2d", + "client-request-id": "5957f49c-b393-4247-a847-b302d8400d07", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "77103802-dce9-484f-a4fa-1cb1cbbadd2d", + "client-request-id": "5957f49c-b393-4247-a847-b302d8400d07", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:36 GMT", + "Date": "Tue, 25 Oct 2022 15:10:44 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +811,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +831,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/355ed4cf-580a-4014-bb7a-668fa5eeb539?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57a61a6f-8c32-4c37-bc69-28480901ff07?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:20:41 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A20%3A40.2631173Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:10:48 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A47.5021401Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09edcb31-c00f-48c5-b7ef-6cd0032fc845", + "x-ms-correlation-request-id": "ab22f276-9caa-4610-be2c-9e806fa651cf", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102041Z:09edcb31-c00f-48c5-b7ef-6cd0032fc845", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151048Z:ab22f276-9caa-4610-be2c-9e806fa651cf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e", "name": "sdk-py-tests-acc-1-8b73262e", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A20%3A40.2631173Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A47.5021401Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:20:38.1479126Z" + "CreatedOnDate": "2022-10-25T15:10:46.3057544Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +869,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:20:39.3718998Z", + "createdAt": "2022-10-25T15:10:47.3010993Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:20:39.3718998Z" + "lastModifiedAt": "2022-10-25T15:10:47.3010993Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/355ed4cf-580a-4014-bb7a-668fa5eeb539?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57a61a6f-8c32-4c37-bc69-28480901ff07?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +891,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:21:10 GMT", + "Date": "Tue, 25 Oct 2022 15:10:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +899,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c187241e-ded3-40fc-b616-ea47dd109b75", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102111Z:c187241e-ded3-40fc-b616-ea47dd109b75", + "x-ms-correlation-request-id": "0d81dce0-5760-4f0b-82d4-a64cab9272a0", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151048Z:0d81dce0-5760-4f0b-82d4-a64cab9272a0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/355ed4cf-580a-4014-bb7a-668fa5eeb539", - "name": "355ed4cf-580a-4014-bb7a-668fa5eeb539", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57a61a6f-8c32-4c37-bc69-28480901ff07", + "name": "57a61a6f-8c32-4c37-bc69-28480901ff07", "status": "Succeeded", - "startTime": "2022-09-19T10:20:40.2473457Z", - "endTime": "2022-09-19T10:20:40.2942292Z", + "startTime": "2022-10-25T15:10:47.49813Z", + "endTime": "2022-10-25T15:10:47.5449562Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e" @@ -853,7 +923,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +931,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:21:11 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A20%3A40.2993545Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:10:48 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A47.5476184Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +940,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2474ec3a-cd9c-4332-b90d-dab6785a9859", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102112Z:2474ec3a-cd9c-4332-b90d-dab6785a9859", + "x-ms-correlation-request-id": "7e48723c-c2f2-4eea-9df3-ff2735891ec5", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151049Z:7e48723c-c2f2-4eea-9df3-ff2735891ec5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e", "name": "sdk-py-tests-acc-1-8b73262e", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A20%3A40.2993545Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A47.5476184Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:20:38.1479126Z" + "CreatedOnDate": "2022-10-25T15:10:46.3057544Z" }, "properties": { "activeDirectories": [ @@ -911,10 +981,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:20:39.3718998Z", + "createdAt": "2022-10-25T15:10:47.3010993Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:20:39.3718998Z" + "lastModifiedAt": "2022-10-25T15:10:47.3010993Z" } } }, @@ -927,7 +997,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +1010,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e982faa9-9817-41b0-b701-cea17198ceed?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0975dca7-435d-416d-971b-d73b3168cf07?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:21:13 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A21%3A13.7742895Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:10:51 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A50.8872145Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a1e5442-097f-4974-b5b1-9938490200c2", + "x-ms-correlation-request-id": "8cb52199-cef0-4602-8471-26a519725568", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102114Z:6a1e5442-097f-4974-b5b1-9938490200c2", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151051Z:8cb52199-cef0-4602-8471-26a519725568", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8b73262e/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A21%3A13.7742895Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A50.8872145Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:21:12.6085604Z" + "CreatedOnDate": "2022-10-25T15:10:49.5203969Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +1047,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:21:13.5961953Z", + "createdAt": "2022-10-25T15:10:50.6462358Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:21:13.5961953Z" + "lastModifiedAt": "2022-10-25T15:10:50.6462358Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e982faa9-9817-41b0-b701-cea17198ceed?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0975dca7-435d-416d-971b-d73b3168cf07?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1069,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:21:44 GMT", + "Date": "Tue, 25 Oct 2022 15:10:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1077,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad97834c-e64d-4d94-a0e5-f17e0bad63f3", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102144Z:ad97834c-e64d-4d94-a0e5-f17e0bad63f3", + "x-ms-correlation-request-id": "e5234ca0-f982-415e-91d4-28a125be96ab", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151052Z:e5234ca0-f982-415e-91d4-28a125be96ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e982faa9-9817-41b0-b701-cea17198ceed", - "name": "e982faa9-9817-41b0-b701-cea17198ceed", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0975dca7-435d-416d-971b-d73b3168cf07", + "name": "0975dca7-435d-416d-971b-d73b3168cf07", "status": "Succeeded", - "startTime": "2022-09-19T10:21:13.7685371Z", - "endTime": "2022-09-19T10:21:14.4248323Z", + "startTime": "2022-10-25T15:10:50.8903005Z", + "endTime": "2022-10-25T15:10:51.9686747Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1101,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1109,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:21:44 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A21%3A14.4199608Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:10:52 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A51.9680999Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1118,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5aebc46-4659-4083-abcf-ef5196d4563a", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102145Z:d5aebc46-4659-4083-abcf-ef5196d4563a", + "x-ms-correlation-request-id": "011b8f24-2e68-46a9-980e-f4a0de728ee5", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151052Z:011b8f24-2e68-46a9-980e-f4a0de728ee5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8b73262e/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A21%3A14.4199608Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A51.9680999Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:21:12.6085604Z" + "CreatedOnDate": "2022-10-25T15:10:49.5203969Z" }, "properties": { - "poolId": "cebcdbbe-a4ea-436e-0864-b33d412fc3f1", + "poolId": "8b2fdfc0-2924-34ba-d154-5e1662e9d08b", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1146,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:21:13.5961953Z", + "createdAt": "2022-10-25T15:10:50.6462358Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:21:13.5961953Z" + "lastModifiedAt": "2022-10-25T15:10:50.6462358Z" } } }, @@ -1092,7 +1162,7 @@ "Connection": "keep-alive", "Content-Length": "814", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1123,30 +1193,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1614", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:21:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A21%3A47.5882794Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:10:54 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A54.2562984Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f329c44d-0095-4be4-8145-5c7d58b935e6", + "x-ms-correlation-request-id": "7138f2d0-f9d8-4b93-9329-4353bd7969d1", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102148Z:f329c44d-0095-4be4-8145-5c7d58b935e6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151055Z:7138f2d0-f9d8-4b93-9329-4353bd7969d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e", "name": "sdk-py-tests-acc-1-8b73262e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8b73262e", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A21%3A47.5882794Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A54.2562984Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:21:45.5815657Z" + "CreatedOnDate": "2022-10-25T15:10:52.7829052Z" }, "properties": { "serviceLevel": "Premium", @@ -1177,21 +1247,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:21:46.6865475Z", + "createdAt": "2022-10-25T15:10:53.9308874Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:21:46.6865475Z" + "lastModifiedAt": "2022-10-25T15:10:53.9308874Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1199,7 +1269,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:22:17 GMT", + "Date": "Tue, 25 Oct 2022 15:10:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1207,16 +1277,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd1623bb-4741-4957-af58-d99a1716e275", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102218Z:fd1623bb-4741-4957-af58-d99a1716e275", + "x-ms-correlation-request-id": "9f296746-f60e-4a31-afca-35b35c9f12d0", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151055Z:9f296746-f60e-4a31-afca-35b35c9f12d0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15", - "name": "18edb354-f4c9-4d58-9667-8f50e53f7b15", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", "status": "Creating", - "startTime": "2022-09-19T10:21:47.5813416Z", + "startTime": "2022-10-25T15:10:54.2657286Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1225,13 +1295,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1239,7 +1309,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:22:48 GMT", + "Date": "Tue, 25 Oct 2022 15:11:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1247,16 +1317,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9b1f2bd-2306-4957-bc4e-6e14bf500ac6", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102248Z:c9b1f2bd-2306-4957-bc4e-6e14bf500ac6", + "x-ms-correlation-request-id": "7aa5b905-b871-4d31-b7fe-afeeb3b4d6e6", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151125Z:7aa5b905-b871-4d31-b7fe-afeeb3b4d6e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15", - "name": "18edb354-f4c9-4d58-9667-8f50e53f7b15", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", "status": "Creating", - "startTime": "2022-09-19T10:21:47.5813416Z", + "startTime": "2022-10-25T15:10:54.2657286Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1265,13 +1335,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1279,7 +1349,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:23:18 GMT", + "Date": "Tue, 25 Oct 2022 15:11:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1287,16 +1357,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a002acd-2bdf-410c-a40b-97af317fc551", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102319Z:2a002acd-2bdf-410c-a40b-97af317fc551", + "x-ms-correlation-request-id": "940d31a9-7fea-4331-8867-6b64369ab78f", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151155Z:940d31a9-7fea-4331-8867-6b64369ab78f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15", - "name": "18edb354-f4c9-4d58-9667-8f50e53f7b15", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", "status": "Creating", - "startTime": "2022-09-19T10:21:47.5813416Z", + "startTime": "2022-10-25T15:10:54.2657286Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1305,13 +1375,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1319,7 +1389,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:23:48 GMT", + "Date": "Tue, 25 Oct 2022 15:12:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1327,16 +1397,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ba74e35-63de-421e-ad04-eff5a2ec7b58", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102349Z:5ba74e35-63de-421e-ad04-eff5a2ec7b58", + "x-ms-correlation-request-id": "2eb31faf-0199-4a72-854d-6320048df88e", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151226Z:2eb31faf-0199-4a72-854d-6320048df88e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15", - "name": "18edb354-f4c9-4d58-9667-8f50e53f7b15", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", "status": "Creating", - "startTime": "2022-09-19T10:21:47.5813416Z", + "startTime": "2022-10-25T15:10:54.2657286Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1345,13 +1415,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1359,7 +1429,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:24:19 GMT", + "Date": "Tue, 25 Oct 2022 15:12:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1367,16 +1437,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb58b300-cc8b-4e60-83c1-3495832584cd", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102419Z:bb58b300-cc8b-4e60-83c1-3495832584cd", + "x-ms-correlation-request-id": "ff3e5cf2-db96-4832-8171-8d2fc72f3718", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151256Z:ff3e5cf2-db96-4832-8171-8d2fc72f3718", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15", - "name": "18edb354-f4c9-4d58-9667-8f50e53f7b15", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", "status": "Creating", - "startTime": "2022-09-19T10:21:47.5813416Z", + "startTime": "2022-10-25T15:10:54.2657286Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1385,13 +1455,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1399,7 +1469,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:24:49 GMT", + "Date": "Tue, 25 Oct 2022 15:13:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1407,16 +1477,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62ecaa67-5c40-40d9-b952-dc9184746195", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102449Z:62ecaa67-5c40-40d9-b952-dc9184746195", + "x-ms-correlation-request-id": "1b8dcb83-4912-46a7-829e-7177112731c6", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151326Z:1b8dcb83-4912-46a7-829e-7177112731c6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15", - "name": "18edb354-f4c9-4d58-9667-8f50e53f7b15", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", "status": "Creating", - "startTime": "2022-09-19T10:21:47.5813416Z", + "startTime": "2022-10-25T15:10:54.2657286Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1425,13 +1495,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1439,7 +1509,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:25:19 GMT", + "Date": "Tue, 25 Oct 2022 15:13:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1447,16 +1517,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e18d200a-51e9-407d-8f95-4b36c4863e93", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102520Z:e18d200a-51e9-407d-8f95-4b36c4863e93", + "x-ms-correlation-request-id": "2cf0f2b0-c82a-46b7-b25a-a9006e3ad80d", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151357Z:2cf0f2b0-c82a-46b7-b25a-a9006e3ad80d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15", - "name": "18edb354-f4c9-4d58-9667-8f50e53f7b15", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", "status": "Creating", - "startTime": "2022-09-19T10:21:47.5813416Z", + "startTime": "2022-10-25T15:10:54.2657286Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1465,13 +1535,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1479,7 +1549,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:25:49 GMT", + "Date": "Tue, 25 Oct 2022 15:14:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1487,17 +1557,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93e42fda-849d-42f8-9fbd-f173c24e090f", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102550Z:93e42fda-849d-42f8-9fbd-f173c24e090f", + "x-ms-correlation-request-id": "0d3d4c18-1d0a-4d50-9633-15414828af1b", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151427Z:0d3d4c18-1d0a-4d50-9633-15414828af1b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", + "status": "Creating", + "startTime": "2022-10-25T15:10:54.2657286Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:14:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "29c5a123-fc08-4075-9b8d-cc9519bfa7c3", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151457Z:29c5a123-fc08-4075-9b8d-cc9519bfa7c3", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", + "status": "Creating", + "startTime": "2022-10-25T15:10:54.2657286Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:15:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f388115e-9008-4bf3-a68f-24df8d764a79", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151528Z:f388115e-9008-4bf3-a68f-24df8d764a79", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/18edb354-f4c9-4d58-9667-8f50e53f7b15", - "name": "18edb354-f4c9-4d58-9667-8f50e53f7b15", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", + "status": "Creating", + "startTime": "2022-10-25T15:10:54.2657286Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:15:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "72f90b62-01a2-40bf-b83e-85e795d75798", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151558Z:72f90b62-01a2-40bf-b83e-85e795d75798", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9126a36e-cf32-4855-87d2-03355d1e014c", + "name": "9126a36e-cf32-4855-87d2-03355d1e014c", "status": "Succeeded", - "startTime": "2022-09-19T10:21:47.5813416Z", - "endTime": "2022-09-19T10:25:46.5305012Z", + "startTime": "2022-10-25T15:10:54.2657286Z", + "endTime": "2022-10-25T15:15:42.9907481Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e" @@ -1511,7 +1701,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1519,8 +1709,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:25:50 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A25%3A46.5252317Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:15:58 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A15%3A42.9671189Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1528,22 +1718,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18b757c3-72be-4acb-8910-66f3a0487e4f", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102551Z:18b757c3-72be-4acb-8910-66f3a0487e4f", + "x-ms-correlation-request-id": "58394745-2907-4e33-9052-84bcd67aed8f", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151559Z:58394745-2907-4e33-9052-84bcd67aed8f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e", "name": "sdk-py-tests-acc-1-8b73262e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8b73262e", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A25%3A46.5252317Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A15%3A42.9671189Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:21:45.5815657Z" + "CreatedOnDate": "2022-10-25T15:10:52.7829052Z" }, "properties": { - "fileSystemId": "274a9962-622d-9125-fd01-f38d97e82a70", + "fileSystemId": "a901f58d-52ed-90ba-04bc-d0141ec75764", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-8b73262e", "usageThreshold": 107374182400, @@ -1571,7 +1761,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_11651750", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5c842a67", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1586,8 +1776,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "274a9962-622d-9125-fd01-f38d97e82a70", - "fileSystemId": "274a9962-622d-9125-fd01-f38d97e82a70", + "mountTargetId": "a901f58d-52ed-90ba-04bc-d0141ec75764", + "fileSystemId": "a901f58d-52ed-90ba-04bc-d0141ec75764", "ipAddress": "10.0.0.4" } ], @@ -1607,10 +1797,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:21:46.6865475Z", + "createdAt": "2022-10-25T15:10:53.9308874Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:21:46.6865475Z" + "lastModifiedAt": "2022-10-25T15:10:53.9308874Z" } } }, @@ -1623,7 +1813,7 @@ "Connection": "keep-alive", "Content-Length": "55", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1633,20 +1823,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cbb3196-7698-4a85-a00e-bafec8a96af6?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2555de63-d867-482f-b4b0-039585c3037f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "540", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:25:51 GMT", + "Date": "Tue, 25 Oct 2022 15:15:59 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cbb3196-7698-4a85-a00e-bafec8a96af6?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2555de63-d867-482f-b4b0-039585c3037f?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "333c505a-17ae-4aa8-ad2a-4e004bb99f62", + "x-ms-correlation-request-id": "c0f67992-2191-4209-8568-cb429d938455", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102552Z:333c505a-17ae-4aa8-ad2a-4e004bb99f62", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151600Z:c0f67992-2191-4209-8568-cb429d938455", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1661,13 +1851,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cbb3196-7698-4a85-a00e-bafec8a96af6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2555de63-d867-482f-b4b0-039585c3037f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1675,7 +1865,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:26:22 GMT", + "Date": "Tue, 25 Oct 2022 15:15:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1683,17 +1873,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da8f9f71-7bbf-4b60-b7ad-3d8cd41ac2e9", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102622Z:da8f9f71-7bbf-4b60-b7ad-3d8cd41ac2e9", + "x-ms-correlation-request-id": "9fb828ae-fd2d-4fa1-898c-1cc0bd1e8faa", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151600Z:9fb828ae-fd2d-4fa1-898c-1cc0bd1e8faa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cbb3196-7698-4a85-a00e-bafec8a96af6", - "name": "7cbb3196-7698-4a85-a00e-bafec8a96af6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2555de63-d867-482f-b4b0-039585c3037f", + "name": "2555de63-d867-482f-b4b0-039585c3037f", + "status": "Creating", + "startTime": "2022-10-25T15:15:59.798728Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e/subvolumes/sdk-py-tests-subvolume-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2555de63-d867-482f-b4b0-039585c3037f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:16:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5950a97b-f651-4ef1-942f-11258fa1de4b", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151630Z:5950a97b-f651-4ef1-942f-11258fa1de4b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2555de63-d867-482f-b4b0-039585c3037f", + "name": "2555de63-d867-482f-b4b0-039585c3037f", "status": "Succeeded", - "startTime": "2022-09-19T10:25:51.9054498Z", - "endTime": "2022-09-19T10:25:52.5773791Z", + "startTime": "2022-10-25T15:15:59.798728Z", + "endTime": "2022-10-25T15:16:00.5331279Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e/subvolumes/sdk-py-tests-subvolume-1" @@ -1707,7 +1937,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1715,7 +1945,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:26:25 GMT", + "Date": "Tue, 25 Oct 2022 15:16:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1723,9 +1953,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2239743d-73a4-4a4a-a4bd-8a3a72acbaa5", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102625Z:2239743d-73a4-4a4a-a4bd-8a3a72acbaa5", + "x-ms-correlation-request-id": "067b02b6-c2be-472a-9f15-4e6ac63db7cb", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151631Z:067b02b6-c2be-472a-9f15-4e6ac63db7cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1746,25 +1976,25 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/62628762-915c-4dea-8f13-82d60c20a759?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd9a4e77-7bf3-4779-9b84-3f3d811854b3?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "459", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:26:25 GMT", + "Date": "Tue, 25 Oct 2022 15:16:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/62628762-915c-4dea-8f13-82d60c20a759?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd9a4e77-7bf3-4779-9b84-3f3d811854b3?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98f004c5-d635-4d09-ac4f-4e77a70ed2e5", + "x-ms-correlation-request-id": "878f5136-ad06-4461-a7ce-37a8ccb51de0", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102626Z:98f004c5-d635-4d09-ac4f-4e77a70ed2e5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151632Z:878f5136-ad06-4461-a7ce-37a8ccb51de0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1774,13 +2004,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/62628762-915c-4dea-8f13-82d60c20a759?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd9a4e77-7bf3-4779-9b84-3f3d811854b3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1788,7 +2018,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:26:55 GMT", + "Date": "Tue, 25 Oct 2022 15:16:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1796,27 +2026,67 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cbbb5829-ae93-4ac8-a3dd-7a63e27e1b37", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102656Z:cbbb5829-ae93-4ac8-a3dd-7a63e27e1b37", + "x-ms-correlation-request-id": "a1af42aa-9880-4e39-bafd-b5669e61dfe1", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151632Z:a1af42aa-9880-4e39-bafd-b5669e61dfe1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/62628762-915c-4dea-8f13-82d60c20a759", - "name": "62628762-915c-4dea-8f13-82d60c20a759", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd9a4e77-7bf3-4779-9b84-3f3d811854b3", + "name": "fd9a4e77-7bf3-4779-9b84-3f3d811854b3", + "status": "GetMetadata", + "startTime": "2022-10-25T15:16:32.0627303Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e/subvolumes/sdk-py-tests-subvolume-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd9a4e77-7bf3-4779-9b84-3f3d811854b3?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:17:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0b62dd60-ff3b-4767-b1ff-01a77972d991", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151702Z:0b62dd60-ff3b-4767-b1ff-01a77972d991", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd9a4e77-7bf3-4779-9b84-3f3d811854b3", + "name": "fd9a4e77-7bf3-4779-9b84-3f3d811854b3", "status": "Succeeded", - "startTime": "2022-09-19T10:26:26.0143239Z", - "endTime": "2022-09-19T10:26:28.1570189Z", + "startTime": "2022-10-25T15:16:32.0627303Z", + "endTime": "2022-10-25T15:16:32.3752634Z", "percentComplete": 100.0, "properties": { "path": "/sub_vol_1.txt", "size": 123, "bytesUsed": 0, "permissions": "644", - "creationTimeStamp": "2022-09-19T10:25:52Z", - "accessedTimeStamp": "2022-09-19T10:25:52Z", - "modifiedTimeStamp": "2022-09-19T10:25:52Z", - "changedTimeStamp": "2022-09-19T10:25:52Z", + "creationTimeStamp": "2022-10-25T15:16:00Z", + "accessedTimeStamp": "2022-10-25T15:16:00Z", + "modifiedTimeStamp": "2022-10-25T15:16:00Z", + "changedTimeStamp": "2022-10-25T15:16:00Z", "provisioningState": "Succeeded" } } @@ -1829,36 +2099,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/764dabaf-b1aa-4fa5-86a8-8659097e5788?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94c91b89-249d-47d4-a08c-835bc3b97463?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:26:56 GMT", + "Date": "Tue, 25 Oct 2022 15:17:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/764dabaf-b1aa-4fa5-86a8-8659097e5788?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94c91b89-249d-47d4-a08c-835bc3b97463?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25522800-5c92-4493-bac2-a80c04f9ffd4", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102657Z:25522800-5c92-4493-bac2-a80c04f9ffd4", + "x-ms-correlation-request-id": "6c4897ac-ea17-49b7-8fbe-5f6d0bc43388", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151703Z:6c4897ac-ea17-49b7-8fbe-5f6d0bc43388", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/764dabaf-b1aa-4fa5-86a8-8659097e5788?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94c91b89-249d-47d4-a08c-835bc3b97463?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1866,7 +2136,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:27:26 GMT", + "Date": "Tue, 25 Oct 2022 15:17:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1874,17 +2144,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffb6cd37-e332-424c-931f-0a77ba2212e5", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102727Z:ffb6cd37-e332-424c-931f-0a77ba2212e5", + "x-ms-correlation-request-id": "198e4442-6769-46a7-8a49-38754e68af47", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151703Z:198e4442-6769-46a7-8a49-38754e68af47", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94c91b89-249d-47d4-a08c-835bc3b97463", + "name": "94c91b89-249d-47d4-a08c-835bc3b97463", + "status": "Deleting", + "startTime": "2022-10-25T15:17:03.1177015Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e/subvolumes/sdk-py-tests-subvolume-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94c91b89-249d-47d4-a08c-835bc3b97463?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:17:33 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5c23d08b-9fa1-4f69-a196-4a5a025ebd84", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151733Z:5c23d08b-9fa1-4f69-a196-4a5a025ebd84", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/764dabaf-b1aa-4fa5-86a8-8659097e5788", - "name": "764dabaf-b1aa-4fa5-86a8-8659097e5788", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/94c91b89-249d-47d4-a08c-835bc3b97463", + "name": "94c91b89-249d-47d4-a08c-835bc3b97463", "status": "Succeeded", - "startTime": "2022-09-19T10:26:56.8559348Z", - "endTime": "2022-09-19T10:26:58.1059169Z", + "startTime": "2022-10-25T15:17:03.1177015Z", + "endTime": "2022-10-25T15:17:04.576991Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e/subvolumes/sdk-py-tests-subvolume-1" @@ -1899,36 +2209,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5790bba-e979-4fc3-a8cf-529bfcc4981b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:27:27 GMT", + "Date": "Tue, 25 Oct 2022 15:17:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5790bba-e979-4fc3-a8cf-529bfcc4981b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17b70cdf-cb15-4e41-836b-a63b9d7a99a7", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102727Z:17b70cdf-cb15-4e41-836b-a63b9d7a99a7", + "x-ms-correlation-request-id": "a2ea7ac0-163f-4ae2-9397-e524084a2261", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151734Z:a2ea7ac0-163f-4ae2-9397-e524084a2261", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5790bba-e979-4fc3-a8cf-529bfcc4981b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1936,7 +2246,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:27:57 GMT", + "Date": "Tue, 25 Oct 2022 15:17:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1944,16 +2254,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ab8199d-f7cb-4a48-bbe7-6a5ce77818e4", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102758Z:6ab8199d-f7cb-4a48-bbe7-6a5ce77818e4", + "x-ms-correlation-request-id": "33909199-c935-4239-89eb-199f69fbac7d", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151734Z:33909199-c935-4239-89eb-199f69fbac7d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5790bba-e979-4fc3-a8cf-529bfcc4981b", - "name": "d5790bba-e979-4fc3-a8cf-529bfcc4981b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942", + "name": "5f8364b3-3690-4f1a-873c-d6205c515942", "status": "Deleting", - "startTime": "2022-09-19T10:27:27.8580337Z", + "startTime": "2022-10-25T15:17:34.4044228Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1962,13 +2272,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5790bba-e979-4fc3-a8cf-529bfcc4981b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1976,7 +2286,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:28:27 GMT", + "Date": "Tue, 25 Oct 2022 15:18:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1984,17 +2294,177 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08117b97-f816-4613-aa6e-0b655742b522", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102828Z:08117b97-f816-4613-aa6e-0b655742b522", + "x-ms-correlation-request-id": "bcf66a79-121d-4b11-9e8a-c558eff7af54", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151805Z:bcf66a79-121d-4b11-9e8a-c558eff7af54", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5790bba-e979-4fc3-a8cf-529bfcc4981b", - "name": "d5790bba-e979-4fc3-a8cf-529bfcc4981b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942", + "name": "5f8364b3-3690-4f1a-873c-d6205c515942", + "status": "Deleting", + "startTime": "2022-10-25T15:17:34.4044228Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:18:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cd92f50d-8066-4197-8dd4-5dd804e22117", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151835Z:cd92f50d-8066-4197-8dd4-5dd804e22117", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942", + "name": "5f8364b3-3690-4f1a-873c-d6205c515942", + "status": "Deleting", + "startTime": "2022-10-25T15:17:34.4044228Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:19:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1dc73d6c-1c6d-4fbb-907d-4a26c3e02097", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151905Z:1dc73d6c-1c6d-4fbb-907d-4a26c3e02097", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942", + "name": "5f8364b3-3690-4f1a-873c-d6205c515942", + "status": "Deleting", + "startTime": "2022-10-25T15:17:34.4044228Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:19:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "11a25403-2012-4aaf-848b-e575494fb60d", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151958Z:11a25403-2012-4aaf-848b-e575494fb60d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942", + "name": "5f8364b3-3690-4f1a-873c-d6205c515942", + "status": "Deleting", + "startTime": "2022-10-25T15:17:34.4044228Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:20:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1cfa7861-b1f2-4e9b-9739-00554066c161", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152029Z:1cfa7861-b1f2-4e9b-9739-00554066c161", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942", + "name": "5f8364b3-3690-4f1a-873c-d6205c515942", "status": "Succeeded", - "startTime": "2022-09-19T10:27:27.8580337Z", - "endTime": "2022-09-19T10:28:26.2663227Z", + "startTime": "2022-10-25T15:17:34.4044228Z", + "endTime": "2022-10-25T15:20:18.2662906Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e" @@ -2002,13 +2472,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d5790bba-e979-4fc3-a8cf-529bfcc4981b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f8364b3-3690-4f1a-873c-d6205c515942?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2016,7 +2486,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:28:28 GMT", + "Date": "Tue, 25 Oct 2022 15:20:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2024,22 +2494,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c38f1f6e-ef1b-4b2e-8fe8-a677b5e1ace8", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T102828Z:c38f1f6e-ef1b-4b2e-8fe8-a677b5e1ace8", + "x-ms-correlation-request-id": "44f768db-c0b6-4f02-ad45-45f47bc1c9af", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152029Z:44f768db-c0b6-4f02-ad45-45f47bc1c9af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e", "name": "sdk-py-tests-acc-1-8b73262e/sdk-py-tests-pool-1/sdk-py-tests-vol-3-8b73262e", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A28%3A21.3568577Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A20%3A08.7839645Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:21:45.5815657Z" + "CreatedOnDate": "2022-10-25T15:10:52.7829052Z" }, "properties": { - "fileSystemId": "274a9962-622d-9125-fd01-f38d97e82a70", + "fileSystemId": "a901f58d-52ed-90ba-04bc-d0141ec75764", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-8b73262e", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2070,19 +2540,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_11651750", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5c842a67", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-8b73262e", - "poolId": "cebcdbbe-a4ea-436e-0864-b33d412fc3f1", + "poolId": "8b2fdfc0-2924-34ba-d154-5e1662e9d08b", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "274a9962-622d-9125-fd01-f38d97e82a70", - "fileSystemId": "274a9962-622d-9125-fd01-f38d97e82a70", + "mountTargetId": "a901f58d-52ed-90ba-04bc-d0141ec75764", + "fileSystemId": "a901f58d-52ed-90ba-04bc-d0141ec75764", "startIp": "", "endIp": "", "gateway": "", @@ -2114,10 +2584,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:21:46.6865475Z", + "createdAt": "2022-10-25T15:10:53.9308874Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:21:46.6865475Z" + "lastModifiedAt": "2022-10-25T15:10:53.9308874Z" } } }, @@ -2128,7 +2598,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2136,14 +2606,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:31:49 GMT", + "Date": "Tue, 25 Oct 2022 15:23:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0e8c283-78a8-40bd-8b50-514418377681", + "x-ms-correlation-request-id": "58aca734-8d04-4f4b-bff0-d5f666f67467", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103150Z:e0e8c283-78a8-40bd-8b50-514418377681" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152352Z:58aca734-8d04-4f4b-bff0-d5f666f67467" }, "ResponseBody": { "error": { @@ -2160,36 +2630,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de1cdeb-789e-4565-82b1-c5ce32bf452c?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5609d42b-d82d-4578-a3cf-4a25a39a9ed9?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:32:02 GMT", + "Date": "Tue, 25 Oct 2022 15:24:05 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de1cdeb-789e-4565-82b1-c5ce32bf452c?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5609d42b-d82d-4578-a3cf-4a25a39a9ed9?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36651bd6-5668-4933-9fd4-293015699c11", + "x-ms-correlation-request-id": "44f2a4e5-fb43-453a-8054-29c53936f4d2", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103203Z:36651bd6-5668-4933-9fd4-293015699c11", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152405Z:44f2a4e5-fb43-453a-8054-29c53936f4d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de1cdeb-789e-4565-82b1-c5ce32bf452c?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5609d42b-d82d-4578-a3cf-4a25a39a9ed9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2197,7 +2667,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:32:32 GMT", + "Date": "Tue, 25 Oct 2022 15:24:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2205,17 +2675,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32e564ce-d2a0-4fc3-a7b6-ab2c63cebff9", + "x-ms-correlation-request-id": "edff4712-af95-485a-a5d8-c8b0f156864f", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103233Z:32e564ce-d2a0-4fc3-a7b6-ab2c63cebff9", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152405Z:edff4712-af95-485a-a5d8-c8b0f156864f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de1cdeb-789e-4565-82b1-c5ce32bf452c", - "name": "5de1cdeb-789e-4565-82b1-c5ce32bf452c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5609d42b-d82d-4578-a3cf-4a25a39a9ed9", + "name": "5609d42b-d82d-4578-a3cf-4a25a39a9ed9", + "status": "Deleting", + "startTime": "2022-10-25T15:24:05.1546036Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5609d42b-d82d-4578-a3cf-4a25a39a9ed9?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:24:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6940b2d9-db84-407f-a5da-7b3f7b25a3c3", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152435Z:6940b2d9-db84-407f-a5da-7b3f7b25a3c3", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5609d42b-d82d-4578-a3cf-4a25a39a9ed9", + "name": "5609d42b-d82d-4578-a3cf-4a25a39a9ed9", "status": "Succeeded", - "startTime": "2022-09-19T10:32:02.9837653Z", - "endTime": "2022-09-19T10:32:03.9524901Z", + "startTime": "2022-10-25T15:24:05.1546036Z", + "endTime": "2022-10-25T15:24:06.3504651Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1" @@ -2223,13 +2733,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5de1cdeb-789e-4565-82b1-c5ce32bf452c?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5609d42b-d82d-4578-a3cf-4a25a39a9ed9?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2237,7 +2747,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:32:33 GMT", + "Date": "Tue, 25 Oct 2022 15:24:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2245,22 +2755,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f01d70e6-e998-4a76-baec-8e6c0e054036", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103233Z:f01d70e6-e998-4a76-baec-8e6c0e054036", + "x-ms-correlation-request-id": "afc0536e-a3db-49af-8346-030a289a52af", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152436Z:afc0536e-a3db-49af-8346-030a289a52af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-8b73262e/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A32%3A02.9870538Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A24%3A05.1115736Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:21:12.6085604Z" + "CreatedOnDate": "2022-10-25T15:10:49.5203969Z" }, "properties": { - "poolId": "cebcdbbe-a4ea-436e-0864-b33d412fc3f1", + "poolId": "8b2fdfc0-2924-34ba-d154-5e1662e9d08b", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e/capacityPools/sdk-py-tests-pool-1", @@ -2274,10 +2784,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:21:13.5961953Z", + "createdAt": "2022-10-25T15:10:50.6462358Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:21:13.5961953Z" + "lastModifiedAt": "2022-10-25T15:10:50.6462358Z" } } }, @@ -2289,20 +2799,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:32:43 GMT", + "Date": "Tue, 25 Oct 2022 15:24:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a892696b-1ca6-4eb3-91e0-9e93078a9ba7", + "x-ms-correlation-request-id": "deab8d16-fd35-4cef-beb7-853c1c7db753", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103243Z:a892696b-1ca6-4eb3-91e0-9e93078a9ba7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152446Z:deab8d16-fd35-4cef-beb7-853c1c7db753" }, "ResponseBody": null }, @@ -2314,20 +2824,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:32:53 GMT", + "Date": "Tue, 25 Oct 2022 15:24:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca0c6cc8-732a-4194-8058-38a85d24edcc", + "x-ms-correlation-request-id": "8b732e36-622a-4cff-a043-b4f72ab5e665", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103254Z:ca0c6cc8-732a-4194-8058-38a85d24edcc" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152456Z:8b732e36-622a-4cff-a043-b4f72ab5e665" }, "ResponseBody": null }, @@ -2339,20 +2849,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:33:03 GMT", + "Date": "Tue, 25 Oct 2022 15:25:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "645ec21c-ae03-4c5a-9e80-688ab5ad14b0", + "x-ms-correlation-request-id": "bc62c5df-8ed0-450c-9fe9-98ef907612eb", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103304Z:645ec21c-ae03-4c5a-9e80-688ab5ad14b0" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152506Z:bc62c5df-8ed0-450c-9fe9-98ef907612eb" }, "ResponseBody": null }, @@ -2364,20 +2874,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:33:13 GMT", + "Date": "Tue, 25 Oct 2022 15:25:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a53bdbf0-4f35-4640-90ae-dbe93349a748", + "x-ms-correlation-request-id": "4d71aa79-c27d-42d4-892f-f804763d5ee5", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103314Z:a53bdbf0-4f35-4640-90ae-dbe93349a748" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152517Z:4d71aa79-c27d-42d4-892f-f804763d5ee5" }, "ResponseBody": null }, @@ -2388,7 +2898,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2396,14 +2906,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:33:24 GMT", + "Date": "Tue, 25 Oct 2022 15:25:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6dbbd652-f191-4c37-83c3-9bffacd07b37", + "x-ms-correlation-request-id": "3307fcd3-e744-4451-8a73-847550433945", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103325Z:6dbbd652-f191-4c37-83c3-9bffacd07b37" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152527Z:3307fcd3-e744-4451-8a73-847550433945" }, "ResponseBody": { "error": { @@ -2420,36 +2930,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/60acb790-f636-4004-be68-13f9b1b19eb4?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc882a69-27a1-4029-a391-c1bc42638409?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:33:26 GMT", + "Date": "Tue, 25 Oct 2022 15:25:28 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/60acb790-f636-4004-be68-13f9b1b19eb4?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc882a69-27a1-4029-a391-c1bc42638409?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d64c8dd-f657-4d46-a159-a5d04ec4e289", + "x-ms-correlation-request-id": "639cc5f1-8000-41e8-a7ac-5eea3ea1a0d2", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103326Z:0d64c8dd-f657-4d46-a159-a5d04ec4e289", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152528Z:639cc5f1-8000-41e8-a7ac-5eea3ea1a0d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/60acb790-f636-4004-be68-13f9b1b19eb4?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc882a69-27a1-4029-a391-c1bc42638409?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2457,7 +2967,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:33:56 GMT", + "Date": "Tue, 25 Oct 2022 15:25:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2465,17 +2975,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df2873c9-fed0-47df-99be-73961f40cbb9", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103356Z:df2873c9-fed0-47df-99be-73961f40cbb9", + "x-ms-correlation-request-id": "9616d741-c9f2-4fae-8fd4-5fd918d114ae", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152529Z:9616d741-c9f2-4fae-8fd4-5fd918d114ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/60acb790-f636-4004-be68-13f9b1b19eb4", - "name": "60acb790-f636-4004-be68-13f9b1b19eb4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc882a69-27a1-4029-a391-c1bc42638409", + "name": "fc882a69-27a1-4029-a391-c1bc42638409", "status": "Succeeded", - "startTime": "2022-09-19T10:33:26.3050927Z", - "endTime": "2022-09-19T10:33:26.352043Z", + "startTime": "2022-10-25T15:25:28.8463894Z", + "endTime": "2022-10-25T15:25:28.9401522Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e" @@ -2483,13 +2993,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/60acb790-f636-4004-be68-13f9b1b19eb4?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc882a69-27a1-4029-a391-c1bc42638409?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2497,7 +3007,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:33:56 GMT", + "Date": "Tue, 25 Oct 2022 15:25:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2505,19 +3015,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e6f5243-0b01-4058-97c8-c06fe6317d1a", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103356Z:8e6f5243-0b01-4058-97c8-c06fe6317d1a", + "x-ms-correlation-request-id": "3f54d2b4-8dce-4b3f-90e4-61342e34ea86", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152529Z:3f54d2b4-8dce-4b3f-90e4-61342e34ea86", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e", "name": "sdk-py-tests-acc-1-8b73262e", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A33%3A26.312157Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A25%3A28.8509184Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:20:38.1479126Z" + "CreatedOnDate": "2022-10-25T15:10:46.3057544Z" }, "properties": { "encryption": { @@ -2528,10 +3038,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:20:39.3718998Z", + "createdAt": "2022-10-25T15:10:47.3010993Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:20:39.3718998Z" + "lastModifiedAt": "2022-10-25T15:10:47.3010993Z" } } }, @@ -2542,50 +3052,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:33:56 GMT", + "Date": "Tue, 25 Oct 2022 15:25:29 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39f23ecd-7acf-4e5a-bc72-42e0b7ef8a1d", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103357Z:39f23ecd-7acf-4e5a-bc72-42e0b7ef8a1d" + "x-ms-correlation-request-id": "e8470047-191d-41f7-8002-90dba5c74627", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152529Z:e8470047-191d-41f7-8002-90dba5c74627", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-8b73262e\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-8b73262e?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1de03b24-da5b-4dfe-b519-6b8e28400857?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/23a3e70f-336a-4066-b64c-3cb3efbdde1f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:33:57 GMT", + "Date": "Tue, 25 Oct 2022 15:25:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/1de03b24-da5b-4dfe-b519-6b8e28400857?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/23a3e70f-336a-4066-b64c-3cb3efbdde1f?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -2594,10 +3106,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "94ec981b-9c48-4571-9c6d-6829c7115a32", - "x-ms-correlation-request-id": "77404b70-36c6-48fc-9551-1c19055026fd", + "x-ms-arm-service-request-id": "8ff175f0-a779-4a8d-bedc-13676b9a6f42", + "x-ms-correlation-request-id": "9414c4a6-4976-4038-b6a3-1359c0e519b7", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T103358Z:77404b70-36c6-48fc-9551-1c19055026fd" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T152531Z:9414c4a6-4976-4038-b6a3-1359c0e519b7" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_list_by_volume.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_list_by_volume.json index 64101790d4f5..6b0fb94419d0 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_list_by_volume.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_subvolume.pyTestNetAppSubvolumetest_list_by_volume.json @@ -1,5 +1,38 @@ { "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/26ce3cdd-e016-4418-9493-724100370048?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/26ce3cdd-e016-4418-9493-724100370048?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:56:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/26ce3cdd-e016-4418-9493-724100370048?api-version=2022-05-01", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "fd382550-1ffa-41ae-9950-b293313ef3ad", + "x-ms-correlation-request-id": "7afa1239-02be-402a-87f1-e32b40441e1c", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145610Z:927f3b80-8fa0-4f7d-b8a7-de5f49198b05" + }, + "ResponseBody": null + }, { "RequestUri": "https://login.microsoftonline.com/00000000-0000-0000-0000-000000000000/v2.0/.well-known/openid-configuration", "RequestMethod": "GET", @@ -7,7 +40,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +50,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:41 GMT", + "Date": "Tue, 25 Oct 2022 14:56:10 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +134,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +144,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:41 GMT", + "Date": "Tue, 25 Oct 2022 14:56:10 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +205,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "c32fb2c8-62d4-4ba6-98fa-277bec32c80a", + "client-request-id": "e5328e1a-0b83-4d40-bb49-f0cbc38c280b", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "c32fb2c8-62d4-4ba6-98fa-277bec32c80a", + "client-request-id": "e5328e1a-0b83-4d40-bb49-f0cbc38c280b", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:41 GMT", + "Date": "Tue, 25 Oct 2022 14:56:10 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +234,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +246,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +254,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +269,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ed6384a6-6dc3-4b1b-b336-bac4820f1a98?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6cdd5c62-5fc4-4b75-b3ba-449ad2b5ad6d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:46 GMT", + "Date": "Tue, 25 Oct 2022 14:56:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +283,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "94878cd5-bc5c-4439-b0f7-0d397b86fb44", - "x-ms-correlation-request-id": "3eeefcfe-967d-490b-ab93-4d319070859e", + "x-ms-arm-service-request-id": "9cf41df5-867b-4cb9-a5b7-570d916984ca", + "x-ms-correlation-request-id": "7cb655ab-d82c-4dd4-b90b-12201f7ea74d", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100547Z:3eeefcfe-967d-490b-ab93-4d319070859e" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145616Z:7cb655ab-d82c-4dd4-b90b-12201f7ea74d" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-dde5273b", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b", - "etag": "W/\u0022dc4fc541-6d8c-40a0-bd54-be333698e6eb\u0022", + "etag": "W/\u0022f7cf9db3-0933-4912-a899-8778faa18420\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:05:43.4214839Z" + "CreatedOnDate": "2022-10-25T14:56:12.0521050Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "3786a0c5-4172-4522-9a39-7d67b501472b", + "resourceGuid": "934072e3-b0e4-425b-be2b-ec9af89168c3", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +312,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ed6384a6-6dc3-4b1b-b336-bac4820f1a98?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6cdd5c62-5fc4-4b75-b3ba-449ad2b5ad6d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,9 +326,10 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:50 GMT", + "Date": "Tue, 25 Oct 2022 14:56:16 GMT", "Expires": "-1", "Pragma": "no-cache", + "Retry-After": "10", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -304,23 +338,58 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "29eb2b30-067b-4272-ab60-c2204021e30b", - "x-ms-correlation-request-id": "a6577a01-c66e-4ed1-9fe0-d6d9b0a4edda", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100551Z:a6577a01-c66e-4ed1-9fe0-d6d9b0a4edda" + "x-ms-arm-service-request-id": "7ddc13fa-1c53-45db-9877-3d35415f6381", + "x-ms-correlation-request-id": "207739d1-319e-4c29-84d7-11a938089222", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145616Z:207739d1-319e-4c29-84d7-11a938089222" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6cdd5c62-5fc4-4b75-b3ba-449ad2b5ad6d?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 14:56:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "400bc67a-480d-48a5-9cad-440f66e07dbb", + "x-ms-correlation-request-id": "a241342d-6f76-42a5-bc3d-131ba4d1b03d", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145627Z:a241342d-6f76-42a5-bc3d-131ba4d1b03d" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +397,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:51 GMT", - "ETag": "W/\u0022f3d8d217-1f1c-4c3e-a344-b81c8c10cf1b\u0022", + "Date": "Tue, 25 Oct 2022 14:56:26 GMT", + "ETag": "W/\u0022a13eb31f-40d1-4223-a4ce-87271bc60788\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +409,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "ddf135a3-1901-40af-ae57-4928192209ed", - "x-ms-correlation-request-id": "d271088e-d95c-4735-9cee-3fb53d3e3c47", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100552Z:d271088e-d95c-4735-9cee-3fb53d3e3c47" + "x-ms-arm-service-request-id": "ae9ceb63-6de5-4289-b96f-da52549c5cd3", + "x-ms-correlation-request-id": "75f22420-029b-430f-a0a0-16a9ee4f7e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145627Z:75f22420-029b-430f-a0a0-16a9ee4f7e9b" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-dde5273b", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b", - "etag": "W/\u0022f3d8d217-1f1c-4c3e-a344-b81c8c10cf1b\u0022", + "etag": "W/\u0022a13eb31f-40d1-4223-a4ce-87271bc60788\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:05:43.4214839Z" + "CreatedOnDate": "2022-10-25T14:56:12.0521050Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "3786a0c5-4172-4522-9a39-7d67b501472b", + "resourceGuid": "934072e3-b0e4-425b-be2b-ec9af89168c3", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +438,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +446,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +463,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ea7f06ca-eac3-40ff-861c-c238c2934dc5?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8c0fe9f8-3140-4fe4-b008-7467547cfff9?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:52 GMT", + "Date": "Tue, 25 Oct 2022 14:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +478,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a3926c98-c026-4758-b417-4737c59cee02", - "x-ms-correlation-request-id": "5ac5dc57-2cf2-4d1e-9d24-3cea2f9512ca", + "x-ms-arm-service-request-id": "0dd8ab99-908b-442a-8b2b-0002d28aea8b", + "x-ms-correlation-request-id": "75033014-5023-4ae9-9cf7-f3523f36107d", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100553Z:5ac5dc57-2cf2-4d1e-9d24-3cea2f9512ca" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145628Z:75033014-5023-4ae9-9cf7-f3523f36107d" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default", - "etag": "W/\u00222db5835d-47c8-4080-bfea-6b2cea890601\u0022", + "etag": "W/\u002239e76043-1cf3-4595-a267-92fb26003e64\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +494,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00222db5835d-47c8-4080-bfea-6b2cea890601\u0022", + "etag": "W/\u002239e76043-1cf3-4595-a267-92fb26003e64\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +514,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ea7f06ca-eac3-40ff-861c-c238c2934dc5?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8c0fe9f8-3140-4fe4-b008-7467547cfff9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +528,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:55 GMT", + "Date": "Tue, 25 Oct 2022 14:56:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +539,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "892da5d6-6721-4b1f-8396-793d3ef222a1", - "x-ms-correlation-request-id": "40e18b37-f077-4bca-b56f-ce86c72baba4", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100556Z:40e18b37-f077-4bca-b56f-ce86c72baba4" + "x-ms-arm-service-request-id": "c1f7b152-7c49-4548-959e-f1e26bb29fcb", + "x-ms-correlation-request-id": "d4879ad9-bf9c-45cf-8e79-5e0c8e42454a", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145628Z:d4879ad9-bf9c-45cf-8e79-5e0c8e42454a" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +563,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:55 GMT", - "ETag": "W/\u0022d25dcf96-4a3d-4223-8c90-435e9c6e9bbb\u0022", + "Date": "Tue, 25 Oct 2022 14:56:27 GMT", + "ETag": "W/\u0022454de5c6-5110-45c0-ad57-765e25cc000e\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +575,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a6dc713c-2db7-4644-9f81-c9fdb8b507e4", - "x-ms-correlation-request-id": "cd1b31ed-59ed-4b58-b155-587ac29b60ed", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100556Z:cd1b31ed-59ed-4b58-b155-587ac29b60ed" + "x-ms-arm-service-request-id": "7c2172b7-bf41-4171-a706-9de57f508667", + "x-ms-correlation-request-id": "c5289450-5e77-4c2f-b15f-fd0eec65a702", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145628Z:c5289450-5e77-4c2f-b15f-fd0eec65a702" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default", - "etag": "W/\u0022d25dcf96-4a3d-4223-8c90-435e9c6e9bbb\u0022", + "etag": "W/\u0022454de5c6-5110-45c0-ad57-765e25cc000e\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +591,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022d25dcf96-4a3d-4223-8c90-435e9c6e9bbb\u0022", + "etag": "W/\u0022454de5c6-5110-45c0-ad57-765e25cc000e\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +617,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +627,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:56 GMT", + "Date": "Tue, 25 Oct 2022 14:56:28 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +711,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +721,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:56 GMT", + "Date": "Tue, 25 Oct 2022 14:56:28 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +782,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "9fbb7a09-8000-4829-9621-3fb76a63f24e", + "client-request-id": "717550cc-c596-4566-ae50-17a904c6ae21", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "9fbb7a09-8000-4829-9621-3fb76a63f24e", + "client-request-id": "717550cc-c596-4566-ae50-17a904c6ae21", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:05:56 GMT", + "Date": "Tue, 25 Oct 2022 14:56:28 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +811,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +831,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f846a309-2f00-4321-9848-391bc1277b4d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2dbf3892-25ec-4e26-92d1-560c52553b8e?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "706", + "Content-Length": "704", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:06:00 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A05%3A59.7026703Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:56:32 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A31.6549936Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef1c445a-24f9-46e9-848d-b8fc2d29619e", + "x-ms-correlation-request-id": "254a06b9-881e-4777-afd0-a3b57bf6cbcf", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100601Z:ef1c445a-24f9-46e9-848d-b8fc2d29619e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145633Z:254a06b9-881e-4777-afd0-a3b57bf6cbcf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b", "name": "sdk-py-tests-acc-1-dde5273b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A05%3A59.7026703Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A31.6549936Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:05:57.8760592Z" + "CreatedOnDate": "2022-10-25T14:56:30.3219951Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +869,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:05:58.8384707Z", + "createdAt": "2022-10-25T14:56:31.466292Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:05:58.8384707Z" + "lastModifiedAt": "2022-10-25T14:56:31.466292Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f846a309-2f00-4321-9848-391bc1277b4d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2dbf3892-25ec-4e26-92d1-560c52553b8e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +891,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:06:31 GMT", + "Date": "Tue, 25 Oct 2022 14:56:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +899,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca8ed2bd-82b9-4e54-949f-5327889bd5e2", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100631Z:ca8ed2bd-82b9-4e54-949f-5327889bd5e2", + "x-ms-correlation-request-id": "1b627557-913b-471e-8d26-42dbb2a53a62", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145633Z:1b627557-913b-471e-8d26-42dbb2a53a62", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f846a309-2f00-4321-9848-391bc1277b4d", - "name": "f846a309-2f00-4321-9848-391bc1277b4d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2dbf3892-25ec-4e26-92d1-560c52553b8e", + "name": "2dbf3892-25ec-4e26-92d1-560c52553b8e", "status": "Succeeded", - "startTime": "2022-09-19T10:05:59.7009583Z", - "endTime": "2022-09-19T10:05:59.7478363Z", + "startTime": "2022-10-25T14:56:31.6507283Z", + "endTime": "2022-10-25T14:56:31.6976893Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b" @@ -853,7 +923,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +931,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:06:31 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A05%3A59.7550323Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:56:32 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A31.7016959Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +940,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee80df0d-dbf1-4723-947d-8ed773dd0097", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100631Z:ee80df0d-dbf1-4723-947d-8ed773dd0097", + "x-ms-correlation-request-id": "b7eac7b1-36c6-4182-b3f2-05a3b13c2050", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145633Z:b7eac7b1-36c6-4182-b3f2-05a3b13c2050", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b", "name": "sdk-py-tests-acc-1-dde5273b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A05%3A59.7550323Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A31.7016959Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:05:57.8760592Z" + "CreatedOnDate": "2022-10-25T14:56:30.3219951Z" }, "properties": { "activeDirectories": [ @@ -911,10 +981,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:05:58.8384707Z", + "createdAt": "2022-10-25T14:56:31.466292Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:05:58.8384707Z" + "lastModifiedAt": "2022-10-25T14:56:31.466292Z" } } }, @@ -927,7 +997,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +1010,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a08c0ff6-c4b4-4702-b595-994c9ab31ca8?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63da49d7-ec83-4b6e-9765-ca249e5067a4?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:06:34 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A06%3A33.3232623Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:56:36 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A35.2549758Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af3a7ce5-7e7f-4cee-9d73-9403dd874553", + "x-ms-correlation-request-id": "5b6881af-3b91-40fb-85db-3bf1d998a85e", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100634Z:af3a7ce5-7e7f-4cee-9d73-9403dd874553", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145636Z:5b6881af-3b91-40fb-85db-3bf1d998a85e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A06%3A33.3232623Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A35.2549758Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:06:32.1481242Z" + "CreatedOnDate": "2022-10-25T14:56:33.9736543Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +1047,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:06:33.1044915Z", + "createdAt": "2022-10-25T14:56:34.9844291Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:06:33.1044915Z" + "lastModifiedAt": "2022-10-25T14:56:34.9844291Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a08c0ff6-c4b4-4702-b595-994c9ab31ca8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63da49d7-ec83-4b6e-9765-ca249e5067a4?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1069,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:07:04 GMT", + "Date": "Tue, 25 Oct 2022 14:56:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1077,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1c810ca-a10b-436c-bb3e-acdaeb1a59f0", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100704Z:d1c810ca-a10b-436c-bb3e-acdaeb1a59f0", + "x-ms-correlation-request-id": "1a35a476-2c62-40bf-8208-045f6af47efc", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145636Z:1a35a476-2c62-40bf-8208-045f6af47efc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a08c0ff6-c4b4-4702-b595-994c9ab31ca8", - "name": "a08c0ff6-c4b4-4702-b595-994c9ab31ca8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63da49d7-ec83-4b6e-9765-ca249e5067a4", + "name": "63da49d7-ec83-4b6e-9765-ca249e5067a4", "status": "Succeeded", - "startTime": "2022-09-19T10:06:33.3156139Z", - "endTime": "2022-09-19T10:06:34.2844803Z", + "startTime": "2022-10-25T14:56:35.25353Z", + "endTime": "2022-10-25T14:56:36.1660058Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1101,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1109,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:07:04 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A06%3A34.2823883Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:56:36 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A36.158154Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1118,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc5f41f6-5358-4a28-b3ef-950dddebf2d1", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100704Z:dc5f41f6-5358-4a28-b3ef-950dddebf2d1", + "x-ms-correlation-request-id": "c1c17fe7-bee3-4618-8d32-a608e01d919c", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145636Z:c1c17fe7-bee3-4618-8d32-a608e01d919c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A06%3A34.2823883Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A36.158154Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:06:32.1481242Z" + "CreatedOnDate": "2022-10-25T14:56:33.9736543Z" }, "properties": { - "poolId": "9173cdb3-896d-8c5e-843e-80dcd87e37bd", + "poolId": "b1a52f96-c4ba-854e-a134-69104c41cb77", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1146,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:06:33.1044915Z", + "createdAt": "2022-10-25T14:56:34.9844291Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:06:33.1044915Z" + "lastModifiedAt": "2022-10-25T14:56:34.9844291Z" } } }, @@ -1092,7 +1162,7 @@ "Connection": "keep-alive", "Content-Length": "814", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1123,30 +1193,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1614", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:07:07 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A07%3A07.2436852Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 14:56:39 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A38.6630658Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e15b58b-2509-4462-94b1-210c9bd7149f", + "x-ms-correlation-request-id": "11f6ebae-4ac1-4b8c-ab5a-74a1d176bea2", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100708Z:4e15b58b-2509-4462-94b1-210c9bd7149f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145639Z:11f6ebae-4ac1-4b8c-ab5a-74a1d176bea2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b", "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-dde5273b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A07%3A07.2436852Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T14%3A56%3A38.6630658Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:07:05.2325426Z" + "CreatedOnDate": "2022-10-25T14:56:37.0965324Z" }, "properties": { "serviceLevel": "Premium", @@ -1177,21 +1247,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:07:06.3395622Z", + "createdAt": "2022-10-25T14:56:38.3780839Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:07:06.3395622Z" + "lastModifiedAt": "2022-10-25T14:56:38.3780839Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1199,7 +1269,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:07:37 GMT", + "Date": "Tue, 25 Oct 2022 14:56:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1207,16 +1277,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "205802dd-dd1b-4869-a04e-16b57929ac20", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100738Z:205802dd-dd1b-4869-a04e-16b57929ac20", + "x-ms-correlation-request-id": "e88fe087-3e7c-428f-93d3-a03213fcf759", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145640Z:e88fe087-3e7c-428f-93d3-a03213fcf759", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7", - "name": "cc2a1bda-1e94-4a6c-a066-650927921ad7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "name": "9f93a048-10b8-4ec4-a421-88e27c19d6ae", "status": "Creating", - "startTime": "2022-09-19T10:07:07.2383268Z", + "startTime": "2022-10-25T14:56:38.6702438Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1225,13 +1295,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1239,7 +1309,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:08:08 GMT", + "Date": "Tue, 25 Oct 2022 14:57:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1247,16 +1317,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60146bce-d997-4558-8010-e6c5109bb423", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100808Z:60146bce-d997-4558-8010-e6c5109bb423", + "x-ms-correlation-request-id": "59355ada-a200-4266-be26-135974230e5a", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145710Z:59355ada-a200-4266-be26-135974230e5a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7", - "name": "cc2a1bda-1e94-4a6c-a066-650927921ad7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "name": "9f93a048-10b8-4ec4-a421-88e27c19d6ae", "status": "Creating", - "startTime": "2022-09-19T10:07:07.2383268Z", + "startTime": "2022-10-25T14:56:38.6702438Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1265,13 +1335,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1279,7 +1349,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:08:38 GMT", + "Date": "Tue, 25 Oct 2022 14:57:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1287,16 +1357,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50b0d05d-892a-4652-baae-7c07d812eed0", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100838Z:50b0d05d-892a-4652-baae-7c07d812eed0", + "x-ms-correlation-request-id": "1c0b3139-7fe9-4bba-948e-86c796121dda", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145740Z:1c0b3139-7fe9-4bba-948e-86c796121dda", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7", - "name": "cc2a1bda-1e94-4a6c-a066-650927921ad7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "name": "9f93a048-10b8-4ec4-a421-88e27c19d6ae", "status": "Creating", - "startTime": "2022-09-19T10:07:07.2383268Z", + "startTime": "2022-10-25T14:56:38.6702438Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1305,13 +1375,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1319,7 +1389,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:09:08 GMT", + "Date": "Tue, 25 Oct 2022 14:58:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1327,16 +1397,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ba50a8d-4952-41c7-8ee7-b8b07ce1d601", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100909Z:6ba50a8d-4952-41c7-8ee7-b8b07ce1d601", + "x-ms-correlation-request-id": "26a475ea-8c2f-4001-9275-a7b9eebce0d0", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145810Z:26a475ea-8c2f-4001-9275-a7b9eebce0d0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7", - "name": "cc2a1bda-1e94-4a6c-a066-650927921ad7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "name": "9f93a048-10b8-4ec4-a421-88e27c19d6ae", "status": "Creating", - "startTime": "2022-09-19T10:07:07.2383268Z", + "startTime": "2022-10-25T14:56:38.6702438Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1345,13 +1415,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1359,7 +1429,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:09:38 GMT", + "Date": "Tue, 25 Oct 2022 14:58:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1367,16 +1437,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e7f3885-762f-4d63-88f0-7c9b66910cda", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T100939Z:4e7f3885-762f-4d63-88f0-7c9b66910cda", + "x-ms-correlation-request-id": "191fd6c0-ca90-4299-a8a2-651ba1e562b4", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145841Z:191fd6c0-ca90-4299-a8a2-651ba1e562b4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7", - "name": "cc2a1bda-1e94-4a6c-a066-650927921ad7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "name": "9f93a048-10b8-4ec4-a421-88e27c19d6ae", "status": "Creating", - "startTime": "2022-09-19T10:07:07.2383268Z", + "startTime": "2022-10-25T14:56:38.6702438Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1385,13 +1455,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1399,7 +1469,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:10:09 GMT", + "Date": "Tue, 25 Oct 2022 14:59:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1407,16 +1477,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a9e74f5-5fdc-4252-930d-8e920e2738a7", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101009Z:3a9e74f5-5fdc-4252-930d-8e920e2738a7", + "x-ms-correlation-request-id": "ca5cacad-57f8-4cc5-a253-ff72a5982917", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145911Z:ca5cacad-57f8-4cc5-a253-ff72a5982917", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7", - "name": "cc2a1bda-1e94-4a6c-a066-650927921ad7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "name": "9f93a048-10b8-4ec4-a421-88e27c19d6ae", "status": "Creating", - "startTime": "2022-09-19T10:07:07.2383268Z", + "startTime": "2022-10-25T14:56:38.6702438Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1425,13 +1495,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1439,7 +1509,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:10:39 GMT", + "Date": "Tue, 25 Oct 2022 14:59:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1447,16 +1517,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e39b6b3-c8f5-42fe-a2c9-ee6bd11010f7", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101039Z:4e39b6b3-c8f5-42fe-a2c9-ee6bd11010f7", + "x-ms-correlation-request-id": "8824ac38-6458-4f4d-a206-cd576f7ef206", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T145941Z:8824ac38-6458-4f4d-a206-cd576f7ef206", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7", - "name": "cc2a1bda-1e94-4a6c-a066-650927921ad7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "name": "9f93a048-10b8-4ec4-a421-88e27c19d6ae", "status": "Creating", - "startTime": "2022-09-19T10:07:07.2383268Z", + "startTime": "2022-10-25T14:56:38.6702438Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1465,13 +1535,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1479,7 +1549,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:09 GMT", + "Date": "Tue, 25 Oct 2022 15:00:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1487,17 +1557,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "444a7c20-0576-4100-943f-57dd2dd34060", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101110Z:444a7c20-0576-4100-943f-57dd2dd34060", + "x-ms-correlation-request-id": "6d518c63-3368-45cb-93e0-062759fdb3ab", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150011Z:6d518c63-3368-45cb-93e0-062759fdb3ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc2a1bda-1e94-4a6c-a066-650927921ad7", - "name": "cc2a1bda-1e94-4a6c-a066-650927921ad7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "name": "9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "status": "Creating", + "startTime": "2022-10-25T14:56:38.6702438Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:00:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "104c029f-cc47-4d66-b6aa-ee871c6671ed", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150042Z:104c029f-cc47-4d66-b6aa-ee871c6671ed", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "name": "9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "status": "Creating", + "startTime": "2022-10-25T14:56:38.6702438Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:01:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5ddf64fe-a842-4122-b8ee-e03f71b7e929", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150113Z:5ddf64fe-a842-4122-b8ee-e03f71b7e929", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f93a048-10b8-4ec4-a421-88e27c19d6ae", + "name": "9f93a048-10b8-4ec4-a421-88e27c19d6ae", "status": "Succeeded", - "startTime": "2022-09-19T10:07:07.2383268Z", - "endTime": "2022-09-19T10:11:07.275086Z", + "startTime": "2022-10-25T14:56:38.6702438Z", + "endTime": "2022-10-25T15:01:08.7599626Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b" @@ -1511,7 +1661,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1519,8 +1669,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A11%3A07.2684917Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:01:12 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A01%3A08.7496865Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1528,22 +1678,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25508f12-e29e-4b80-87a4-d37178254d64", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101110Z:25508f12-e29e-4b80-87a4-d37178254d64", + "x-ms-correlation-request-id": "1b295c4c-3f4c-41ca-9e1c-19f0d4e48c6a", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150113Z:1b295c4c-3f4c-41ca-9e1c-19f0d4e48c6a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b", "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-dde5273b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A11%3A07.2684917Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A01%3A08.7496865Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:07:05.2325426Z" + "CreatedOnDate": "2022-10-25T14:56:37.0965324Z" }, "properties": { - "fileSystemId": "0dee1c5f-43dc-dce7-fe53-874207fcc9e8", + "fileSystemId": "0016a3d5-4af0-e7aa-b274-c8b459a88c0d", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-dde5273b", "usageThreshold": 107374182400, @@ -1571,7 +1721,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6baba1c1", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0de82d39", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1586,8 +1736,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "0dee1c5f-43dc-dce7-fe53-874207fcc9e8", - "fileSystemId": "0dee1c5f-43dc-dce7-fe53-874207fcc9e8", + "mountTargetId": "0016a3d5-4af0-e7aa-b274-c8b459a88c0d", + "fileSystemId": "0016a3d5-4af0-e7aa-b274-c8b459a88c0d", "ipAddress": "10.0.0.4" } ], @@ -1607,10 +1757,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:07:06.3395622Z", + "createdAt": "2022-10-25T14:56:38.3780839Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:07:06.3395622Z" + "lastModifiedAt": "2022-10-25T14:56:38.3780839Z" } } }, @@ -1623,7 +1773,7 @@ "Connection": "keep-alive", "Content-Length": "59", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1633,20 +1783,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/39eb027a-e6f4-4e06-9491-cb2cb1efa864?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0bf97bf-dfde-4107-98d9-61ad2f8d0be9?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "544", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:10 GMT", + "Date": "Tue, 25 Oct 2022 15:01:13 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/39eb027a-e6f4-4e06-9491-cb2cb1efa864?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0bf97bf-dfde-4107-98d9-61ad2f8d0be9?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35f5d1e1-d68b-4f4f-9ede-a693415a17c5", + "x-ms-correlation-request-id": "ef94c429-eaa0-462a-96d7-2c96a1073c5a", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101111Z:35f5d1e1-d68b-4f4f-9ede-a693415a17c5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150114Z:ef94c429-eaa0-462a-96d7-2c96a1073c5a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1660,6 +1810,46 @@ } } }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0bf97bf-dfde-4107-98d9-61ad2f8d0be9?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:01:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2e6f5eb7-72d5-49ab-a811-621195215c8c", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150114Z:2e6f5eb7-72d5-49ab-a811-621195215c8c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0bf97bf-dfde-4107-98d9-61ad2f8d0be9", + "name": "f0bf97bf-dfde-4107-98d9-61ad2f8d0be9", + "status": "Creating", + "startTime": "2022-10-25T15:01:14.0302438Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-1" + } + } + }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-05-01", "RequestMethod": "GET", @@ -1667,7 +1857,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1675,7 +1865,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:11 GMT", + "Date": "Tue, 25 Oct 2022 15:01:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1683,9 +1873,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64447e14-be30-470a-a89f-bfb15c0962da", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101111Z:64447e14-be30-470a-a89f-bfb15c0962da", + "x-ms-correlation-request-id": "12682ebd-7d38-4d1a-acc9-0c2ea92d2afd", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150116Z:12682ebd-7d38-4d1a-acc9-0c2ea92d2afd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1707,7 +1897,7 @@ "Connection": "keep-alive", "Content-Length": "59", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1717,20 +1907,20 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f928701e-0434-4e3b-9036-848d7c4abc51?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4171a36-e5c5-4ddb-8f55-8b9b8020bc9f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "544", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:11 GMT", + "Date": "Tue, 25 Oct 2022 15:01:15 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f928701e-0434-4e3b-9036-848d7c4abc51?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4171a36-e5c5-4ddb-8f55-8b9b8020bc9f?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa9edc53-ab85-4b49-aaa5-bc3616c48fb4", + "x-ms-correlation-request-id": "ddad71d5-54b2-474f-9bb1-f33f63736be3", "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101112Z:fa9edc53-ab85-4b49-aaa5-bc3616c48fb4", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150116Z:ddad71d5-54b2-474f-9bb1-f33f63736be3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1751,7 +1941,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1759,7 +1949,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:11 GMT", + "Date": "Tue, 25 Oct 2022 15:01:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1767,9 +1957,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c1a7ed3-a0a5-48a6-85f3-e00e0db13d6c", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101112Z:3c1a7ed3-a0a5-48a6-85f3-e00e0db13d6c", + "x-ms-correlation-request-id": "735a6dad-b808-4b64-8f3d-3f954ef1f13f", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150117Z:735a6dad-b808-4b64-8f3d-3f954ef1f13f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1803,36 +1993,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2adaffbe-60e5-41af-a270-8ae630af9c18?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/259fa676-f748-4925-8258-cc2f7bcbf478?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:11:12 GMT", + "Date": "Tue, 25 Oct 2022 15:01:17 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2adaffbe-60e5-41af-a270-8ae630af9c18?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/259fa676-f748-4925-8258-cc2f7bcbf478?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3f0dd6c-6373-4ebf-878f-c9b5f948620e", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101113Z:b3f0dd6c-6373-4ebf-878f-c9b5f948620e", + "x-ms-correlation-request-id": "1a09a71b-0822-4c79-bea0-b19f838b9a51", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150117Z:1a09a71b-0822-4c79-bea0-b19f838b9a51", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/39eb027a-e6f4-4e06-9491-cb2cb1efa864?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4171a36-e5c5-4ddb-8f55-8b9b8020bc9f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1840,7 +2030,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:40 GMT", + "Date": "Tue, 25 Oct 2022 15:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1848,64 +2038,71 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22ed54d4-d27f-4b9f-8ed9-6cb424178897", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101141Z:22ed54d4-d27f-4b9f-8ed9-6cb424178897", + "x-ms-correlation-request-id": "f6e986fb-21aa-439b-b4e8-f39d053222ef", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150117Z:f6e986fb-21aa-439b-b4e8-f39d053222ef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/39eb027a-e6f4-4e06-9491-cb2cb1efa864", - "name": "39eb027a-e6f4-4e06-9491-cb2cb1efa864", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b4171a36-e5c5-4ddb-8f55-8b9b8020bc9f", + "name": "b4171a36-e5c5-4ddb-8f55-8b9b8020bc9f", "status": "Succeeded", - "startTime": "2022-09-19T10:11:10.9083444Z", - "endTime": "2022-09-19T10:11:11.5021382Z", + "startTime": "2022-10-25T15:01:16.5694926Z", + "endTime": "2022-10-25T15:01:17.241425Z", "percentComplete": 100.0, "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-1" + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-2" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/259fa676-f748-4925-8258-cc2f7bcbf478?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "84", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:41 GMT", + "Date": "Tue, 25 Oct 2022 15:01:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9499c5ca-043c-4417-9c5b-fcdc1fdfd32f", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101142Z:9499c5ca-043c-4417-9c5b-fcdc1fdfd32f", + "x-ms-correlation-request-id": "40bb9752-893d-4a60-9023-a9ae4bdaf410", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150118Z:40bb9752-893d-4a60-9023-a9ae4bdaf410", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "error": { - "code": "NotFound", - "message": "The requested SubvolumeInfo was not found." + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/259fa676-f748-4925-8258-cc2f7bcbf478", + "name": "259fa676-f748-4925-8258-cc2f7bcbf478", + "status": "Deleting", + "startTime": "2022-10-25T15:01:17.6946403Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f928701e-0434-4e3b-9036-848d7c4abc51?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-2?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1913,7 +2110,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:41 GMT", + "Date": "Tue, 25 Oct 2022 15:01:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1921,31 +2118,29 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6087ceb-259e-437c-9113-4a683cadef65", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101142Z:b6087ceb-259e-437c-9113-4a683cadef65", + "x-ms-correlation-request-id": "cf7828b2-f74a-440c-9a43-a5d00087038b", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150119Z:cf7828b2-f74a-440c-9a43-a5d00087038b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f928701e-0434-4e3b-9036-848d7c4abc51", - "name": "f928701e-0434-4e3b-9036-848d7c4abc51", - "status": "Succeeded", - "startTime": "2022-09-19T10:11:12.0491747Z", - "endTime": "2022-09-19T10:11:12.5959725Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-2", + "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-dde5273b/sdk-py-tests-subvolume-2", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes", "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-2" + "path": "/sub_vol_2.txt", + "provisioningState": "Succeeded" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0bf97bf-dfde-4107-98d9-61ad2f8d0be9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1953,7 +2148,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:42 GMT", + "Date": "Tue, 25 Oct 2022 15:01:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1961,29 +2156,64 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01c167fa-69eb-4a68-b37d-c871e937d429", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101143Z:01c167fa-69eb-4a68-b37d-c871e937d429", + "x-ms-correlation-request-id": "36365d5f-e8a2-4926-aefe-b2b9f9d8b932", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150144Z:36365d5f-e8a2-4926-aefe-b2b9f9d8b932", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-2", - "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-dde5273b/sdk-py-tests-subvolume-2", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/subvolumes", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f0bf97bf-dfde-4107-98d9-61ad2f8d0be9", + "name": "f0bf97bf-dfde-4107-98d9-61ad2f8d0be9", + "status": "Succeeded", + "startTime": "2022-10-25T15:01:14.0302438Z", + "endTime": "2022-10-25T15:01:16.3351566Z", + "percentComplete": 100.0, "properties": { - "path": "/sub_vol_2.txt", - "provisioningState": "Succeeded" + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-1" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2adaffbe-60e5-41af-a270-8ae630af9c18?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "84", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:01:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "03cdad64-b036-47c4-996f-3df13ad16501", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150145Z:03cdad64-b036-47c4-996f-3df13ad16501", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "error": { + "code": "NotFound", + "message": "The requested SubvolumeInfo was not found." + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/259fa676-f748-4925-8258-cc2f7bcbf478?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1991,7 +2221,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:43 GMT", + "Date": "Tue, 25 Oct 2022 15:01:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1999,17 +2229,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a9b6bfb-200c-413f-a030-3239a4acc8b6", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101144Z:2a9b6bfb-200c-413f-a030-3239a4acc8b6", + "x-ms-correlation-request-id": "e7f9c0cd-9de6-49e7-bc18-9e2e69ff6d88", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150148Z:e7f9c0cd-9de6-49e7-bc18-9e2e69ff6d88", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2adaffbe-60e5-41af-a270-8ae630af9c18", - "name": "2adaffbe-60e5-41af-a270-8ae630af9c18", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/259fa676-f748-4925-8258-cc2f7bcbf478", + "name": "259fa676-f748-4925-8258-cc2f7bcbf478", "status": "Succeeded", - "startTime": "2022-09-19T10:11:12.9866189Z", - "endTime": "2022-09-19T10:11:13.3929684Z", + "startTime": "2022-10-25T15:01:17.6946403Z", + "endTime": "2022-10-25T15:01:18.1321892Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-1" @@ -2023,7 +2253,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2031,7 +2261,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:11:44 GMT", + "Date": "Tue, 25 Oct 2022 15:01:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2039,9 +2269,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad049d55-3185-4ce4-952d-7cc0fd5380f1", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101145Z:ad049d55-3185-4ce4-952d-7cc0fd5380f1", + "x-ms-correlation-request-id": "ca081e4d-4be0-4bde-a8d3-3d441de7b798", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150148Z:ca081e4d-4be0-4bde-a8d3-3d441de7b798", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2066,36 +2296,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab39729e-e6d7-4a10-99f2-d485ba203df5?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67bd0f32-863e-47f4-8ccd-1e3733b81a55?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:11:45 GMT", + "Date": "Tue, 25 Oct 2022 15:01:49 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab39729e-e6d7-4a10-99f2-d485ba203df5?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67bd0f32-863e-47f4-8ccd-1e3733b81a55?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3014eb8d-7351-4103-a4a9-9b8507f40277", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101146Z:3014eb8d-7351-4103-a4a9-9b8507f40277", + "x-ms-correlation-request-id": "6d0c9865-b3af-49b7-97f2-df9583bbafe9", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150150Z:6d0c9865-b3af-49b7-97f2-df9583bbafe9", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab39729e-e6d7-4a10-99f2-d485ba203df5?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67bd0f32-863e-47f4-8ccd-1e3733b81a55?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2103,7 +2333,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:12:16 GMT", + "Date": "Tue, 25 Oct 2022 15:01:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2111,17 +2341,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00e71e78-282b-48d9-bcff-e4d9f74763f7", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101216Z:00e71e78-282b-48d9-bcff-e4d9f74763f7", + "x-ms-correlation-request-id": "5de36eaa-7f97-4d85-933d-7ed15867abb0", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150150Z:5de36eaa-7f97-4d85-933d-7ed15867abb0", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67bd0f32-863e-47f4-8ccd-1e3733b81a55", + "name": "67bd0f32-863e-47f4-8ccd-1e3733b81a55", + "status": "Deleting", + "startTime": "2022-10-25T15:01:49.9699571Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-2" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67bd0f32-863e-47f4-8ccd-1e3733b81a55?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:02:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "171f2a98-06d6-4033-be1f-2bed3e38f10f", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150220Z:171f2a98-06d6-4033-be1f-2bed3e38f10f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab39729e-e6d7-4a10-99f2-d485ba203df5", - "name": "ab39729e-e6d7-4a10-99f2-d485ba203df5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67bd0f32-863e-47f4-8ccd-1e3733b81a55", + "name": "67bd0f32-863e-47f4-8ccd-1e3733b81a55", "status": "Succeeded", - "startTime": "2022-09-19T10:11:45.9909922Z", - "endTime": "2022-09-19T10:11:46.4061667Z", + "startTime": "2022-10-25T15:01:49.9699571Z", + "endTime": "2022-10-25T15:01:50.4231241Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b/subvolumes/sdk-py-tests-subvolume-2" @@ -2135,7 +2405,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2143,7 +2413,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:12:16 GMT", + "Date": "Tue, 25 Oct 2022 15:02:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2151,9 +2421,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c65bb5dd-48ce-4832-8fa0-3656db615221", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101216Z:c65bb5dd-48ce-4832-8fa0-3656db615221", + "x-ms-correlation-request-id": "c21f533a-6787-4524-af6b-24734ec54451", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150221Z:c21f533a-6787-4524-af6b-24734ec54451", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2168,36 +2438,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:12:17 GMT", + "Date": "Tue, 25 Oct 2022 15:02:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41a762be-b88d-4f49-9250-eea8dff530e8", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101218Z:41a762be-b88d-4f49-9250-eea8dff530e8", + "x-ms-correlation-request-id": "545cffb1-5ac4-42b4-9c60-d5e562a07d7e", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150222Z:545cffb1-5ac4-42b4-9c60-d5e562a07d7e", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2205,7 +2475,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:12:47 GMT", + "Date": "Tue, 25 Oct 2022 15:02:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2213,16 +2483,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "331756d0-09b9-49d3-8878-ac5dc2dad078", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101248Z:331756d0-09b9-49d3-8878-ac5dc2dad078", + "x-ms-correlation-request-id": "ac3a96a0-a1f6-4fe1-9f87-c35289b3dfc3", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150222Z:ac3a96a0-a1f6-4fe1-9f87-c35289b3dfc3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d", - "name": "8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684", + "name": "57fcf3e5-8265-42a6-bbee-d888891a4684", "status": "Deleting", - "startTime": "2022-09-19T10:12:17.8272846Z", + "startTime": "2022-10-25T15:02:22.3098197Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2231,13 +2501,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2245,7 +2515,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:13:18 GMT", + "Date": "Tue, 25 Oct 2022 15:02:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2253,16 +2523,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2dfc554f-e59d-4d5b-8370-9793c08f3e99", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101318Z:2dfc554f-e59d-4d5b-8370-9793c08f3e99", + "x-ms-correlation-request-id": "3b4a1cec-61e5-44e1-9b87-df79ea4cdfef", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150252Z:3b4a1cec-61e5-44e1-9b87-df79ea4cdfef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d", - "name": "8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684", + "name": "57fcf3e5-8265-42a6-bbee-d888891a4684", "status": "Deleting", - "startTime": "2022-09-19T10:12:17.8272846Z", + "startTime": "2022-10-25T15:02:22.3098197Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2271,13 +2541,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2285,7 +2555,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:13:47 GMT", + "Date": "Tue, 25 Oct 2022 15:03:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2293,16 +2563,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee0a36e6-b2c8-4dc8-949f-a02ac3a92bd1", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101348Z:ee0a36e6-b2c8-4dc8-949f-a02ac3a92bd1", + "x-ms-correlation-request-id": "56231473-4f67-4ef2-8616-0bec32963a22", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150323Z:56231473-4f67-4ef2-8616-0bec32963a22", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d", - "name": "8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684", + "name": "57fcf3e5-8265-42a6-bbee-d888891a4684", "status": "Deleting", - "startTime": "2022-09-19T10:12:17.8272846Z", + "startTime": "2022-10-25T15:02:22.3098197Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2311,13 +2581,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2325,7 +2595,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:14:18 GMT", + "Date": "Tue, 25 Oct 2022 15:03:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2333,17 +2603,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdc1d34c-680e-4dea-aeab-969a0d6794c4", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101419Z:bdc1d34c-680e-4dea-aeab-969a0d6794c4", + "x-ms-correlation-request-id": "ae8172c5-0731-44e4-8e37-8bcbddbb6d53", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150353Z:ae8172c5-0731-44e4-8e37-8bcbddbb6d53", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d", - "name": "8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684", + "name": "57fcf3e5-8265-42a6-bbee-d888891a4684", + "status": "Deleting", + "startTime": "2022-10-25T15:02:22.3098197Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:04:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8aac25d3-13c2-4ed5-b98b-fd74d2bdea5a", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150423Z:8aac25d3-13c2-4ed5-b98b-fd74d2bdea5a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684", + "name": "57fcf3e5-8265-42a6-bbee-d888891a4684", + "status": "Deleting", + "startTime": "2022-10-25T15:02:22.3098197Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:04:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0d3bc9fb-da8e-4bf2-bc8b-302b1d6ab3eb", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150454Z:0d3bc9fb-da8e-4bf2-bc8b-302b1d6ab3eb", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684", + "name": "57fcf3e5-8265-42a6-bbee-d888891a4684", + "status": "Deleting", + "startTime": "2022-10-25T15:02:22.3098197Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:05:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "19a1e648-8f54-496b-bf73-becc9adeab01", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150524Z:19a1e648-8f54-496b-bf73-becc9adeab01", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684", + "name": "57fcf3e5-8265-42a6-bbee-d888891a4684", "status": "Succeeded", - "startTime": "2022-09-19T10:12:17.8272846Z", - "endTime": "2022-09-19T10:14:05.1712157Z", + "startTime": "2022-10-25T15:02:22.3098197Z", + "endTime": "2022-10-25T15:05:10.0598173Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b" @@ -2351,13 +2741,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d7afdb1-a05c-4c45-b8ee-4f54bdd0a37d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/57fcf3e5-8265-42a6-bbee-d888891a4684?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2365,7 +2755,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:14:19 GMT", + "Date": "Tue, 25 Oct 2022 15:05:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2373,22 +2763,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d58731ad-c3f7-438f-946a-c77c11df2156", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101419Z:d58731ad-c3f7-438f-946a-c77c11df2156", + "x-ms-correlation-request-id": "116eebf3-ebba-4b2d-9e78-052eb61b4fce", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150524Z:116eebf3-ebba-4b2d-9e78-052eb61b4fce", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b", "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-dde5273b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A13%3A56.3030918Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A05%3A00.6320032Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:07:05.2325426Z" + "CreatedOnDate": "2022-10-25T14:56:37.0965324Z" }, "properties": { - "fileSystemId": "0dee1c5f-43dc-dce7-fe53-874207fcc9e8", + "fileSystemId": "0016a3d5-4af0-e7aa-b274-c8b459a88c0d", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-dde5273b", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2419,19 +2809,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6baba1c1", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0de82d39", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-dde5273b", - "poolId": "9173cdb3-896d-8c5e-843e-80dcd87e37bd", + "poolId": "b1a52f96-c4ba-854e-a134-69104c41cb77", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "0dee1c5f-43dc-dce7-fe53-874207fcc9e8", - "fileSystemId": "0dee1c5f-43dc-dce7-fe53-874207fcc9e8", + "mountTargetId": "0016a3d5-4af0-e7aa-b274-c8b459a88c0d", + "fileSystemId": "0016a3d5-4af0-e7aa-b274-c8b459a88c0d", "startIp": "", "endIp": "", "gateway": "", @@ -2463,10 +2853,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:07:06.3395622Z", + "createdAt": "2022-10-25T14:56:38.3780839Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:07:06.3395622Z" + "lastModifiedAt": "2022-10-25T14:56:38.3780839Z" } } }, @@ -2477,7 +2867,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2485,14 +2875,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:17:43 GMT", + "Date": "Tue, 25 Oct 2022 15:08:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6302a310-16fb-4372-a6af-2ccaf74e56d9", + "x-ms-correlation-request-id": "ee541eb4-7070-4806-81f7-3d352cfc59af", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101743Z:6302a310-16fb-4372-a6af-2ccaf74e56d9" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150848Z:ee541eb4-7070-4806-81f7-3d352cfc59af" }, "ResponseBody": { "error": { @@ -2509,36 +2899,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7aba06cd-9ca1-4602-bcf4-60107b201be3?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32b75c16-ac26-4e09-83f9-7e6d05e63b8a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:17:55 GMT", + "Date": "Tue, 25 Oct 2022 15:09:01 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7aba06cd-9ca1-4602-bcf4-60107b201be3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32b75c16-ac26-4e09-83f9-7e6d05e63b8a?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "687bd10e-5677-4df4-ad67-bcab301f2d66", + "x-ms-correlation-request-id": "ea44c230-4f9a-4d39-959b-344e4d59f15e", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101755Z:687bd10e-5677-4df4-ad67-bcab301f2d66", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150901Z:ea44c230-4f9a-4d39-959b-344e4d59f15e", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7aba06cd-9ca1-4602-bcf4-60107b201be3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32b75c16-ac26-4e09-83f9-7e6d05e63b8a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2546,7 +2936,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:18:25 GMT", + "Date": "Tue, 25 Oct 2022 15:09:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2554,17 +2944,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2cab6a4-c84b-4332-be43-9f38f5c1ca21", + "x-ms-correlation-request-id": "97710208-372f-4793-8fd7-ee924fd11cd1", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101826Z:a2cab6a4-c84b-4332-be43-9f38f5c1ca21", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150901Z:97710208-372f-4793-8fd7-ee924fd11cd1", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32b75c16-ac26-4e09-83f9-7e6d05e63b8a", + "name": "32b75c16-ac26-4e09-83f9-7e6d05e63b8a", + "status": "Deleting", + "startTime": "2022-10-25T15:09:01.1041754Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32b75c16-ac26-4e09-83f9-7e6d05e63b8a?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:09:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6f63dc72-1263-4e63-8a5d-170163bd6f5b", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150931Z:6f63dc72-1263-4e63-8a5d-170163bd6f5b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7aba06cd-9ca1-4602-bcf4-60107b201be3", - "name": "7aba06cd-9ca1-4602-bcf4-60107b201be3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32b75c16-ac26-4e09-83f9-7e6d05e63b8a", + "name": "32b75c16-ac26-4e09-83f9-7e6d05e63b8a", "status": "Succeeded", - "startTime": "2022-09-19T10:17:55.8166371Z", - "endTime": "2022-09-19T10:17:56.754132Z", + "startTime": "2022-10-25T15:09:01.1041754Z", + "endTime": "2022-10-25T15:09:02.3072607Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1" @@ -2572,13 +3002,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7aba06cd-9ca1-4602-bcf4-60107b201be3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32b75c16-ac26-4e09-83f9-7e6d05e63b8a?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2586,7 +3016,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:18:25 GMT", + "Date": "Tue, 25 Oct 2022 15:09:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2594,22 +3024,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "386a64be-f83b-4008-88e0-f0ac7d724894", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101826Z:386a64be-f83b-4008-88e0-f0ac7d724894", + "x-ms-correlation-request-id": "79b26105-7532-4592-ba08-58a45a6869cd", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150931Z:79b26105-7532-4592-ba08-58a45a6869cd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-dde5273b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A17%3A55.8186423Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A09%3A01.0912384Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:06:32.1481242Z" + "CreatedOnDate": "2022-10-25T14:56:33.9736543Z" }, "properties": { - "poolId": "9173cdb3-896d-8c5e-843e-80dcd87e37bd", + "poolId": "b1a52f96-c4ba-854e-a134-69104c41cb77", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b/capacityPools/sdk-py-tests-pool-1", @@ -2623,10 +3053,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:06:33.1044915Z", + "createdAt": "2022-10-25T14:56:34.9844291Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:06:33.1044915Z" + "lastModifiedAt": "2022-10-25T14:56:34.9844291Z" } } }, @@ -2638,20 +3068,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:18:35 GMT", + "Date": "Tue, 25 Oct 2022 15:09:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d34113c-e366-498b-a1cc-07c158338e3a", + "x-ms-correlation-request-id": "b57daa21-aba0-4403-b496-fb97f3d55aaf", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101836Z:6d34113c-e366-498b-a1cc-07c158338e3a" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150942Z:b57daa21-aba0-4403-b496-fb97f3d55aaf" }, "ResponseBody": null }, @@ -2663,20 +3093,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:18:46 GMT", + "Date": "Tue, 25 Oct 2022 15:09:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2315bbe2-e2c8-4c13-a992-c080634db38a", + "x-ms-correlation-request-id": "bd327e46-24b2-4e86-ab65-d64ccdf8889b", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101847Z:2315bbe2-e2c8-4c13-a992-c080634db38a" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T150952Z:bd327e46-24b2-4e86-ab65-d64ccdf8889b" }, "ResponseBody": null }, @@ -2688,20 +3118,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:18:57 GMT", + "Date": "Tue, 25 Oct 2022 15:10:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50ff7f55-7e41-4c61-b9f7-7bf7a4cb8d4c", + "x-ms-correlation-request-id": "18a6a56e-68b9-4b18-8b65-168dccd361f5", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101857Z:50ff7f55-7e41-4c61-b9f7-7bf7a4cb8d4c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151002Z:18a6a56e-68b9-4b18-8b65-168dccd361f5" }, "ResponseBody": null }, @@ -2713,20 +3143,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 10:19:07 GMT", + "Date": "Tue, 25 Oct 2022 15:10:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c659cd61-60d6-4c82-802b-814f894fd5ff", + "x-ms-correlation-request-id": "3d572218-d8d7-4443-839f-a973cf55c181", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101907Z:c659cd61-60d6-4c82-802b-814f894fd5ff" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151013Z:3d572218-d8d7-4443-839f-a973cf55c181" }, "ResponseBody": null }, @@ -2737,7 +3167,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2745,14 +3175,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:19:17 GMT", + "Date": "Tue, 25 Oct 2022 15:10:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee3aa944-cdff-4591-aef9-001e169eee2b", + "x-ms-correlation-request-id": "14c05786-b576-4e5a-852b-c5d24f9e2539", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101917Z:ee3aa944-cdff-4591-aef9-001e169eee2b" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151023Z:14c05786-b576-4e5a-852b-c5d24f9e2539" }, "ResponseBody": { "error": { @@ -2769,36 +3199,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef3eb20e-e9a1-48af-9eff-ee47a35e5063?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5b3d285-b6e9-4d00-9fef-285b3eae14cf?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:19:18 GMT", + "Date": "Tue, 25 Oct 2022 15:10:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef3eb20e-e9a1-48af-9eff-ee47a35e5063?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5b3d285-b6e9-4d00-9fef-285b3eae14cf?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fef6f50a-aed1-4903-9a49-aaa9c81eaf70", + "x-ms-correlation-request-id": "e41e6602-10f6-47de-8bf6-87e0151ef7ba", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101919Z:fef6f50a-aed1-4903-9a49-aaa9c81eaf70", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151024Z:e41e6602-10f6-47de-8bf6-87e0151ef7ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef3eb20e-e9a1-48af-9eff-ee47a35e5063?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5b3d285-b6e9-4d00-9fef-285b3eae14cf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2806,7 +3236,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:19:49 GMT", + "Date": "Tue, 25 Oct 2022 15:10:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2814,17 +3244,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cfb61eb-b67e-40e7-a7c0-7bb9b99d7bbf", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101949Z:3cfb61eb-b67e-40e7-a7c0-7bb9b99d7bbf", + "x-ms-correlation-request-id": "16244489-e1e4-4d3c-a9e6-ee1f6969fd15", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151025Z:16244489-e1e4-4d3c-a9e6-ee1f6969fd15", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef3eb20e-e9a1-48af-9eff-ee47a35e5063", - "name": "ef3eb20e-e9a1-48af-9eff-ee47a35e5063", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5b3d285-b6e9-4d00-9fef-285b3eae14cf", + "name": "f5b3d285-b6e9-4d00-9fef-285b3eae14cf", "status": "Succeeded", - "startTime": "2022-09-19T10:19:19.1935829Z", - "endTime": "2022-09-19T10:19:19.2874021Z", + "startTime": "2022-10-25T15:10:24.7697938Z", + "endTime": "2022-10-25T15:10:24.8323055Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b" @@ -2832,13 +3262,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef3eb20e-e9a1-48af-9eff-ee47a35e5063?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5b3d285-b6e9-4d00-9fef-285b3eae14cf?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2846,7 +3276,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:19:49 GMT", + "Date": "Tue, 25 Oct 2022 15:10:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2854,19 +3284,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b05f1be-e951-47a7-aa7b-6627aefb376a", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101949Z:7b05f1be-e951-47a7-aa7b-6627aefb376a", + "x-ms-correlation-request-id": "d9688b52-86d0-449d-806e-62fedff8376c", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151025Z:d9688b52-86d0-449d-806e-62fedff8376c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b", "name": "sdk-py-tests-acc-1-dde5273b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A19%3A19.2038672Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A10%3A24.7745922Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:05:57.8760592Z" + "CreatedOnDate": "2022-10-25T14:56:30.3219951Z" }, "properties": { "encryption": { @@ -2877,10 +3307,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:05:58.8384707Z", + "createdAt": "2022-10-25T14:56:31.466292Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:05:58.8384707Z" + "lastModifiedAt": "2022-10-25T14:56:31.466292Z" } } }, @@ -2891,50 +3321,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:19:50 GMT", + "Date": "Tue, 25 Oct 2022 15:10:25 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "887ff14f-79e8-4974-bd3d-838e482fb548", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101950Z:887ff14f-79e8-4974-bd3d-838e482fb548" + "x-ms-correlation-request-id": "d564ac4f-e6fa-4792-b0a6-695688398c1d", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151025Z:d564ac4f-e6fa-4792-b0a6-695688398c1d", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-dde5273b\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-dde5273b?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/25da7b7e-34ab-494a-a050-aab3819a4006?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9eab1f8d-c91d-40a6-978b-8f4cbc152c25?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:19:50 GMT", + "Date": "Tue, 25 Oct 2022 15:10:26 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/25da7b7e-34ab-494a-a050-aab3819a4006?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/9eab1f8d-c91d-40a6-978b-8f4cbc152c25?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -2943,10 +3375,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c5b6c5f8-4444-4bd0-a98e-1d9a5dfd60fd", - "x-ms-correlation-request-id": "5d743146-2694-4aba-8f45-c23c5b9a01ac", + "x-ms-arm-service-request-id": "98c82b3b-3b4d-47f2-a331-25d6766ba79c", + "x-ms-correlation-request-id": "0908e0aa-86c5-40a8-a071-35f69a3ec901", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T101950Z:5d743146-2694-4aba-8f45-c23c5b9a01ac" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T151026Z:0908e0aa-86c5-40a8-a071-35f69a3ec901" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_vault.pyTestNetAppVaulttest_get_vault.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_vault.pyTestNetAppVaulttest_get_vault.json index 5182a3f3432a..25a7519a76bb 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_vault.pyTestNetAppVaulttest_get_vault.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_vault.pyTestNetAppVaulttest_get_vault.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:39 GMT", + "Date": "Tue, 25 Oct 2022 15:34:26 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:39 GMT", + "Date": "Tue, 25 Oct 2022 15:34:26 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "abcd7477-c8a5-443c-8368-fd9ba5b2b3b7", + "client-request-id": "88de0594-750c-4bc7-9aa6-9026b8d51e81", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "abcd7477-c8a5-443c-8368-fd9ba5b2b3b7", + "client-request-id": "88de0594-750c-4bc7-9aa6-9026b8d51e81", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:39 GMT", + "Date": "Tue, 25 Oct 2022 15:34:26 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/266fe81f-b3ce-4b70-a1d1-22351ede66ac?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2976f81a-5b46-411f-bc82-f672de929127?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:45 GMT", + "Date": "Tue, 25 Oct 2022 15:34:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "30234762-eb5c-49c8-9dae-82c75f038f98", - "x-ms-correlation-request-id": "250dbe5f-eb2a-44f2-ab30-1208756bc707", + "x-ms-arm-service-request-id": "231fc16e-ddfd-4e73-bc49-b07bb9022743", + "x-ms-correlation-request-id": "adabacaa-9be9-4e3a-aca8-ba4b9aa285eb", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104745Z:250dbe5f-eb2a-44f2-ab30-1208756bc707" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153437Z:adabacaa-9be9-4e3a-aca8-ba4b9aa285eb" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-ec2121ad", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad", - "etag": "W/\u0022bdaeda38-2ea5-4e96-8e7f-acbbe53f04a6\u0022", + "etag": "W/\u0022a2ba8f89-277e-4d5e-936c-78b4a520ea34\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:47:42.0313284Z" + "CreatedOnDate": "2022-10-25T15:34:29.9890948Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "d60f43a0-61db-4106-9d9f-048d11ca3bef", + "resourceGuid": "dcafe866-e4af-47d4-af66-41dff02d35bc", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/266fe81f-b3ce-4b70-a1d1-22351ede66ac?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2976f81a-5b46-411f-bc82-f672de929127?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:48 GMT", + "Date": "Tue, 25 Oct 2022 15:34:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "6d80e09f-34ca-4e4d-b5c7-1e1d2bc649ac", - "x-ms-correlation-request-id": "3c8ab2ce-f8be-4af1-8202-914872cb45f0", + "x-ms-arm-service-request-id": "1d2cdf25-6138-454b-99c6-3c9bea84ed20", + "x-ms-correlation-request-id": "a5710ec7-0638-4ea2-a69e-702fe67a6f86", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104748Z:3c8ab2ce-f8be-4af1-8202-914872cb45f0" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153437Z:a5710ec7-0638-4ea2-a69e-702fe67a6f86" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:49 GMT", - "ETag": "W/\u0022b8691ea4-c8be-433d-ae44-f6777dd52ae1\u0022", + "Date": "Tue, 25 Oct 2022 15:34:37 GMT", + "ETag": "W/\u0022c461f1d5-acec-42fb-8dfe-b9c776247589\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "78f0049c-a8e9-4383-a1bb-26e4b504e460", - "x-ms-correlation-request-id": "a0ca4673-dc99-4397-8bd5-e2fd78d1fc51", + "x-ms-arm-service-request-id": "b3d3f470-82af-4aee-bf53-9c5e22d35054", + "x-ms-correlation-request-id": "75895c01-b296-4f7c-916c-f238bc7525be", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104750Z:a0ca4673-dc99-4397-8bd5-e2fd78d1fc51" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153438Z:75895c01-b296-4f7c-916c-f238bc7525be" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-ec2121ad", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad", - "etag": "W/\u0022b8691ea4-c8be-433d-ae44-f6777dd52ae1\u0022", + "etag": "W/\u0022c461f1d5-acec-42fb-8dfe-b9c776247589\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:47:42.0313284Z" + "CreatedOnDate": "2022-10-25T15:34:29.9890948Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "d60f43a0-61db-4106-9d9f-048d11ca3bef", + "resourceGuid": "dcafe866-e4af-47d4-af66-41dff02d35bc", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fb76f87d-e7ef-4dbf-b2f5-5b6ba8bbb3e5?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d1aadf91-6ce1-440f-b02b-10eeb40f347d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:50 GMT", + "Date": "Tue, 25 Oct 2022 15:34:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "69c485a0-9de6-4963-990d-d566cabe2d46", - "x-ms-correlation-request-id": "c7906191-3e0b-4e77-a9a5-d11063c00ace", + "x-ms-arm-service-request-id": "6e94b8cd-0743-4c15-b8ac-6e04037c46cd", + "x-ms-correlation-request-id": "f6d8c900-a3f3-48ca-b0ef-0f04c78f356b", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104750Z:c7906191-3e0b-4e77-a9a5-d11063c00ace" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153438Z:f6d8c900-a3f3-48ca-b0ef-0f04c78f356b" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default", - "etag": "W/\u002224152974-ed67-46a9-8d4d-94a34fd98c98\u0022", + "etag": "W/\u0022534270a9-f23f-47a2-9877-4760eb58cec8\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default/delegations/netAppVolumes", - "etag": "W/\u002224152974-ed67-46a9-8d4d-94a34fd98c98\u0022", + "etag": "W/\u0022534270a9-f23f-47a2-9877-4760eb58cec8\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/fb76f87d-e7ef-4dbf-b2f5-5b6ba8bbb3e5?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d1aadf91-6ce1-440f-b02b-10eeb40f347d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:53 GMT", + "Date": "Tue, 25 Oct 2022 15:34:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "805bf587-6f0b-4860-b107-76a5e9d49fca", - "x-ms-correlation-request-id": "90e82c6f-81fb-47bf-842e-ecd763f90a64", + "x-ms-arm-service-request-id": "4087a5e0-b269-4562-84c8-8159160a2bec", + "x-ms-correlation-request-id": "1d325095-9a88-4b3a-8ae3-e4e260dc438d", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104754Z:90e82c6f-81fb-47bf-842e-ecd763f90a64" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153439Z:1d325095-9a88-4b3a-8ae3-e4e260dc438d" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:53 GMT", - "ETag": "W/\u0022bf081360-e998-4e2a-b341-cea4c1200823\u0022", + "Date": "Tue, 25 Oct 2022 15:34:38 GMT", + "ETag": "W/\u0022cb46a132-984a-4df7-835f-114a62e5ccc3\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "dd1960e1-f678-4027-9dfb-70498973b0c4", - "x-ms-correlation-request-id": "3148831c-400c-441c-b125-2c047f30f8f5", + "x-ms-arm-service-request-id": "cd5dc496-4b82-4188-82e3-d4c529f063f6", + "x-ms-correlation-request-id": "79e9d443-52f1-4316-966a-d2110264f99d", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104754Z:3148831c-400c-441c-b125-2c047f30f8f5" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153439Z:79e9d443-52f1-4316-966a-d2110264f99d" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default", - "etag": "W/\u0022bf081360-e998-4e2a-b341-cea4c1200823\u0022", + "etag": "W/\u0022cb46a132-984a-4df7-835f-114a62e5ccc3\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022bf081360-e998-4e2a-b341-cea4c1200823\u0022", + "etag": "W/\u0022cb46a132-984a-4df7-835f-114a62e5ccc3\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:54 GMT", + "Date": "Tue, 25 Oct 2022 15:34:38 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:54 GMT", + "Date": "Tue, 25 Oct 2022 15:34:39 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "65a92ab4-dcb7-46fb-bca8-06a6ffc1364d", + "client-request-id": "f368bed1-b1e0-4f98-b32a-41cbbc990395", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "65a92ab4-dcb7-46fb-bca8-06a6ffc1364d", + "client-request-id": "f368bed1-b1e0-4f98-b32a-41cbbc990395", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:54 GMT", + "Date": "Tue, 25 Oct 2022 15:34:39 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4937711-00f3-46d1-8300-d9701eda65c4?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cfc333eb-e511-4091-a42d-a73cf166e8e7?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "704", + "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:47:58 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A47%3A57.7811618Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:34:43 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A34%3A43.0702589Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30073889-35cf-4043-8369-406479c3b885", + "x-ms-correlation-request-id": "2900136b-91fd-4870-a4f0-28507efbf76a", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104758Z:30073889-35cf-4043-8369-406479c3b885", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153444Z:2900136b-91fd-4870-a4f0-28507efbf76a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad", "name": "sdk-py-tests-acc-1-ec2121ad", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A47%3A57.7811618Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A34%3A43.0702589Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:47:55.7379713Z" + "CreatedOnDate": "2022-10-25T15:34:41.0814458Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:47:56.818564Z", + "createdAt": "2022-10-25T15:34:42.0767378Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:47:56.818564Z" + "lastModifiedAt": "2022-10-25T15:34:42.0767378Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4937711-00f3-46d1-8300-d9701eda65c4?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cfc333eb-e511-4091-a42d-a73cf166e8e7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:48:28 GMT", + "Date": "Tue, 25 Oct 2022 15:34:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af1b96c4-cfc9-43b3-b41c-0f7dcd5fd611", + "x-ms-correlation-request-id": "52abc5c9-434b-4446-8cc1-599d130cb402", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104829Z:af1b96c4-cfc9-43b3-b41c-0f7dcd5fd611", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153444Z:52abc5c9-434b-4446-8cc1-599d130cb402", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a4937711-00f3-46d1-8300-d9701eda65c4", - "name": "a4937711-00f3-46d1-8300-d9701eda65c4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cfc333eb-e511-4091-a42d-a73cf166e8e7", + "name": "cfc333eb-e511-4091-a42d-a73cf166e8e7", "status": "Succeeded", - "startTime": "2022-09-19T10:47:57.7856955Z", - "endTime": "2022-09-19T10:47:57.8324988Z", + "startTime": "2022-10-25T15:34:43.0646918Z", + "endTime": "2022-10-25T15:34:43.1271941Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:48:28 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A47%3A57.8391575Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:34:43 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A34%3A43.1180052Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a5ab3e2-c481-4947-b788-720ae190c654", + "x-ms-correlation-request-id": "668d517a-0a35-4184-b61f-84e994b1cbc6", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104829Z:6a5ab3e2-c481-4947-b788-720ae190c654", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153444Z:668d517a-0a35-4184-b61f-84e994b1cbc6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad", "name": "sdk-py-tests-acc-1-ec2121ad", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A47%3A57.8391575Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A34%3A43.1180052Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:47:55.7379713Z" + "CreatedOnDate": "2022-10-25T15:34:41.0814458Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:47:56.818564Z", + "createdAt": "2022-10-25T15:34:42.0767378Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:47:56.818564Z" + "lastModifiedAt": "2022-10-25T15:34:42.0767378Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/096b9914-5708-4692-983f-a6f471666670?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3363c62a-9cf3-454a-9806-8115634e62a5?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "921", + "Content-Length": "919", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:48:30 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A48%3A30.940173Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:34:47 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A34%3A46.649117Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "964b72d2-49af-4f9f-88d3-2226ce29bf5e", + "x-ms-correlation-request-id": "f307443d-f973-4793-99e2-804c67795059", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104831Z:964b72d2-49af-4f9f-88d3-2226ce29bf5e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153447Z:f307443d-f973-4793-99e2-804c67795059", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-ec2121ad/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A48%3A30.940173Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A34%3A46.649117Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:48:29.7865626Z" + "CreatedOnDate": "2022-10-25T15:34:45.2463498Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:48:30.7478214Z", + "createdAt": "2022-10-25T15:34:46.376318Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:48:30.7478214Z" + "lastModifiedAt": "2022-10-25T15:34:46.376318Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/096b9914-5708-4692-983f-a6f471666670?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3363c62a-9cf3-454a-9806-8115634e62a5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:49:01 GMT", + "Date": "Tue, 25 Oct 2022 15:34:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d137b8e9-7e6f-46e4-a3f6-b7a74163c961", + "x-ms-correlation-request-id": "6038ba48-66e0-4a54-9b0e-aa94053b4875", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104902Z:d137b8e9-7e6f-46e4-a3f6-b7a74163c961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153447Z:6038ba48-66e0-4a54-9b0e-aa94053b4875", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/096b9914-5708-4692-983f-a6f471666670", - "name": "096b9914-5708-4692-983f-a6f471666670", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3363c62a-9cf3-454a-9806-8115634e62a5", + "name": "3363c62a-9cf3-454a-9806-8115634e62a5", "status": "Succeeded", - "startTime": "2022-09-19T10:48:30.9386103Z", - "endTime": "2022-09-19T10:48:31.8300451Z", + "startTime": "2022-10-25T15:34:46.6483291Z", + "endTime": "2022-10-25T15:34:47.648355Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:49:02 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A48%3A31.8237886Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:34:48 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A34%3A47.6504284Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35a3b516-35cc-4085-8a27-116f909ab8c6", + "x-ms-correlation-request-id": "b68f0925-30dd-4d61-9815-a97b272fca36", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104902Z:35a3b516-35cc-4085-8a27-116f909ab8c6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153448Z:b68f0925-30dd-4d61-9815-a97b272fca36", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-ec2121ad/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A48%3A31.8237886Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A34%3A47.6504284Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:48:29.7865626Z" + "CreatedOnDate": "2022-10-25T15:34:45.2463498Z" }, "properties": { - "poolId": "1870211b-491a-19a8-e314-495590bc3df8", + "poolId": "f781109d-679a-f45e-ecd0-4dcd154ec266", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:48:30.7478214Z", + "createdAt": "2022-10-25T15:34:46.376318Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:48:30.7478214Z" + "lastModifiedAt": "2022-10-25T15:34:46.376318Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "1583", + "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:49:16 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A49%3A14.7820646Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:35:01 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A35%3A00.8646085Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6e49e6a-5364-4a51-8013-e8093dff83f8", + "x-ms-correlation-request-id": "1f1123bf-4f51-4120-8846-dcc3d437be0b", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104916Z:f6e49e6a-5364-4a51-8013-e8093dff83f8", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153501Z:1f1123bf-4f51-4120-8846-dcc3d437be0b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad", "name": "sdk-py-tests-acc-1-ec2121ad/sdk-py-tests-pool-1/sdk-py-tests-vol-3-ec2121ad", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A49%3A14.7820646Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A35%3A00.8646085Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:49:12.8361499Z" + "CreatedOnDate": "2022-10-25T15:34:58.6647545Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:49:13.910604Z", + "createdAt": "2022-10-25T15:34:59.6484968Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:49:13.910604Z" + "lastModifiedAt": "2022-10-25T15:34:59.6484968Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:49:46 GMT", + "Date": "Tue, 25 Oct 2022 15:35:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2c7bc66-638d-4a89-97b2-5c019d9780b5", + "x-ms-correlation-request-id": "3dfccfab-3d09-4ab4-91a1-6ec1c2f60ff8", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T104946Z:f2c7bc66-638d-4a89-97b2-5c019d9780b5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153502Z:3dfccfab-3d09-4ab4-91a1-6ec1c2f60ff8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252", - "name": "0d5f17f0-881a-4611-83d8-1d4da0df6252", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", "status": "Creating", - "startTime": "2022-09-19T10:49:14.7891459Z", + "startTime": "2022-10-25T15:35:00.8636683Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:50:16 GMT", + "Date": "Tue, 25 Oct 2022 15:35:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1e44c69-4c1f-4bb6-8f75-ae4ad5de360b", + "x-ms-correlation-request-id": "6939b050-684d-450e-ada4-f1ee0f8ea213", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105016Z:b1e44c69-4c1f-4bb6-8f75-ae4ad5de360b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153532Z:6939b050-684d-450e-ada4-f1ee0f8ea213", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252", - "name": "0d5f17f0-881a-4611-83d8-1d4da0df6252", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", "status": "Creating", - "startTime": "2022-09-19T10:49:14.7891459Z", + "startTime": "2022-10-25T15:35:00.8636683Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:50:46 GMT", + "Date": "Tue, 25 Oct 2022 15:36:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4a61258-8c71-4a86-b6b5-063dd9150c82", + "x-ms-correlation-request-id": "7503ba9e-b818-4c4b-9696-f29b9ad7d24d", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105046Z:f4a61258-8c71-4a86-b6b5-063dd9150c82", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153602Z:7503ba9e-b818-4c4b-9696-f29b9ad7d24d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252", - "name": "0d5f17f0-881a-4611-83d8-1d4da0df6252", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", "status": "Creating", - "startTime": "2022-09-19T10:49:14.7891459Z", + "startTime": "2022-10-25T15:35:00.8636683Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:51:16 GMT", + "Date": "Tue, 25 Oct 2022 15:36:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c0e3e75-d1a9-4963-bd83-840b3534fd47", + "x-ms-correlation-request-id": "e94d1725-5295-499a-b3b2-e37d28052470", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105117Z:6c0e3e75-d1a9-4963-bd83-840b3534fd47", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153632Z:e94d1725-5295-499a-b3b2-e37d28052470", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252", - "name": "0d5f17f0-881a-4611-83d8-1d4da0df6252", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", "status": "Creating", - "startTime": "2022-09-19T10:49:14.7891459Z", + "startTime": "2022-10-25T15:35:00.8636683Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:51:47 GMT", + "Date": "Tue, 25 Oct 2022 15:37:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83204b6e-7d89-42e5-970a-457ae5d9bf47", + "x-ms-correlation-request-id": "edb41935-db02-4f68-824f-c2d1c4c7162e", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105147Z:83204b6e-7d89-42e5-970a-457ae5d9bf47", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153703Z:edb41935-db02-4f68-824f-c2d1c4c7162e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252", - "name": "0d5f17f0-881a-4611-83d8-1d4da0df6252", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", "status": "Creating", - "startTime": "2022-09-19T10:49:14.7891459Z", + "startTime": "2022-10-25T15:35:00.8636683Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:52:17 GMT", + "Date": "Tue, 25 Oct 2022 15:37:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd77791d-3793-447b-bc0b-f538b885b135", + "x-ms-correlation-request-id": "de24685d-77b0-4c8f-b5f6-9ac73e5a273e", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105217Z:dd77791d-3793-447b-bc0b-f538b885b135", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153733Z:de24685d-77b0-4c8f-b5f6-9ac73e5a273e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252", - "name": "0d5f17f0-881a-4611-83d8-1d4da0df6252", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", "status": "Creating", - "startTime": "2022-09-19T10:49:14.7891459Z", + "startTime": "2022-10-25T15:35:00.8636683Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:52:47 GMT", + "Date": "Tue, 25 Oct 2022 15:38:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77c5303d-b06c-4a81-8269-892e55eaa1f2", + "x-ms-correlation-request-id": "da4b217a-a7d5-4fe9-9a39-2fc2b330d279", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105247Z:77c5303d-b06c-4a81-8269-892e55eaa1f2", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153803Z:da4b217a-a7d5-4fe9-9a39-2fc2b330d279", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252", - "name": "0d5f17f0-881a-4611-83d8-1d4da0df6252", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", "status": "Creating", - "startTime": "2022-09-19T10:49:14.7891459Z", + "startTime": "2022-10-25T15:35:00.8636683Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:53:17 GMT", + "Date": "Tue, 25 Oct 2022 15:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1486,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4bf6e7d-6202-433f-b8ea-b680dbc6b04f", + "x-ms-correlation-request-id": "809b2758-ed8f-4c45-9d23-9c00ed9b0834", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105318Z:d4bf6e7d-6202-433f-b8ea-b680dbc6b04f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153833Z:809b2758-ed8f-4c45-9d23-9c00ed9b0834", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", + "status": "Creating", + "startTime": "2022-10-25T15:35:00.8636683Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:39:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "91eaff2c-0c02-43fc-8b1f-78a9b27ccc4a", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153904Z:91eaff2c-0c02-43fc-8b1f-78a9b27ccc4a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", + "status": "Creating", + "startTime": "2022-10-25T15:35:00.8636683Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:39:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f4dcb04c-3fb0-437b-bc43-1fcbbf37f3fb", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T153934Z:f4dcb04c-3fb0-437b-bc43-1fcbbf37f3fb", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", + "status": "Creating", + "startTime": "2022-10-25T15:35:00.8636683Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:40:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5136e80a-62a9-49c2-ae9e-4a277d61ba62", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154004Z:5136e80a-62a9-49c2-ae9e-4a277d61ba62", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d5f17f0-881a-4611-83d8-1d4da0df6252", - "name": "0d5f17f0-881a-4611-83d8-1d4da0df6252", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/be22aac2-7092-4a94-acf2-b92c89fbba83", + "name": "be22aac2-7092-4a94-acf2-b92c89fbba83", "status": "Succeeded", - "startTime": "2022-09-19T10:49:14.7891459Z", - "endTime": "2022-09-19T10:53:10.5080245Z", + "startTime": "2022-10-25T15:35:00.8636683Z", + "endTime": "2022-10-25T15:39:38.6551562Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad" @@ -1509,7 +1630,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1638,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:53:17 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T10%3A53%3A10.5010938Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:40:05 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A39%3A38.6520235Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1647,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd86f004-ad94-4473-aa7d-b302755da414", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105318Z:fd86f004-ad94-4473-aa7d-b302755da414", + "x-ms-correlation-request-id": "4f8c8f76-698c-45cb-be72-5cff1bd94983", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154005Z:4f8c8f76-698c-45cb-be72-5cff1bd94983", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad", "name": "sdk-py-tests-acc-1-ec2121ad/sdk-py-tests-pool-1/sdk-py-tests-vol-3-ec2121ad", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A53%3A10.5010938Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A39%3A38.6520235Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:49:12.8361499Z" + "CreatedOnDate": "2022-10-25T15:34:58.6647545Z" }, "properties": { - "fileSystemId": "fd9e5782-ffd3-7240-d8b9-1540eedb3a9d", + "fileSystemId": "2a15ff7c-3abc-27b0-37a4-9a18b1dfffc1", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-ec2121ad", "usageThreshold": 107374182400, @@ -1569,7 +1690,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c9738d7c", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_904e720d", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1705,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "fd9e5782-ffd3-7240-d8b9-1540eedb3a9d", - "fileSystemId": "fd9e5782-ffd3-7240-d8b9-1540eedb3a9d", + "mountTargetId": "2a15ff7c-3abc-27b0-37a4-9a18b1dfffc1", + "fileSystemId": "2a15ff7c-3abc-27b0-37a4-9a18b1dfffc1", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1726,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:49:13.910604Z", + "createdAt": "2022-10-25T15:34:59.6484968Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:49:13.910604Z" + "lastModifiedAt": "2022-10-25T15:34:59.6484968Z" } } }, @@ -1619,7 +1740,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1627,7 +1748,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:53:18 GMT", + "Date": "Tue, 25 Oct 2022 15:40:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1635,9 +1756,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc7a3c2d-076d-4f8c-a963-2c52a1fa6296", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105319Z:fc7a3c2d-076d-4f8c-a963-2c52a1fa6296", + "x-ms-correlation-request-id": "4aa170b3-8a2f-4fc9-a7ab-7945341f0743", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154006Z:4aa170b3-8a2f-4fc9-a7ab-7945341f0743", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1659,36 +1780,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:53:19 GMT", + "Date": "Tue, 25 Oct 2022 15:40:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "354cd896-9d8c-4ae5-b7ad-de64c6656a85", + "x-ms-correlation-request-id": "d60854ea-1860-4981-833d-1c0c8528d7b9", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105320Z:354cd896-9d8c-4ae5-b7ad-de64c6656a85", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154007Z:d60854ea-1860-4981-833d-1c0c8528d7b9", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1696,7 +1817,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:53:50 GMT", + "Date": "Tue, 25 Oct 2022 15:40:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1704,16 +1825,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4528aba-2602-4703-a8f9-204cbf8a4fbe", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105350Z:c4528aba-2602-4703-a8f9-204cbf8a4fbe", + "x-ms-correlation-request-id": "1806510c-3bbd-4588-aee5-65797016f529", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154007Z:1806510c-3bbd-4588-aee5-65797016f529", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811", - "name": "f5cb1529-8697-49f0-b691-c24437b77811", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242", + "name": "edeea58a-903f-47c2-8bb0-43d9bae49242", "status": "Deleting", - "startTime": "2022-09-19T10:53:19.9698702Z", + "startTime": "2022-10-25T15:40:07.2812614Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1722,13 +1843,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1736,7 +1857,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:54:21 GMT", + "Date": "Tue, 25 Oct 2022 15:40:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1744,16 +1865,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba49b12f-316c-4e5b-9383-b6eecd83a8cb", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105421Z:ba49b12f-316c-4e5b-9383-b6eecd83a8cb", + "x-ms-correlation-request-id": "2515dd19-3b1a-478d-8d6a-b17743e9f811", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154037Z:2515dd19-3b1a-478d-8d6a-b17743e9f811", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811", - "name": "f5cb1529-8697-49f0-b691-c24437b77811", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242", + "name": "edeea58a-903f-47c2-8bb0-43d9bae49242", "status": "Deleting", - "startTime": "2022-09-19T10:53:19.9698702Z", + "startTime": "2022-10-25T15:40:07.2812614Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1762,13 +1883,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1776,7 +1897,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:54:51 GMT", + "Date": "Tue, 25 Oct 2022 15:41:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1784,16 +1905,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4acc856-60ab-4728-9103-c8dfe7de065b", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105451Z:a4acc856-60ab-4728-9103-c8dfe7de065b", + "x-ms-correlation-request-id": "cab592fc-8ed4-41f8-8cba-d545db7f47f6", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154108Z:cab592fc-8ed4-41f8-8cba-d545db7f47f6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811", - "name": "f5cb1529-8697-49f0-b691-c24437b77811", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242", + "name": "edeea58a-903f-47c2-8bb0-43d9bae49242", "status": "Deleting", - "startTime": "2022-09-19T10:53:19.9698702Z", + "startTime": "2022-10-25T15:40:07.2812614Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1802,13 +1923,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1816,7 +1937,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:55:20 GMT", + "Date": "Tue, 25 Oct 2022 15:41:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1824,16 +1945,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e711455e-1300-4185-8076-f3261a98702c", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105521Z:e711455e-1300-4185-8076-f3261a98702c", + "x-ms-correlation-request-id": "56b1f566-77f5-4f17-8338-260de7d4680c", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154138Z:56b1f566-77f5-4f17-8338-260de7d4680c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811", - "name": "f5cb1529-8697-49f0-b691-c24437b77811", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242", + "name": "edeea58a-903f-47c2-8bb0-43d9bae49242", "status": "Deleting", - "startTime": "2022-09-19T10:53:19.9698702Z", + "startTime": "2022-10-25T15:40:07.2812614Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1842,13 +1963,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1856,7 +1977,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:55:52 GMT", + "Date": "Tue, 25 Oct 2022 15:42:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1864,17 +1985,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64b327e9-035c-4db9-95aa-91b2870ed0f9", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105552Z:64b327e9-035c-4db9-95aa-91b2870ed0f9", + "x-ms-correlation-request-id": "0e2e9e21-6c57-44f6-a61e-111e544b1338", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154208Z:0e2e9e21-6c57-44f6-a61e-111e544b1338", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811", - "name": "f5cb1529-8697-49f0-b691-c24437b77811", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242", + "name": "edeea58a-903f-47c2-8bb0-43d9bae49242", + "status": "Deleting", + "startTime": "2022-10-25T15:40:07.2812614Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:42:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f57e5ed8-c586-4208-b95f-07d08887c8c9", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154238Z:f57e5ed8-c586-4208-b95f-07d08887c8c9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242", + "name": "edeea58a-903f-47c2-8bb0-43d9bae49242", "status": "Succeeded", - "startTime": "2022-09-19T10:53:19.9698702Z", - "endTime": "2022-09-19T10:55:46.1906524Z", + "startTime": "2022-10-25T15:40:07.2812614Z", + "endTime": "2022-10-25T15:42:11.9995034Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad" @@ -1882,13 +2043,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5cb1529-8697-49f0-b691-c24437b77811?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/edeea58a-903f-47c2-8bb0-43d9bae49242?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1896,7 +2057,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:55:52 GMT", + "Date": "Tue, 25 Oct 2022 15:42:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1904,22 +2065,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af3c6d41-1697-4f63-9ed9-48fe0eb9aef2", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105552Z:af3c6d41-1697-4f63-9ed9-48fe0eb9aef2", + "x-ms-correlation-request-id": "41eac00b-2d06-41e6-9b4c-6670a4a7ddef", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154239Z:41eac00b-2d06-41e6-9b4c-6670a4a7ddef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad", "name": "sdk-py-tests-acc-1-ec2121ad/sdk-py-tests-pool-1/sdk-py-tests-vol-3-ec2121ad", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A55%3A29.0742319Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A42%3A02.3842148Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:49:12.8361499Z" + "CreatedOnDate": "2022-10-25T15:34:58.6647545Z" }, "properties": { - "fileSystemId": "fd9e5782-ffd3-7240-d8b9-1540eedb3a9d", + "fileSystemId": "2a15ff7c-3abc-27b0-37a4-9a18b1dfffc1", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-ec2121ad", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -1950,19 +2111,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_c9738d7c", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_904e720d", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-ec2121ad", - "poolId": "1870211b-491a-19a8-e314-495590bc3df8", + "poolId": "f781109d-679a-f45e-ecd0-4dcd154ec266", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "fd9e5782-ffd3-7240-d8b9-1540eedb3a9d", - "fileSystemId": "fd9e5782-ffd3-7240-d8b9-1540eedb3a9d", + "mountTargetId": "2a15ff7c-3abc-27b0-37a4-9a18b1dfffc1", + "fileSystemId": "2a15ff7c-3abc-27b0-37a4-9a18b1dfffc1", "startIp": "", "endIp": "", "gateway": "", @@ -1994,10 +2155,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:49:13.910604Z", + "createdAt": "2022-10-25T15:34:59.6484968Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:49:13.910604Z" + "lastModifiedAt": "2022-10-25T15:34:59.6484968Z" } } }, @@ -2008,7 +2169,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2016,14 +2177,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:59:13 GMT", + "Date": "Tue, 25 Oct 2022 15:46:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df98a185-01ea-4605-a08e-d660d42396b6", + "x-ms-correlation-request-id": "1496433e-c812-4eb8-9bc9-262614f24067", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105914Z:df98a185-01ea-4605-a08e-d660d42396b6" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154601Z:1496433e-c812-4eb8-9bc9-262614f24067" }, "ResponseBody": { "error": { @@ -2040,36 +2201,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f97ca163-1eaa-41db-91ba-f24ea0fa01c0?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fd5eea9-0670-4ca0-ac6c-c13cafa647bb?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 10:59:25 GMT", + "Date": "Tue, 25 Oct 2022 15:46:13 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f97ca163-1eaa-41db-91ba-f24ea0fa01c0?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fd5eea9-0670-4ca0-ac6c-c13cafa647bb?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4a15fc5-78a9-4295-80ab-d8e773d1d077", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105926Z:a4a15fc5-78a9-4295-80ab-d8e773d1d077", + "x-ms-correlation-request-id": "21b82db4-ac1f-4be5-817d-558ffac31f50", + "x-ms-ratelimit-remaining-subscription-deletes": "14990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154613Z:21b82db4-ac1f-4be5-817d-558ffac31f50", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f97ca163-1eaa-41db-91ba-f24ea0fa01c0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fd5eea9-0670-4ca0-ac6c-c13cafa647bb?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2077,7 +2238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:59:56 GMT", + "Date": "Tue, 25 Oct 2022 15:46:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2085,17 +2246,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91fae6f1-f5b7-40b7-beda-089b25cf045e", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105956Z:91fae6f1-f5b7-40b7-beda-089b25cf045e", + "x-ms-correlation-request-id": "3d66b16a-c9e5-4e50-8250-8da796d997db", + "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154614Z:3d66b16a-c9e5-4e50-8250-8da796d997db", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f97ca163-1eaa-41db-91ba-f24ea0fa01c0", - "name": "f97ca163-1eaa-41db-91ba-f24ea0fa01c0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fd5eea9-0670-4ca0-ac6c-c13cafa647bb", + "name": "5fd5eea9-0670-4ca0-ac6c-c13cafa647bb", + "status": "Deleting", + "startTime": "2022-10-25T15:46:13.8232345Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fd5eea9-0670-4ca0-ac6c-c13cafa647bb?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:46:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cbfcb2dd-0611-4133-b942-e65802cb59a2", + "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154644Z:cbfcb2dd-0611-4133-b942-e65802cb59a2", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fd5eea9-0670-4ca0-ac6c-c13cafa647bb", + "name": "5fd5eea9-0670-4ca0-ac6c-c13cafa647bb", "status": "Succeeded", - "startTime": "2022-09-19T10:59:26.2083072Z", - "endTime": "2022-09-19T10:59:27.1965943Z", + "startTime": "2022-10-25T15:46:13.8232345Z", + "endTime": "2022-10-25T15:46:14.7919799Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1" @@ -2103,13 +2304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f97ca163-1eaa-41db-91ba-f24ea0fa01c0?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5fd5eea9-0670-4ca0-ac6c-c13cafa647bb?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2117,7 +2318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 10:59:56 GMT", + "Date": "Tue, 25 Oct 2022 15:46:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2125,22 +2326,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1722308-f576-4f05-b839-2a535f37ba24", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T105956Z:b1722308-f576-4f05-b839-2a535f37ba24", + "x-ms-correlation-request-id": "04d11545-2bb0-4b79-b8fa-78e47e4239ed", + "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154644Z:04d11545-2bb0-4b79-b8fa-78e47e4239ed", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-ec2121ad/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T10%3A59%3A26.2163614Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A46%3A13.8250375Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:48:29.7865626Z" + "CreatedOnDate": "2022-10-25T15:34:45.2463498Z" }, "properties": { - "poolId": "1870211b-491a-19a8-e314-495590bc3df8", + "poolId": "f781109d-679a-f45e-ecd0-4dcd154ec266", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad/capacityPools/sdk-py-tests-pool-1", @@ -2154,10 +2355,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:48:30.7478214Z", + "createdAt": "2022-10-25T15:34:46.376318Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:48:30.7478214Z" + "lastModifiedAt": "2022-10-25T15:34:46.376318Z" } } }, @@ -2169,20 +2370,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:00:07 GMT", + "Date": "Tue, 25 Oct 2022 15:46:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b1602d2-c68d-4ba3-9d12-4616d772f8af", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110007Z:8b1602d2-c68d-4ba3-9d12-4616d772f8af" + "x-ms-correlation-request-id": "66246792-2caa-48b5-8e73-c5e545ca1b28", + "x-ms-ratelimit-remaining-subscription-deletes": "14989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154655Z:66246792-2caa-48b5-8e73-c5e545ca1b28" }, "ResponseBody": null }, @@ -2194,20 +2395,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:00:17 GMT", + "Date": "Tue, 25 Oct 2022 15:47:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8ac78ac-218c-4118-82c6-16ccfefea9cb", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110017Z:c8ac78ac-218c-4118-82c6-16ccfefea9cb" + "x-ms-correlation-request-id": "c1a7b16e-4ee2-4f10-9a27-614b518a11a5", + "x-ms-ratelimit-remaining-subscription-deletes": "14988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154706Z:c1a7b16e-4ee2-4f10-9a27-614b518a11a5" }, "ResponseBody": null }, @@ -2219,20 +2420,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:00:27 GMT", + "Date": "Tue, 25 Oct 2022 15:47:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1ea1c69-505a-4099-90ee-8b9f12a2874f", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110027Z:f1ea1c69-505a-4099-90ee-8b9f12a2874f" + "x-ms-correlation-request-id": "b8301245-939c-4898-90bf-01d971b7eaa3", + "x-ms-ratelimit-remaining-subscription-deletes": "14987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154716Z:b8301245-939c-4898-90bf-01d971b7eaa3" }, "ResponseBody": null }, @@ -2244,20 +2445,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:00:37 GMT", + "Date": "Tue, 25 Oct 2022 15:47:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03305d36-94dd-4b8f-93c2-786611b55ff7", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110038Z:03305d36-94dd-4b8f-93c2-786611b55ff7" + "x-ms-correlation-request-id": "52f1d9e5-7cc2-4ba0-8e61-b0fdf080b981", + "x-ms-ratelimit-remaining-subscription-deletes": "14986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154726Z:52f1d9e5-7cc2-4ba0-8e61-b0fdf080b981" }, "ResponseBody": null }, @@ -2268,7 +2469,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2276,14 +2477,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:00:47 GMT", + "Date": "Tue, 25 Oct 2022 15:47:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5872cb9d-1b2a-4a91-8a62-7866e708b2af", + "x-ms-correlation-request-id": "a46eccab-0848-45eb-bf92-f5f4d625f4e7", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110048Z:5872cb9d-1b2a-4a91-8a62-7866e708b2af" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154736Z:a46eccab-0848-45eb-bf92-f5f4d625f4e7" }, "ResponseBody": { "error": { @@ -2300,36 +2501,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f08c6d28-d6ec-4258-8f0c-9b7248ade548?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4bdf1f1-ca39-472e-abd6-121f4840f1b7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:00:49 GMT", + "Date": "Tue, 25 Oct 2022 15:47:37 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f08c6d28-d6ec-4258-8f0c-9b7248ade548?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4bdf1f1-ca39-472e-abd6-121f4840f1b7?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99a5d754-42ee-4a2e-ac09-e218e98fbe8b", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110049Z:99a5d754-42ee-4a2e-ac09-e218e98fbe8b", + "x-ms-correlation-request-id": "4fbf237d-7421-4dbb-9a34-c6b33e9a5767", + "x-ms-ratelimit-remaining-subscription-deletes": "14985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154738Z:4fbf237d-7421-4dbb-9a34-c6b33e9a5767", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f08c6d28-d6ec-4258-8f0c-9b7248ade548?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4bdf1f1-ca39-472e-abd6-121f4840f1b7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2337,7 +2538,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:01:19 GMT", + "Date": "Tue, 25 Oct 2022 15:47:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2345,17 +2546,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2eb54dc0-9e11-4bb0-8aa0-362594202eda", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110120Z:2eb54dc0-9e11-4bb0-8aa0-362594202eda", + "x-ms-correlation-request-id": "6d71c038-8abe-4c06-a57b-e5eb00614fe1", + "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154738Z:6d71c038-8abe-4c06-a57b-e5eb00614fe1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f08c6d28-d6ec-4258-8f0c-9b7248ade548", - "name": "f08c6d28-d6ec-4258-8f0c-9b7248ade548", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4bdf1f1-ca39-472e-abd6-121f4840f1b7", + "name": "d4bdf1f1-ca39-472e-abd6-121f4840f1b7", "status": "Succeeded", - "startTime": "2022-09-19T11:00:49.7256438Z", - "endTime": "2022-09-19T11:00:49.788139Z", + "startTime": "2022-10-25T15:47:38.3603932Z", + "endTime": "2022-10-25T15:47:38.4072816Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad" @@ -2363,13 +2564,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f08c6d28-d6ec-4258-8f0c-9b7248ade548?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d4bdf1f1-ca39-472e-abd6-121f4840f1b7?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2377,7 +2578,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:01:19 GMT", + "Date": "Tue, 25 Oct 2022 15:47:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2385,19 +2586,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13b26a00-5462-40f9-a322-e9f49225a93c", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110120Z:13b26a00-5462-40f9-a322-e9f49225a93c", + "x-ms-correlation-request-id": "333d5c6c-648a-4b6d-8bfe-ef2a0b51798f", + "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154738Z:333d5c6c-648a-4b6d-8bfe-ef2a0b51798f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad", "name": "sdk-py-tests-acc-1-ec2121ad", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A00%3A49.7355301Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A47%3A38.3618244Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T10:47:55.7379713Z" + "CreatedOnDate": "2022-10-25T15:34:41.0814458Z" }, "properties": { "encryption": { @@ -2408,10 +2609,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T10:47:56.818564Z", + "createdAt": "2022-10-25T15:34:42.0767378Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T10:47:56.818564Z" + "lastModifiedAt": "2022-10-25T15:34:42.0767378Z" } } }, @@ -2422,50 +2623,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:01:19 GMT", + "Date": "Tue, 25 Oct 2022 15:47:38 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45aba1f2-3864-426c-8a16-968f97696f24", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110120Z:45aba1f2-3864-426c-8a16-968f97696f24" + "x-ms-correlation-request-id": "29c7a20b-ad89-4361-ad13-b83025aa6197", + "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154739Z:29c7a20b-ad89-4361-ad13-b83025aa6197", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-ec2121ad\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-ec2121ad?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a2ab5dcc-3b24-44a7-bf1c-f9c444b7b190?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b6ff2a62-3b22-42d8-90ae-165a3de01819?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:01:20 GMT", + "Date": "Tue, 25 Oct 2022 15:47:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/a2ab5dcc-3b24-44a7-bf1c-f9c444b7b190?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/b6ff2a62-3b22-42d8-90ae-165a3de01819?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -2474,10 +2677,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c22e5276-540d-40d4-ad8f-f0d56cfae779", - "x-ms-correlation-request-id": "185ab87b-8db1-4e7d-b0ff-64595c5709cc", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110121Z:185ab87b-8db1-4e7d-b0ff-64595c5709cc" + "x-ms-arm-service-request-id": "6b12746a-8699-4f42-a34f-bc2071d07e25", + "x-ms-correlation-request-id": "d42a668d-4a60-4c8d-bdd3-ae6ea1d479e4", + "x-ms-ratelimit-remaining-subscription-deletes": "14984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154740Z:d42a668d-4a60-4c8d-bdd3-ae6ea1d479e4" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_create_delete_list_volume.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_create_delete_list_volume.json index 7d808a92e2b8..674c3645ee33 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_create_delete_list_volume.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_create_delete_list_volume.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:26 GMT", + "Date": "Tue, 25 Oct 2022 15:48:39 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:26 GMT", + "Date": "Tue, 25 Oct 2022 15:48:39 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "72b24ce8-51f9-4f48-a438-088ac32b4d5b", + "client-request-id": "54b23a17-3741-48d2-a07e-4aa934b3b2c6", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "72b24ce8-51f9-4f48-a438-088ac32b4d5b", + "client-request-id": "54b23a17-3741-48d2-a07e-4aa934b3b2c6", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:26 GMT", + "Date": "Tue, 25 Oct 2022 15:48:39 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0a3ce3bf-3a24-4d1d-bd1c-ccfa3af5a172?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/19c75fba-dd6f-41e8-bd2e-d378d176c226?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:32 GMT", + "Date": "Tue, 25 Oct 2022 15:48:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b18ff4bd-f3de-4e11-a702-36d42a1588c2", - "x-ms-correlation-request-id": "5333541f-a4e7-451e-bddb-88413d4fa469", + "x-ms-arm-service-request-id": "6d11f8a6-f1e8-4cad-b6fc-ff4028447138", + "x-ms-correlation-request-id": "226baa3b-a429-4e75-b086-9fcc6016f03c", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110433Z:5333541f-a4e7-451e-bddb-88413d4fa469" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154850Z:226baa3b-a429-4e75-b086-9fcc6016f03c" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-9f8d2912", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912", - "etag": "W/\u0022c20d18ff-bd9b-42c5-8ae4-10e15b4196fc\u0022", + "etag": "W/\u00227dd5155f-6b5c-4b7c-93e6-63d57a86a7f3\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:04:28.7904388Z" + "CreatedOnDate": "2022-10-25T15:48:42.7929978Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "f2754f3d-2159-4fe6-b8cc-48fe1e7bde7c", + "resourceGuid": "fb3cffe1-69f5-4486-8cbf-915434dbeef4", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0a3ce3bf-3a24-4d1d-bd1c-ccfa3af5a172?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/19c75fba-dd6f-41e8-bd2e-d378d176c226?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:35 GMT", + "Date": "Tue, 25 Oct 2022 15:48:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9b163e18-5142-47db-922c-b95e4fdcb638", - "x-ms-correlation-request-id": "08db494d-e0ab-4748-b132-90aa8687d176", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110436Z:08db494d-e0ab-4748-b132-90aa8687d176" + "x-ms-arm-service-request-id": "4daf1e30-9078-4ef9-9fb9-03baec840e64", + "x-ms-correlation-request-id": "610bfebe-c4e2-4ccb-963d-2ad7d19451e6", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154850Z:610bfebe-c4e2-4ccb-963d-2ad7d19451e6" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:36 GMT", - "ETag": "W/\u0022685c3055-eb0f-4aa7-bfd7-41ca0309f70c\u0022", + "Date": "Tue, 25 Oct 2022 15:48:50 GMT", + "ETag": "W/\u002229d77f76-3a16-4b9f-8ba2-6dde7b594961\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "df3f77cc-e16a-427a-a4dd-d94944b9d56f", - "x-ms-correlation-request-id": "9453ba1c-5d21-4a46-8cbf-956d5074b63b", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110437Z:9453ba1c-5d21-4a46-8cbf-956d5074b63b" + "x-ms-arm-service-request-id": "ea411e27-d350-440f-9ec7-4fb997e5ae66", + "x-ms-correlation-request-id": "bee7cff3-3755-440e-a293-c88bf049e04b", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154850Z:bee7cff3-3755-440e-a293-c88bf049e04b" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-9f8d2912", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912", - "etag": "W/\u0022685c3055-eb0f-4aa7-bfd7-41ca0309f70c\u0022", + "etag": "W/\u002229d77f76-3a16-4b9f-8ba2-6dde7b594961\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:04:28.7904388Z" + "CreatedOnDate": "2022-10-25T15:48:42.7929978Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "f2754f3d-2159-4fe6-b8cc-48fe1e7bde7c", + "resourceGuid": "fb3cffe1-69f5-4486-8cbf-915434dbeef4", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e74185b4-34e8-4070-9f5a-edc72a6f06cf?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a3e5cb45-558e-453e-bc96-4af805c40c40?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:37 GMT", + "Date": "Tue, 25 Oct 2022 15:48:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "fb8463ed-eae5-421e-92d6-605d0fc3858d", - "x-ms-correlation-request-id": "02d7beeb-3eb9-46d0-9ead-84d1166f5694", + "x-ms-arm-service-request-id": "1339d245-b700-4d4e-a271-f369f85c6dc2", + "x-ms-correlation-request-id": "44b720f7-704f-4bce-a963-b9b974f16dc8", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110438Z:02d7beeb-3eb9-46d0-9ead-84d1166f5694" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154851Z:44b720f7-704f-4bce-a963-b9b974f16dc8" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default", - "etag": "W/\u00225b4581d3-624f-4bcf-947a-953c5ada438c\u0022", + "etag": "W/\u00227fb17ab8-5ea1-4b1c-b958-f3a5ba82422c\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00225b4581d3-624f-4bcf-947a-953c5ada438c\u0022", + "etag": "W/\u00227fb17ab8-5ea1-4b1c-b958-f3a5ba82422c\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e74185b4-34e8-4070-9f5a-edc72a6f06cf?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a3e5cb45-558e-453e-bc96-4af805c40c40?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:40 GMT", + "Date": "Tue, 25 Oct 2022 15:48:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "3378eb77-cdef-4bed-9a0c-dee8439f0510", - "x-ms-correlation-request-id": "1e217328-dc0a-4c96-9f97-5ef728a1e34d", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110441Z:1e217328-dc0a-4c96-9f97-5ef728a1e34d" + "x-ms-arm-service-request-id": "fbdfda05-0d54-41cc-9a08-dd668ace7403", + "x-ms-correlation-request-id": "34380c4d-e244-492f-bb92-7d818a2a20ca", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154851Z:34380c4d-e244-492f-bb92-7d818a2a20ca" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:41 GMT", - "ETag": "W/\u00220f9b7f73-9c66-439a-b1aa-f4f3a6414a2d\u0022", + "Date": "Tue, 25 Oct 2022 15:48:51 GMT", + "ETag": "W/\u0022179c3c6e-5358-44f8-bbec-8bda8b53010a\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "d7b06799-8497-4ace-be71-a86293289813", - "x-ms-correlation-request-id": "6b157b06-24c8-443a-8fd7-7c797e45b964", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110441Z:6b157b06-24c8-443a-8fd7-7c797e45b964" + "x-ms-arm-service-request-id": "7bcc347b-bf01-47fc-a04f-d4fbad29c2f5", + "x-ms-correlation-request-id": "db11067d-e785-4cad-b6d0-3de06e7433f8", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154852Z:db11067d-e785-4cad-b6d0-3de06e7433f8" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default", - "etag": "W/\u00220f9b7f73-9c66-439a-b1aa-f4f3a6414a2d\u0022", + "etag": "W/\u0022179c3c6e-5358-44f8-bbec-8bda8b53010a\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00220f9b7f73-9c66-439a-b1aa-f4f3a6414a2d\u0022", + "etag": "W/\u0022179c3c6e-5358-44f8-bbec-8bda8b53010a\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:41 GMT", + "Date": "Tue, 25 Oct 2022 15:48:51 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:41 GMT", + "Date": "Tue, 25 Oct 2022 15:48:51 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "de12a73c-0ed1-4a4b-92bd-ae4590db5034", + "client-request-id": "09864c40-ee3b-4838-afbf-3bbb47a77a94", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "de12a73c-0ed1-4a4b-92bd-ae4590db5034", + "client-request-id": "09864c40-ee3b-4838-afbf-3bbb47a77a94", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:42 GMT", + "Date": "Tue, 25 Oct 2022 15:48:51 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48345992-1b7f-4168-b620-ac602b0bf372?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d87f5d9-31f5-45d6-807b-7d7ccab98255?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "705", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:04:45 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A04%3A45.475279Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:48:56 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A48%3A55.971426Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f167cc54-2e89-416e-b715-b2a0f17d4cde", + "x-ms-correlation-request-id": "939d19e5-355d-4fe9-a89d-e1ff802039fe", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110446Z:f167cc54-2e89-416e-b715-b2a0f17d4cde", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154857Z:939d19e5-355d-4fe9-a89d-e1ff802039fe", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912", "name": "sdk-py-tests-acc-1-9f8d2912", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A04%3A45.475279Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A48%3A55.971426Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:04:42.9096655Z" + "CreatedOnDate": "2022-10-25T15:48:53.9541670Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:04:44.5661851Z", + "createdAt": "2022-10-25T15:48:54.9495944Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:04:44.5661851Z" + "lastModifiedAt": "2022-10-25T15:48:54.9495944Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48345992-1b7f-4168-b620-ac602b0bf372?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d87f5d9-31f5-45d6-807b-7d7ccab98255?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:05:15 GMT", + "Date": "Tue, 25 Oct 2022 15:48:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae50a215-7a83-4cdb-b4a8-b9e855150b77", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110516Z:ae50a215-7a83-4cdb-b4a8-b9e855150b77", + "x-ms-correlation-request-id": "3f3501e2-9284-41c9-83d3-f4f03919c14f", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154857Z:3f3501e2-9284-41c9-83d3-f4f03919c14f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48345992-1b7f-4168-b620-ac602b0bf372", - "name": "48345992-1b7f-4168-b620-ac602b0bf372", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8d87f5d9-31f5-45d6-807b-7d7ccab98255", + "name": "8d87f5d9-31f5-45d6-807b-7d7ccab98255", "status": "Succeeded", - "startTime": "2022-09-19T11:04:45.4679646Z", - "endTime": "2022-09-19T11:04:45.5460779Z", + "startTime": "2022-10-25T15:48:55.9743515Z", + "endTime": "2022-10-25T15:48:56.0368486Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:05:16 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A04%3A45.5462496Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:48:57 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A48%3A56.043502Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "baf08225-1e51-4e4d-a135-437495b575c2", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110517Z:baf08225-1e51-4e4d-a135-437495b575c2", + "x-ms-correlation-request-id": "0c4f0417-59e4-4d5a-b543-3f41d61200cc", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154857Z:0c4f0417-59e4-4d5a-b543-3f41d61200cc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912", "name": "sdk-py-tests-acc-1-9f8d2912", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A04%3A45.5462496Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A48%3A56.043502Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:04:42.9096655Z" + "CreatedOnDate": "2022-10-25T15:48:53.9541670Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:04:44.5661851Z", + "createdAt": "2022-10-25T15:48:54.9495944Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:04:44.5661851Z" + "lastModifiedAt": "2022-10-25T15:48:54.9495944Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31f3f665-d5e7-4c33-b1f4-7dbf4a82c9af?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775c7e6b-dbb2-43bf-bf30-5c83cf6c1979?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "921", + "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:05:19 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A05%3A19.126687Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:48:59 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A48%3A59.4854597Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14e44153-dfc8-42b9-bf4c-63b328b39bfb", + "x-ms-correlation-request-id": "04504b7b-34d2-4397-a866-28c4e5e6aedf", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110520Z:14e44153-dfc8-42b9-bf4c-63b328b39bfb", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154900Z:04504b7b-34d2-4397-a866-28c4e5e6aedf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-9f8d2912/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A05%3A19.126687Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A48%3A59.4854597Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:05:17.3815326Z" + "CreatedOnDate": "2022-10-25T15:48:58.2294120Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:05:18.9266991Z", + "createdAt": "2022-10-25T15:48:59.2331504Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:05:18.9266991Z" + "lastModifiedAt": "2022-10-25T15:48:59.2331504Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31f3f665-d5e7-4c33-b1f4-7dbf4a82c9af?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775c7e6b-dbb2-43bf-bf30-5c83cf6c1979?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:05:50 GMT", + "Date": "Tue, 25 Oct 2022 15:48:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0458f44c-dfea-47c7-a9f3-47c654c8ca64", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110550Z:0458f44c-dfea-47c7-a9f3-47c654c8ca64", + "x-ms-correlation-request-id": "e38387a7-82eb-45bf-b5d0-0b7577ec50ed", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154900Z:e38387a7-82eb-45bf-b5d0-0b7577ec50ed", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/31f3f665-d5e7-4c33-b1f4-7dbf4a82c9af", - "name": "31f3f665-d5e7-4c33-b1f4-7dbf4a82c9af", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/775c7e6b-dbb2-43bf-bf30-5c83cf6c1979", + "name": "775c7e6b-dbb2-43bf-bf30-5c83cf6c1979", "status": "Succeeded", - "startTime": "2022-09-19T11:05:19.1267087Z", - "endTime": "2022-09-19T11:05:19.8454479Z", + "startTime": "2022-10-25T15:48:59.4913425Z", + "endTime": "2022-10-25T15:49:00.365884Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:05:50 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A05%3A19.8498618Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:49:00 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A49%3A00.3570407Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3625998-3b4c-4d35-8fb2-db3d7012bf11", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110551Z:b3625998-3b4c-4d35-8fb2-db3d7012bf11", + "x-ms-correlation-request-id": "bf78fec6-0d63-4656-b68c-32ff8da1d3fd", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154900Z:bf78fec6-0d63-4656-b68c-32ff8da1d3fd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-9f8d2912/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A05%3A19.8498618Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A49%3A00.3570407Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:05:17.3815326Z" + "CreatedOnDate": "2022-10-25T15:48:58.2294120Z" }, "properties": { - "poolId": "95563b8a-42b1-339a-decb-b1887f848b23", + "poolId": "5bb3a46f-451a-136f-f3e5-5603836caedf", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:05:18.9266991Z", + "createdAt": "2022-10-25T15:48:59.2331504Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:05:18.9266991Z" + "lastModifiedAt": "2022-10-25T15:48:59.2331504Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "774", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "1552", + "Content-Length": "1558", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:06:05 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A06%3A04.0965431Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:49:13 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A49%3A12.7360469Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7e04d74-81ed-426e-9a6c-e54642f9359b", + "x-ms-correlation-request-id": "21e5d6d6-159f-4b1a-a174-69170bc53cdc", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110605Z:e7e04d74-81ed-426e-9a6c-e54642f9359b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154913Z:21e5d6d6-159f-4b1a-a174-69170bc53cdc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3", "name": "sdk-py-tests-acc-1-9f8d2912/sdk-py-tests-pool-1/sdk-py-tests-vol-3", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A06%3A04.0965431Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A49%3A12.7360469Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:06:01.3350089Z" + "CreatedOnDate": "2022-10-25T15:49:11.3294972Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:06:03.0685Z", + "createdAt": "2022-10-25T15:49:12.4754229Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:06:03.0685Z" + "lastModifiedAt": "2022-10-25T15:49:12.4754229Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:06:35 GMT", + "Date": "Tue, 25 Oct 2022 15:49:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "468bf1fc-1782-4f11-935f-2b0f4612552a", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110635Z:468bf1fc-1782-4f11-935f-2b0f4612552a", + "x-ms-correlation-request-id": "5c3046fc-511e-4de6-abb2-48566373f98c", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154914Z:5c3046fc-511e-4de6-abb2-48566373f98c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", - "name": "d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", "status": "Creating", - "startTime": "2022-09-19T11:06:04.0948821Z", + "startTime": "2022-10-25T15:49:12.7477169Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:07:05 GMT", + "Date": "Tue, 25 Oct 2022 15:49:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "946a35be-11d9-4f8b-86d2-b2faf1632446", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110705Z:946a35be-11d9-4f8b-86d2-b2faf1632446", + "x-ms-correlation-request-id": "98476a64-776f-4d99-bc31-9919a7ce2079", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T154944Z:98476a64-776f-4d99-bc31-9919a7ce2079", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", - "name": "d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", "status": "Creating", - "startTime": "2022-09-19T11:06:04.0948821Z", + "startTime": "2022-10-25T15:49:12.7477169Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:07:35 GMT", + "Date": "Tue, 25 Oct 2022 15:50:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "200e81f3-b963-4760-8859-ab05c8bf8c1a", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110736Z:200e81f3-b963-4760-8859-ab05c8bf8c1a", + "x-ms-correlation-request-id": "afac5198-4590-4b46-b116-25bea6043cad", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155014Z:afac5198-4590-4b46-b116-25bea6043cad", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", - "name": "d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", "status": "Creating", - "startTime": "2022-09-19T11:06:04.0948821Z", + "startTime": "2022-10-25T15:49:12.7477169Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:08:06 GMT", + "Date": "Tue, 25 Oct 2022 15:50:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70619bd6-e61c-4109-abf8-b07d1866c8cd", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110806Z:70619bd6-e61c-4109-abf8-b07d1866c8cd", + "x-ms-correlation-request-id": "ec9ad697-7934-43f1-a189-11e3950e08ac", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155044Z:ec9ad697-7934-43f1-a189-11e3950e08ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", - "name": "d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", "status": "Creating", - "startTime": "2022-09-19T11:06:04.0948821Z", + "startTime": "2022-10-25T15:49:12.7477169Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:08:36 GMT", + "Date": "Tue, 25 Oct 2022 15:51:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2db8b7c-21b1-4cb3-b624-06d693f88cff", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110836Z:b2db8b7c-21b1-4cb3-b624-06d693f88cff", + "x-ms-correlation-request-id": "ddf4a9fe-0438-4123-82d2-e2dfc70437a7", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155115Z:ddf4a9fe-0438-4123-82d2-e2dfc70437a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", - "name": "d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", "status": "Creating", - "startTime": "2022-09-19T11:06:04.0948821Z", + "startTime": "2022-10-25T15:49:12.7477169Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:09:06 GMT", + "Date": "Tue, 25 Oct 2022 15:51:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1497a247-9594-4d68-90f1-bcceea91de0b", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110906Z:1497a247-9594-4d68-90f1-bcceea91de0b", + "x-ms-correlation-request-id": "68f42ad1-3e73-4c36-bb33-a92e80226cc9", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155145Z:68f42ad1-3e73-4c36-bb33-a92e80226cc9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", - "name": "d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", "status": "Creating", - "startTime": "2022-09-19T11:06:04.0948821Z", + "startTime": "2022-10-25T15:49:12.7477169Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:09:37 GMT", + "Date": "Tue, 25 Oct 2022 15:52:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "476e588b-c7b7-480f-8812-dec1dd01c18f", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T110937Z:476e588b-c7b7-480f-8812-dec1dd01c18f", + "x-ms-correlation-request-id": "5575937c-3bcc-49c3-9bfe-3cf67abcf39e", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155215Z:5575937c-3bcc-49c3-9bfe-3cf67abcf39e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", - "name": "d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", "status": "Creating", - "startTime": "2022-09-19T11:06:04.0948821Z", + "startTime": "2022-10-25T15:49:12.7477169Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:10:06 GMT", + "Date": "Tue, 25 Oct 2022 15:52:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1486,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c5757e6d-4b32-4097-85ac-9cad4b9be5bf", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111007Z:c5757e6d-4b32-4097-85ac-9cad4b9be5bf", + "x-ms-correlation-request-id": "5c155b1b-63ca-4148-9f93-53f6326df85f", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155245Z:5c155b1b-63ca-4148-9f93-53f6326df85f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", + "status": "Creating", + "startTime": "2022-10-25T15:49:12.7477169Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:53:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f2c7a6f7-e377-4c8a-ba0f-e814782fc8d8", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155316Z:f2c7a6f7-e377-4c8a-ba0f-e814782fc8d8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", - "name": "d6bfc85f-6436-4af7-b48c-55ed49ed8ab3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", + "status": "Creating", + "startTime": "2022-10-25T15:49:12.7477169Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:53:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "934c3964-bc96-436a-b680-11a5dff0c9d8", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155346Z:934c3964-bc96-436a-b680-11a5dff0c9d8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", + "status": "Creating", + "startTime": "2022-10-25T15:49:12.7477169Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:54:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "86f6811d-9b17-4a42-8f21-cf52f636dabc", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155416Z:86f6811d-9b17-4a42-8f21-cf52f636dabc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3efc413f-b4e6-4e31-9425-17f38d9570a3", + "name": "3efc413f-b4e6-4e31-9425-17f38d9570a3", "status": "Succeeded", - "startTime": "2022-09-19T11:06:04.0948821Z", - "endTime": "2022-09-19T11:10:04.6813053Z", + "startTime": "2022-10-25T15:49:12.7477169Z", + "endTime": "2022-10-25T15:53:52.9691622Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3" @@ -1509,7 +1630,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1638,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:10:07 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A10%3A04.6778242Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 15:54:17 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T15%3A53%3A52.9705428Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1647,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf66fea8-bed3-4a89-99cd-522b290f9be6", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111007Z:bf66fea8-bed3-4a89-99cd-522b290f9be6", + "x-ms-correlation-request-id": "0d715d9d-e68e-4faf-a5d2-e4105f2e8d94", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155417Z:0d715d9d-e68e-4faf-a5d2-e4105f2e8d94", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3", "name": "sdk-py-tests-acc-1-9f8d2912/sdk-py-tests-pool-1/sdk-py-tests-vol-3", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A10%3A04.6778242Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A53%3A52.9705428Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:06:01.3350089Z" + "CreatedOnDate": "2022-10-25T15:49:11.3294972Z" }, "properties": { - "fileSystemId": "8b4c4289-3ad0-cd02-9df6-151a3b9e682e", + "fileSystemId": "368100a9-6e9a-452a-6a4e-02070c950abb", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3", "usageThreshold": 107374182400, @@ -1569,7 +1690,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_963f4053", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_96ab975c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1705,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "8b4c4289-3ad0-cd02-9df6-151a3b9e682e", - "fileSystemId": "8b4c4289-3ad0-cd02-9df6-151a3b9e682e", + "mountTargetId": "368100a9-6e9a-452a-6a4e-02070c950abb", + "fileSystemId": "368100a9-6e9a-452a-6a4e-02070c950abb", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1726,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:06:03.0685Z", + "createdAt": "2022-10-25T15:49:12.4754229Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:06:03.0685Z" + "lastModifiedAt": "2022-10-25T15:49:12.4754229Z" } } }, @@ -1619,7 +1740,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1627,7 +1748,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:10:07 GMT", + "Date": "Tue, 25 Oct 2022 15:54:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1635,9 +1756,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39acf77d-5c1e-477f-91e7-5002c6ddf831", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111008Z:39acf77d-5c1e-477f-91e7-5002c6ddf831", + "x-ms-correlation-request-id": "1fc07506-535a-4e30-a8b3-69b982143641", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155417Z:1fc07506-535a-4e30-a8b3-69b982143641", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1646,13 +1767,13 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3", "name": "sdk-py-tests-acc-1-9f8d2912/sdk-py-tests-pool-1/sdk-py-tests-vol-3", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A10%3A04.6778242Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A53%3A52.9705428Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:06:01.3350089Z" + "CreatedOnDate": "2022-10-25T15:49:11.3294972Z" }, "properties": { - "fileSystemId": "8b4c4289-3ad0-cd02-9df6-151a3b9e682e", + "fileSystemId": "368100a9-6e9a-452a-6a4e-02070c950abb", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3", "usageThreshold": 107374182400, @@ -1680,7 +1801,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_963f4053", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_96ab975c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1695,8 +1816,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "8b4c4289-3ad0-cd02-9df6-151a3b9e682e", - "fileSystemId": "8b4c4289-3ad0-cd02-9df6-151a3b9e682e", + "mountTargetId": "368100a9-6e9a-452a-6a4e-02070c950abb", + "fileSystemId": "368100a9-6e9a-452a-6a4e-02070c950abb", "ipAddress": "10.0.0.4" } ], @@ -1716,10 +1837,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:06:03.0685Z", + "createdAt": "2022-10-25T15:49:12.4754229Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:06:03.0685Z" + "lastModifiedAt": "2022-10-25T15:49:12.4754229Z" } } ] @@ -1733,36 +1854,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8ff771-e16d-4088-9c69-b6a36531a5f9?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:10:08 GMT", + "Date": "Tue, 25 Oct 2022 15:54:18 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8ff771-e16d-4088-9c69-b6a36531a5f9?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "980a3b9f-211a-45cf-9ca1-c1c50cafb6a5", + "x-ms-correlation-request-id": "15b13f69-a632-4701-ba13-3a38d0218821", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111009Z:980a3b9f-211a-45cf-9ca1-c1c50cafb6a5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155418Z:15b13f69-a632-4701-ba13-3a38d0218821", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8ff771-e16d-4088-9c69-b6a36531a5f9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1770,7 +1891,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:10:38 GMT", + "Date": "Tue, 25 Oct 2022 15:54:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1778,16 +1899,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97ea002a-9450-4a53-855b-c2a7bc035745", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111039Z:97ea002a-9450-4a53-855b-c2a7bc035745", + "x-ms-correlation-request-id": "38748328-510a-4212-8be2-17f887aae133", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155418Z:38748328-510a-4212-8be2-17f887aae133", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8ff771-e16d-4088-9c69-b6a36531a5f9", - "name": "7a8ff771-e16d-4088-9c69-b6a36531a5f9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "name": "412b1ec0-bfd3-4ca0-8155-bcfa666651d8", "status": "Deleting", - "startTime": "2022-09-19T11:10:08.8534684Z", + "startTime": "2022-10-25T15:54:18.4646022Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1796,13 +1917,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8ff771-e16d-4088-9c69-b6a36531a5f9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1810,7 +1931,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:11:09 GMT", + "Date": "Tue, 25 Oct 2022 15:54:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1818,17 +1939,217 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "168b27c1-a1b5-450b-89e0-16c4d6cf8ba1", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111109Z:168b27c1-a1b5-450b-89e0-16c4d6cf8ba1", + "x-ms-correlation-request-id": "9317b6f7-599d-4a7d-9bb0-a271faf5643b", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155449Z:9317b6f7-599d-4a7d-9bb0-a271faf5643b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8ff771-e16d-4088-9c69-b6a36531a5f9", - "name": "7a8ff771-e16d-4088-9c69-b6a36531a5f9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "name": "412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "status": "Deleting", + "startTime": "2022-10-25T15:54:18.4646022Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:55:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6f5a9c71-534e-4a5b-a833-287bc564c376", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155519Z:6f5a9c71-534e-4a5b-a833-287bc564c376", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "name": "412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "status": "Deleting", + "startTime": "2022-10-25T15:54:18.4646022Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:55:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e0a94165-f3e1-42d8-bfe9-15fbc082e031", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155550Z:e0a94165-f3e1-42d8-bfe9-15fbc082e031", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "name": "412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "status": "Deleting", + "startTime": "2022-10-25T15:54:18.4646022Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:56:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fca25169-4e08-4d36-b60c-3fd42d38e8f3", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155620Z:fca25169-4e08-4d36-b60c-3fd42d38e8f3", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "name": "412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "status": "Deleting", + "startTime": "2022-10-25T15:54:18.4646022Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:56:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7f4b3b5d-3a9f-4534-8849-cea5ba4be7f1", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155650Z:7f4b3b5d-3a9f-4534-8849-cea5ba4be7f1", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "name": "412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "status": "Deleting", + "startTime": "2022-10-25T15:54:18.4646022Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 15:57:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "31017fde-b6d1-4736-b7b9-ce5496f192b9", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155721Z:31017fde-b6d1-4736-b7b9-ce5496f192b9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8", + "name": "412b1ec0-bfd3-4ca0-8155-bcfa666651d8", "status": "Succeeded", - "startTime": "2022-09-19T11:10:08.8534684Z", - "endTime": "2022-09-19T11:11:05.4346744Z", + "startTime": "2022-10-25T15:54:18.4646022Z", + "endTime": "2022-10-25T15:57:00.512876Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3" @@ -1836,13 +2157,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7a8ff771-e16d-4088-9c69-b6a36531a5f9?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/412b1ec0-bfd3-4ca0-8155-bcfa666651d8?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1850,7 +2171,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:11:10 GMT", + "Date": "Tue, 25 Oct 2022 15:57:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1858,22 +2179,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b2a410a-b8eb-4429-9c79-236f3f2b841c", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111110Z:7b2a410a-b8eb-4429-9c79-236f3f2b841c", + "x-ms-correlation-request-id": "0b8b9ec2-7ecf-4f44-928c-56f5b73125be", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T155721Z:0b8b9ec2-7ecf-4f44-928c-56f5b73125be", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3", "name": "sdk-py-tests-acc-1-9f8d2912/sdk-py-tests-pool-1/sdk-py-tests-vol-3", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A10%3A56.391878Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T15%3A56%3A55.2749306Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:06:01.3350089Z" + "CreatedOnDate": "2022-10-25T15:49:11.3294972Z" }, "properties": { - "fileSystemId": "8b4c4289-3ad0-cd02-9df6-151a3b9e682e", + "fileSystemId": "368100a9-6e9a-452a-6a4e-02070c950abb", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -1904,19 +2225,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_963f4053", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_96ab975c", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3", - "poolId": "95563b8a-42b1-339a-decb-b1887f848b23", + "poolId": "5bb3a46f-451a-136f-f3e5-5603836caedf", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "8b4c4289-3ad0-cd02-9df6-151a3b9e682e", - "fileSystemId": "8b4c4289-3ad0-cd02-9df6-151a3b9e682e", + "mountTargetId": "368100a9-6e9a-452a-6a4e-02070c950abb", + "fileSystemId": "368100a9-6e9a-452a-6a4e-02070c950abb", "startIp": "", "endIp": "", "gateway": "", @@ -1948,10 +2269,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:06:03.0685Z", + "createdAt": "2022-10-25T15:49:12.4754229Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:06:03.0685Z" + "lastModifiedAt": "2022-10-25T15:49:12.4754229Z" } } }, @@ -1962,7 +2283,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -1970,14 +2291,14 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:14:31 GMT", + "Date": "Tue, 25 Oct 2022 16:00:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "211d9615-2a65-42f1-9534-6b7d1a938adf", + "x-ms-correlation-request-id": "a97d6c77-5bc2-4ffd-932a-464e68682676", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111432Z:211d9615-2a65-42f1-9534-6b7d1a938adf" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160044Z:a97d6c77-5bc2-4ffd-932a-464e68682676" }, "ResponseBody": { "error": { @@ -1993,7 +2314,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2001,7 +2322,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:14:32 GMT", + "Date": "Tue, 25 Oct 2022 16:00:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2009,9 +2330,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc49cedf-9865-453a-8675-4e0eaa99d153", + "x-ms-correlation-request-id": "f3d5ccb6-25dd-4fe1-bdb9-31da51396ee1", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111433Z:fc49cedf-9865-453a-8675-4e0eaa99d153", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160045Z:f3d5ccb6-25dd-4fe1-bdb9-31da51396ee1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2025,7 +2346,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2033,14 +2354,14 @@ "Cache-Control": "no-cache", "Content-Length": "315", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:17:54 GMT", + "Date": "Tue, 25 Oct 2022 16:04:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc41d0c4-5d6c-49b8-96d8-212ce0b91d24", + "x-ms-correlation-request-id": "a4422a27-af28-4f1d-bcde-12b6ed0ce7c7", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111755Z:fc41d0c4-5d6c-49b8-96d8-212ce0b91d24" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160409Z:a4422a27-af28-4f1d-bcde-12b6ed0ce7c7" }, "ResponseBody": { "error": { @@ -2057,36 +2378,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69c71f97-9821-4b30-a1d8-756de8c2dc87?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7c60c2a-a24c-4a4c-a878-21162b967b18?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:18:07 GMT", + "Date": "Tue, 25 Oct 2022 16:04:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69c71f97-9821-4b30-a1d8-756de8c2dc87?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7c60c2a-a24c-4a4c-a878-21162b967b18?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc659062-fe4f-48a6-9478-482a6ee4c7cb", + "x-ms-correlation-request-id": "d62b297c-a767-4974-a786-4776a1c6b3ad", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111807Z:bc659062-fe4f-48a6-9478-482a6ee4c7cb", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160422Z:d62b297c-a767-4974-a786-4776a1c6b3ad", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69c71f97-9821-4b30-a1d8-756de8c2dc87?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7c60c2a-a24c-4a4c-a878-21162b967b18?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2094,7 +2415,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:18:37 GMT", + "Date": "Tue, 25 Oct 2022 16:04:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2102,17 +2423,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f5d5e27-3ba5-4372-b1bc-4678325d7d9d", + "x-ms-correlation-request-id": "8d623b39-d4b1-43e1-9d02-61a3f4905f64", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111837Z:4f5d5e27-3ba5-4372-b1bc-4678325d7d9d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160422Z:8d623b39-d4b1-43e1-9d02-61a3f4905f64", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69c71f97-9821-4b30-a1d8-756de8c2dc87", - "name": "69c71f97-9821-4b30-a1d8-756de8c2dc87", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7c60c2a-a24c-4a4c-a878-21162b967b18", + "name": "c7c60c2a-a24c-4a4c-a878-21162b967b18", + "status": "Deleting", + "startTime": "2022-10-25T16:04:22.3223427Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7c60c2a-a24c-4a4c-a878-21162b967b18?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:04:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "66327bf9-0bd3-4073-9cce-79c00d00cdde", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160453Z:66327bf9-0bd3-4073-9cce-79c00d00cdde", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7c60c2a-a24c-4a4c-a878-21162b967b18", + "name": "c7c60c2a-a24c-4a4c-a878-21162b967b18", "status": "Succeeded", - "startTime": "2022-09-19T11:18:07.4774771Z", - "endTime": "2022-09-19T11:18:08.477473Z", + "startTime": "2022-10-25T16:04:22.3223427Z", + "endTime": "2022-10-25T16:04:23.619285Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1" @@ -2120,13 +2481,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69c71f97-9821-4b30-a1d8-756de8c2dc87?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c7c60c2a-a24c-4a4c-a878-21162b967b18?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2134,7 +2495,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:18:37 GMT", + "Date": "Tue, 25 Oct 2022 16:04:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2142,22 +2503,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62bb6053-f0eb-41bb-b173-914d7f040ebc", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111838Z:62bb6053-f0eb-41bb-b173-914d7f040ebc", + "x-ms-correlation-request-id": "25671747-2f09-46ea-b8f0-305a2c8f7e2a", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160453Z:25671747-2f09-46ea-b8f0-305a2c8f7e2a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-9f8d2912/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A18%3A07.4799813Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A04%3A22.3273148Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:05:17.3815326Z" + "CreatedOnDate": "2022-10-25T15:48:58.2294120Z" }, "properties": { - "poolId": "95563b8a-42b1-339a-decb-b1887f848b23", + "poolId": "5bb3a46f-451a-136f-f3e5-5603836caedf", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912/capacityPools/sdk-py-tests-pool-1", @@ -2171,10 +2532,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:05:18.9266991Z", + "createdAt": "2022-10-25T15:48:59.2331504Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:05:18.9266991Z" + "lastModifiedAt": "2022-10-25T15:48:59.2331504Z" } } }, @@ -2186,20 +2547,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:18:48 GMT", + "Date": "Tue, 25 Oct 2022 16:05:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "558ee998-8de2-4d29-9cfb-171a5f7249d5", + "x-ms-correlation-request-id": "c6f444d3-3276-4e95-9eef-ed236ad49aee", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111849Z:558ee998-8de2-4d29-9cfb-171a5f7249d5" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160503Z:c6f444d3-3276-4e95-9eef-ed236ad49aee" }, "ResponseBody": null }, @@ -2211,20 +2572,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:18:59 GMT", + "Date": "Tue, 25 Oct 2022 16:05:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08399a2f-ce68-4ce0-b0f2-1d56ffad878d", + "x-ms-correlation-request-id": "4a687960-39d1-40ac-affe-ef408e0483d8", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111859Z:08399a2f-ce68-4ce0-b0f2-1d56ffad878d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160514Z:4a687960-39d1-40ac-affe-ef408e0483d8" }, "ResponseBody": null }, @@ -2236,20 +2597,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:19:09 GMT", + "Date": "Tue, 25 Oct 2022 16:05:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "336aa6f3-2511-4044-8b12-ff190a584a19", + "x-ms-correlation-request-id": "d5971873-de8a-4992-90e9-e5c17c2696d9", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111909Z:336aa6f3-2511-4044-8b12-ff190a584a19" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160524Z:d5971873-de8a-4992-90e9-e5c17c2696d9" }, "ResponseBody": null }, @@ -2261,20 +2622,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:19:20 GMT", + "Date": "Tue, 25 Oct 2022 16:05:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71b0e2e2-4557-465a-8f03-c951c14af134", + "x-ms-correlation-request-id": "5d242cab-0806-4be8-9dad-9e568f0db189", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111920Z:71b0e2e2-4557-465a-8f03-c951c14af134" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160534Z:5d242cab-0806-4be8-9dad-9e568f0db189" }, "ResponseBody": null }, @@ -2285,7 +2646,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2293,14 +2654,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:19:30 GMT", + "Date": "Tue, 25 Oct 2022 16:05:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b67fefbf-dc6f-431a-bfcb-f31465ea3714", + "x-ms-correlation-request-id": "8d3d7dde-e107-43e6-a83c-2da55728bfaa", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111930Z:b67fefbf-dc6f-431a-bfcb-f31465ea3714" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160544Z:8d3d7dde-e107-43e6-a83c-2da55728bfaa" }, "ResponseBody": { "error": { @@ -2317,36 +2678,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e7f8ef9-c4ef-460b-b323-e4414d32544b?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7de4dfad-e254-457f-91dd-26c83662d6e9?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:19:31 GMT", + "Date": "Tue, 25 Oct 2022 16:05:46 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e7f8ef9-c4ef-460b-b323-e4414d32544b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7de4dfad-e254-457f-91dd-26c83662d6e9?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8df72356-f3d8-48ff-a72f-864b21510ead", + "x-ms-correlation-request-id": "db2e3030-0f36-499d-9b96-fd802c58e948", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T111931Z:8df72356-f3d8-48ff-a72f-864b21510ead", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160546Z:db2e3030-0f36-499d-9b96-fd802c58e948", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e7f8ef9-c4ef-460b-b323-e4414d32544b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7de4dfad-e254-457f-91dd-26c83662d6e9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2354,7 +2715,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:01 GMT", + "Date": "Tue, 25 Oct 2022 16:05:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2362,17 +2723,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b382a347-bf34-4161-9c2f-b653b8630cae", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112002Z:b382a347-bf34-4161-9c2f-b653b8630cae", + "x-ms-correlation-request-id": "265e0dfe-db08-4249-892a-850b6f48a492", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160546Z:265e0dfe-db08-4249-892a-850b6f48a492", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e7f8ef9-c4ef-460b-b323-e4414d32544b", - "name": "7e7f8ef9-c4ef-460b-b323-e4414d32544b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7de4dfad-e254-457f-91dd-26c83662d6e9", + "name": "7de4dfad-e254-457f-91dd-26c83662d6e9", "status": "Succeeded", - "startTime": "2022-09-19T11:19:31.8262718Z", - "endTime": "2022-09-19T11:19:31.8732159Z", + "startTime": "2022-10-25T16:05:46.492852Z", + "endTime": "2022-10-25T16:05:46.5709272Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912" @@ -2380,13 +2741,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e7f8ef9-c4ef-460b-b323-e4414d32544b?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7de4dfad-e254-457f-91dd-26c83662d6e9?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2394,7 +2755,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:01 GMT", + "Date": "Tue, 25 Oct 2022 16:05:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2402,19 +2763,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0afca0b9-fbeb-452c-ab61-79a76d2caf6c", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112002Z:0afca0b9-fbeb-452c-ab61-79a76d2caf6c", + "x-ms-correlation-request-id": "521f7b72-b081-4b63-9298-e36e2dc89793", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160547Z:521f7b72-b081-4b63-9298-e36e2dc89793", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912", "name": "sdk-py-tests-acc-1-9f8d2912", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A19%3A31.8246961Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A05%3A46.4163372Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:04:42.9096655Z" + "CreatedOnDate": "2022-10-25T15:48:53.9541670Z" }, "properties": { "encryption": { @@ -2425,10 +2786,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:04:44.5661851Z", + "createdAt": "2022-10-25T15:48:54.9495944Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:04:44.5661851Z" + "lastModifiedAt": "2022-10-25T15:48:54.9495944Z" } } }, @@ -2439,50 +2800,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:02 GMT", + "Date": "Tue, 25 Oct 2022 16:05:46 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "084c8acf-99a4-412b-be85-49a3e50c953f", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112002Z:084c8acf-99a4-412b-be85-49a3e50c953f" + "x-ms-correlation-request-id": "ff43b104-1a92-430d-8e06-d544a3694088", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160547Z:ff43b104-1a92-430d-8e06-d544a3694088", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-9f8d2912\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-9f8d2912?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0cd1d50a-3b9f-4fa5-81ff-2debd22da4c9?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ec7fe03a-cf4f-47db-aaec-9bd2b399a9b2?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:20:03 GMT", + "Date": "Tue, 25 Oct 2022 16:05:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/0cd1d50a-3b9f-4fa5-81ff-2debd22da4c9?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/ec7fe03a-cf4f-47db-aaec-9bd2b399a9b2?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -2491,10 +2854,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "54bc5075-938d-4a44-b297-6f00a7e16c3c", - "x-ms-correlation-request-id": "bc8908d4-e921-4685-b86c-16fa8798384d", + "x-ms-arm-service-request-id": "aa159f64-bf04-41a1-a2ce-1808b5d8163c", + "x-ms-correlation-request-id": "2b29f27c-4534-466b-8bcb-7860029abaec", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112003Z:bc8908d4-e921-4685-b86c-16fa8798384d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T160548Z:2b29f27c-4534-466b-8bcb-7860029abaec" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_get_volume_by_name.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_get_volume_by_name.json index d173eecf478d..570dfad963a8 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_get_volume_by_name.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_get_volume_by_name.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:11 GMT", + "Date": "Tue, 25 Oct 2022 16:33:36 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:11 GMT", + "Date": "Tue, 25 Oct 2022 16:33:36 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "86426a41-7e3e-4c8c-a1ac-f55a3de6e122", + "client-request-id": "fb14352c-e79e-48f7-8e81-e469110067a2", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "86426a41-7e3e-4c8c-a1ac-f55a3de6e122", + "client-request-id": "fb14352c-e79e-48f7-8e81-e469110067a2", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:12 GMT", + "Date": "Tue, 25 Oct 2022 16:33:36 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e5e99578-5ee8-4822-9b27-9ebeeed46806?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5de82861-c71a-420d-82b0-5e85fcd24b14?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:21 GMT", + "Date": "Tue, 25 Oct 2022 16:33:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "12a862a2-fac1-4471-8ef1-52c7941ec503", - "x-ms-correlation-request-id": "df15fbec-a06f-49c3-9ea4-a0b72425a576", + "x-ms-arm-service-request-id": "f0125276-6328-4f40-967d-d5e465cb1ae6", + "x-ms-correlation-request-id": "c2ecd87d-6f7b-4772-8dd5-100bbad49895", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121422Z:df15fbec-a06f-49c3-9ea4-a0b72425a576" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163345Z:c2ecd87d-6f7b-4772-8dd5-100bbad49895" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-84d7262b", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b", - "etag": "W/\u0022e3dcda07-7861-4989-99ff-e1b0c0dc38f2\u0022", + "etag": "W/\u0022eaa61247-bdd2-4a14-b02f-09c7a59f4c73\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:14:16.4806287Z" + "CreatedOnDate": "2022-10-25T16:33:39.6513449Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "67b55e56-d33b-431f-92eb-679e53e95331", + "resourceGuid": "f22d3024-73d1-4287-8fcf-4463d4199daf", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e5e99578-5ee8-4822-9b27-9ebeeed46806?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5de82861-c71a-420d-82b0-5e85fcd24b14?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,9 +293,10 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:25 GMT", + "Date": "Tue, 25 Oct 2022 16:33:45 GMT", "Expires": "-1", "Pragma": "no-cache", + "Retry-After": "10", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -304,23 +305,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "cb579b2d-b97c-41f5-b602-68eca78510d9", - "x-ms-correlation-request-id": "2ec2a730-9c61-47dd-a0b6-f8207dec3163", + "x-ms-arm-service-request-id": "84f2de12-39ae-45df-8288-1fbfa7d2b04b", + "x-ms-correlation-request-id": "6be12609-4c1b-4ef7-a73e-11360cbff2be", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121425Z:2ec2a730-9c61-47dd-a0b6-f8207dec3163" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163345Z:6be12609-4c1b-4ef7-a73e-11360cbff2be" }, "ResponseBody": { - "status": "Succeeded" + "status": "InProgress" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5de82861-c71a-420d-82b0-5e85fcd24b14?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +329,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:26 GMT", - "ETag": "W/\u0022629022b6-6d2c-43a3-af57-2df59552b11e\u0022", + "Date": "Tue, 25 Oct 2022 16:33:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,59 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "64a332dd-8329-4523-a858-c986128bf8ef", - "x-ms-correlation-request-id": "9ba5ad68-7989-41a2-8240-d5bd6885e307", + "x-ms-arm-service-request-id": "e5f56972-7d69-4ae1-aa5f-dd73edd7eb5f", + "x-ms-correlation-request-id": "2dd22cd4-38b9-4bd0-af42-888a82f5829c", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121426Z:9ba5ad68-7989-41a2-8240-d5bd6885e307" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163355Z:2dd22cd4-38b9-4bd0-af42-888a82f5829c" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:33:55 GMT", + "ETag": "W/\u0022f8711f38-bbca-4721-acc7-f2ef62f4d7e9\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "ea95ca61-bfa5-48a9-9e97-38703ceecf97", + "x-ms-correlation-request-id": "29ab3235-eed2-4f8f-81e0-b01ba540f937", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163356Z:29ab3235-eed2-4f8f-81e0-b01ba540f937" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-84d7262b", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b", - "etag": "W/\u0022629022b6-6d2c-43a3-af57-2df59552b11e\u0022", + "etag": "W/\u0022f8711f38-bbca-4721-acc7-f2ef62f4d7e9\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:14:16.4806287Z" + "CreatedOnDate": "2022-10-25T16:33:39.6513449Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "67b55e56-d33b-431f-92eb-679e53e95331", + "resourceGuid": "f22d3024-73d1-4287-8fcf-4463d4199daf", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +405,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +413,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +430,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cdf42963-a244-4042-9708-dd0c8d467c12?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e07afe14-ddbc-4f6c-bf8a-f31c68fa64eb?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:27 GMT", + "Date": "Tue, 25 Oct 2022 16:33:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +445,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "c2ecb75c-ddb2-4cbb-a1c4-1cde172cc7af", - "x-ms-correlation-request-id": "301327f2-72f0-4ab0-bbdf-dc60b91a8fd3", + "x-ms-arm-service-request-id": "4ff7f2fa-a543-4d14-b829-484c27b4207f", + "x-ms-correlation-request-id": "2adfd3dd-f2a3-4a15-a2d5-13d73d861d26", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121427Z:301327f2-72f0-4ab0-bbdf-dc60b91a8fd3" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163356Z:2adfd3dd-f2a3-4a15-a2d5-13d73d861d26" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default", - "etag": "W/\u0022cd714b03-2b8d-45bf-bd35-636a391ce27c\u0022", + "etag": "W/\u00227f9f5bc3-5350-4ecb-aa76-67a1351666c1\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +461,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022cd714b03-2b8d-45bf-bd35-636a391ce27c\u0022", + "etag": "W/\u00227f9f5bc3-5350-4ecb-aa76-67a1351666c1\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +481,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/cdf42963-a244-4042-9708-dd0c8d467c12?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e07afe14-ddbc-4f6c-bf8a-f31c68fa64eb?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +495,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:30 GMT", + "Date": "Tue, 25 Oct 2022 16:33:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +506,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "de4a2d6c-5240-4d32-b682-664fca8a7b6d", - "x-ms-correlation-request-id": "7851606f-2f23-4d8b-bab8-47f88d443474", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121430Z:7851606f-2f23-4d8b-bab8-47f88d443474" + "x-ms-arm-service-request-id": "a44bebb9-f9a0-4415-9135-8babe72f4a60", + "x-ms-correlation-request-id": "0412e2e0-49c7-4319-abe8-0c7c14904a88", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163357Z:0412e2e0-49c7-4319-abe8-0c7c14904a88" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +530,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:30 GMT", - "ETag": "W/\u00223a24d3db-2883-4ec6-9db5-4ab2e43c3637\u0022", + "Date": "Tue, 25 Oct 2022 16:33:57 GMT", + "ETag": "W/\u0022d7ce7d99-e1dc-4f20-93a1-777a357360e9\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +542,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0ba1766a-f587-4edb-8f9e-5955a2c5389d", - "x-ms-correlation-request-id": "d80c1f78-0256-4cbf-b3b6-d844b2e127cd", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121431Z:d80c1f78-0256-4cbf-b3b6-d844b2e127cd" + "x-ms-arm-service-request-id": "3d14f03c-6348-44a9-8bb1-e3ad38cec2e5", + "x-ms-correlation-request-id": "2c4ce87b-6794-4e3f-bdc8-b2ecad178fea", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163357Z:2c4ce87b-6794-4e3f-bdc8-b2ecad178fea" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default", - "etag": "W/\u00223a24d3db-2883-4ec6-9db5-4ab2e43c3637\u0022", + "etag": "W/\u0022d7ce7d99-e1dc-4f20-93a1-777a357360e9\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +558,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00223a24d3db-2883-4ec6-9db5-4ab2e43c3637\u0022", + "etag": "W/\u0022d7ce7d99-e1dc-4f20-93a1-777a357360e9\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +584,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +594,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:31 GMT", + "Date": "Tue, 25 Oct 2022 16:33:57 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +678,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +688,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:31 GMT", + "Date": "Tue, 25 Oct 2022 16:33:57 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +749,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "e5d17bbe-5c84-4d97-a691-75f74d7d887c", + "client-request-id": "43042795-ff95-40bb-814e-8638e10cc703", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "e5d17bbe-5c84-4d97-a691-75f74d7d887c", + "client-request-id": "43042795-ff95-40bb-814e-8638e10cc703", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:31 GMT", + "Date": "Tue, 25 Oct 2022 16:33:57 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +778,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +798,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b6cdba-a2c6-47cc-bbe6-70e4bea7e604?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a0e1340-f831-4546-8f55-7fae3841b291?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:14:35 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A14%3A34.8541182Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:34:01 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A34%3A01.3305041Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8a2d129-9ca3-483b-9aee-e7926bba61c1", + "x-ms-correlation-request-id": "13c1fa4f-e097-45e5-9d46-bd276ed753b8", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121436Z:c8a2d129-9ca3-483b-9aee-e7926bba61c1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163402Z:13c1fa4f-e097-45e5-9d46-bd276ed753b8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b", "name": "sdk-py-tests-acc-1-84d7262b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A14%3A34.8541182Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A34%3A01.3305041Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:14:32.7904981Z" + "CreatedOnDate": "2022-10-25T16:33:59.2422811Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +836,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:14:33.8789254Z", + "createdAt": "2022-10-25T16:34:00.2110086Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:14:33.8789254Z" + "lastModifiedAt": "2022-10-25T16:34:00.2110086Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b6cdba-a2c6-47cc-bbe6-70e4bea7e604?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a0e1340-f831-4546-8f55-7fae3841b291?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +858,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:15:05 GMT", + "Date": "Tue, 25 Oct 2022 16:34:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +866,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7a4754f-c19c-417c-8fdc-9d4a9058226a", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121506Z:e7a4754f-c19c-417c-8fdc-9d4a9058226a", + "x-ms-correlation-request-id": "9caf4ef4-6d1f-44a4-af4b-b0d8648d5b3c", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163402Z:9caf4ef4-6d1f-44a4-af4b-b0d8648d5b3c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/67b6cdba-a2c6-47cc-bbe6-70e4bea7e604", - "name": "67b6cdba-a2c6-47cc-bbe6-70e4bea7e604", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a0e1340-f831-4546-8f55-7fae3841b291", + "name": "3a0e1340-f831-4546-8f55-7fae3841b291", "status": "Succeeded", - "startTime": "2022-09-19T12:14:34.8468114Z", - "endTime": "2022-09-19T12:14:34.8936194Z", + "startTime": "2022-10-25T16:34:01.3254228Z", + "endTime": "2022-10-25T16:34:01.3723099Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b" @@ -853,7 +890,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +898,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:15:06 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A14%3A34.8980544Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:34:02 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A34%3A01.3746194Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +907,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7d2fb37-c61b-46cc-9224-577500f2f7e4", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121507Z:f7d2fb37-c61b-46cc-9224-577500f2f7e4", + "x-ms-correlation-request-id": "db8616af-22da-4926-a8e8-569110243715", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163403Z:db8616af-22da-4926-a8e8-569110243715", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b", "name": "sdk-py-tests-acc-1-84d7262b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A14%3A34.8980544Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A34%3A01.3746194Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:14:32.7904981Z" + "CreatedOnDate": "2022-10-25T16:33:59.2422811Z" }, "properties": { "activeDirectories": [ @@ -911,10 +948,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:14:33.8789254Z", + "createdAt": "2022-10-25T16:34:00.2110086Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:14:33.8789254Z" + "lastModifiedAt": "2022-10-25T16:34:00.2110086Z" } } }, @@ -927,7 +964,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +977,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/310c10cb-6e7a-4909-be7b-a479371d2852?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a94ea3e-a425-4032-8a03-6549c3bf57c7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:15:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A15%3A08.7345125Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:34:05 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A34%3A04.9314302Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d8ac8a5-9789-4f0e-a25a-e342bc69d495", + "x-ms-correlation-request-id": "0d2b99af-dce4-44c9-a763-569ec6887cbc", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121509Z:4d8ac8a5-9789-4f0e-a25a-e342bc69d495", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163406Z:0d2b99af-dce4-44c9-a763-569ec6887cbc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-84d7262b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A15%3A08.7345125Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A34%3A04.9314302Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:15:07.2872758Z" + "CreatedOnDate": "2022-10-25T16:34:03.5495325Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +1014,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:15:08.5238888Z", + "createdAt": "2022-10-25T16:34:04.6668278Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:15:08.5238888Z" + "lastModifiedAt": "2022-10-25T16:34:04.6668278Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/310c10cb-6e7a-4909-be7b-a479371d2852?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a94ea3e-a425-4032-8a03-6549c3bf57c7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1036,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:15:40 GMT", + "Date": "Tue, 25 Oct 2022 16:34:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1044,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db0df4b3-a09f-478a-8d51-ca3de311ee34", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121540Z:db0df4b3-a09f-478a-8d51-ca3de311ee34", + "x-ms-correlation-request-id": "feb05c60-831f-4d59-a96c-220e8d6e16ed", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163406Z:feb05c60-831f-4d59-a96c-220e8d6e16ed", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/310c10cb-6e7a-4909-be7b-a479371d2852", - "name": "310c10cb-6e7a-4909-be7b-a479371d2852", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a94ea3e-a425-4032-8a03-6549c3bf57c7", + "name": "3a94ea3e-a425-4032-8a03-6549c3bf57c7", "status": "Succeeded", - "startTime": "2022-09-19T12:15:08.7280221Z", - "endTime": "2022-09-19T12:15:10.1499979Z", + "startTime": "2022-10-25T16:34:04.9340521Z", + "endTime": "2022-10-25T16:34:05.8559444Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1068,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1076,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:15:40 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A15%3A10.1439315Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:34:05 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A34%3A05.8510727Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1085,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c82d7408-95e9-435e-a103-aa13e42fb3f8", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121540Z:c82d7408-95e9-435e-a103-aa13e42fb3f8", + "x-ms-correlation-request-id": "5d7002ae-0a86-4547-abe8-fcf1aec3901b", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163406Z:5d7002ae-0a86-4547-abe8-fcf1aec3901b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-84d7262b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A15%3A10.1439315Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A34%3A05.8510727Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:15:07.2872758Z" + "CreatedOnDate": "2022-10-25T16:34:03.5495325Z" }, "properties": { - "poolId": "f9cf0075-d711-be9f-1b88-1a05fef701a0", + "poolId": "50c877ee-9757-df81-cf35-52c079a2dd10", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1113,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:15:08.5238888Z", + "createdAt": "2022-10-25T16:34:04.6668278Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:15:08.5238888Z" + "lastModifiedAt": "2022-10-25T16:34:04.6668278Z" } } }, @@ -1092,7 +1129,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1159,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:15:53 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A15%3A53.0698559Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:34:19 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A34%3A18.2737456Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2139e582-17e5-4e75-aa1d-71e34398f3cb", + "x-ms-correlation-request-id": "7515bd8c-d287-4002-a336-e71b6495dc08", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121553Z:2139e582-17e5-4e75-aa1d-71e34398f3cb", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163419Z:7515bd8c-d287-4002-a336-e71b6495dc08", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b", "name": "sdk-py-tests-acc-1-84d7262b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-84d7262b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A15%3A53.0698559Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A34%3A18.2737456Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:15:50.9679025Z" + "CreatedOnDate": "2022-10-25T16:34:17.0054262Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1212,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:15:51.9259876Z", + "createdAt": "2022-10-25T16:34:17.9759697Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:15:51.9259876Z" + "lastModifiedAt": "2022-10-25T16:34:17.9759697Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1234,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:16:23 GMT", + "Date": "Tue, 25 Oct 2022 16:34:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1242,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45ed5810-b05d-45a1-a650-33daec972e59", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121624Z:45ed5810-b05d-45a1-a650-33daec972e59", + "x-ms-correlation-request-id": "590e969a-02c8-4ea3-94f4-45c0a8d59d87", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163419Z:590e969a-02c8-4ea3-94f4-45c0a8d59d87", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54", - "name": "e7e46e68-3eb0-44d5-9d5d-f7de142eea54", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", "status": "Creating", - "startTime": "2022-09-19T12:15:53.0755479Z", + "startTime": "2022-10-25T16:34:18.2777923Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1260,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1274,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:16:53 GMT", + "Date": "Tue, 25 Oct 2022 16:34:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1282,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7932bf1-3f74-479e-a711-f516fd539eb7", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121654Z:b7932bf1-3f74-479e-a711-f516fd539eb7", + "x-ms-correlation-request-id": "2481ed8f-e452-4aca-89b7-9501e733e5f7", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163449Z:2481ed8f-e452-4aca-89b7-9501e733e5f7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54", - "name": "e7e46e68-3eb0-44d5-9d5d-f7de142eea54", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", "status": "Creating", - "startTime": "2022-09-19T12:15:53.0755479Z", + "startTime": "2022-10-25T16:34:18.2777923Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1300,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1314,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:17:24 GMT", + "Date": "Tue, 25 Oct 2022 16:35:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1322,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "607be8f5-7205-4545-a46d-790091e9a304", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121724Z:607be8f5-7205-4545-a46d-790091e9a304", + "x-ms-correlation-request-id": "2ade0919-995e-4521-a5a3-f093b9498344", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163519Z:2ade0919-995e-4521-a5a3-f093b9498344", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54", - "name": "e7e46e68-3eb0-44d5-9d5d-f7de142eea54", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", "status": "Creating", - "startTime": "2022-09-19T12:15:53.0755479Z", + "startTime": "2022-10-25T16:34:18.2777923Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1340,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1354,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:17:54 GMT", + "Date": "Tue, 25 Oct 2022 16:35:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1362,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0137c43a-8467-446d-aae6-0d66a1f6c194", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121754Z:0137c43a-8467-446d-aae6-0d66a1f6c194", + "x-ms-correlation-request-id": "88cffb72-a1ed-4672-b190-d460ee8ebf52", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163550Z:88cffb72-a1ed-4672-b190-d460ee8ebf52", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54", - "name": "e7e46e68-3eb0-44d5-9d5d-f7de142eea54", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", "status": "Creating", - "startTime": "2022-09-19T12:15:53.0755479Z", + "startTime": "2022-10-25T16:34:18.2777923Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1380,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1394,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:18:24 GMT", + "Date": "Tue, 25 Oct 2022 16:36:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1402,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb62e3b1-96d5-4168-a79e-76b1a6f13503", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121825Z:cb62e3b1-96d5-4168-a79e-76b1a6f13503", + "x-ms-correlation-request-id": "4bd80439-8b1c-40a2-be90-ba503bad027a", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163620Z:4bd80439-8b1c-40a2-be90-ba503bad027a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54", - "name": "e7e46e68-3eb0-44d5-9d5d-f7de142eea54", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", "status": "Creating", - "startTime": "2022-09-19T12:15:53.0755479Z", + "startTime": "2022-10-25T16:34:18.2777923Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1420,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1434,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:18:54 GMT", + "Date": "Tue, 25 Oct 2022 16:36:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1442,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28db70a8-92bc-410f-9399-8510ca48dd18", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121855Z:28db70a8-92bc-410f-9399-8510ca48dd18", + "x-ms-correlation-request-id": "6df976e5-2cf0-417a-b46e-655c76e11363", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163650Z:6df976e5-2cf0-417a-b46e-655c76e11363", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54", - "name": "e7e46e68-3eb0-44d5-9d5d-f7de142eea54", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", "status": "Creating", - "startTime": "2022-09-19T12:15:53.0755479Z", + "startTime": "2022-10-25T16:34:18.2777923Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1460,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1474,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:19:24 GMT", + "Date": "Tue, 25 Oct 2022 16:37:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1482,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d07c2458-40d8-46e3-a2c6-9bac94b87b0c", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121925Z:d07c2458-40d8-46e3-a2c6-9bac94b87b0c", + "x-ms-correlation-request-id": "5d1b750e-cfec-4b60-afb7-a0ea73e0aa37", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163721Z:5d1b750e-cfec-4b60-afb7-a0ea73e0aa37", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54", - "name": "e7e46e68-3eb0-44d5-9d5d-f7de142eea54", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", "status": "Creating", - "startTime": "2022-09-19T12:15:53.0755479Z", + "startTime": "2022-10-25T16:34:18.2777923Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1500,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1514,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:19:56 GMT", + "Date": "Tue, 25 Oct 2022 16:37:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,16 +1522,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d2edb51-5c64-46f9-a632-643689c05d77", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121956Z:8d2edb51-5c64-46f9-a632-643689c05d77", + "x-ms-correlation-request-id": "2a8c0cc6-9ada-44c3-8c4b-4f44adf34225", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163751Z:2a8c0cc6-9ada-44c3-8c4b-4f44adf34225", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54", - "name": "e7e46e68-3eb0-44d5-9d5d-f7de142eea54", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", "status": "Creating", - "startTime": "2022-09-19T12:15:53.0755479Z", + "startTime": "2022-10-25T16:34:18.2777923Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1503,13 +1540,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,7 +1554,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:20:26 GMT", + "Date": "Tue, 25 Oct 2022 16:38:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1525,17 +1562,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6743ea5-8be2-4d80-a628-ade9a9e8fa3c", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122026Z:a6743ea5-8be2-4d80-a628-ade9a9e8fa3c", + "x-ms-correlation-request-id": "56183434-48cd-4219-a954-8c1a7e26246b", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163821Z:56183434-48cd-4219-a954-8c1a7e26246b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e7e46e68-3eb0-44d5-9d5d-f7de142eea54", - "name": "e7e46e68-3eb0-44d5-9d5d-f7de142eea54", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "status": "Creating", + "startTime": "2022-10-25T16:34:18.2777923Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:38:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e26a2db0-39ff-47f8-8c29-487132a22bee", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163852Z:e26a2db0-39ff-47f8-8c29-487132a22bee", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "status": "Creating", + "startTime": "2022-10-25T16:34:18.2777923Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:39:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "61a0c12d-5fdb-49f0-9c8b-6c17ad7d13bc", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163922Z:61a0c12d-5fdb-49f0-9c8b-6c17ad7d13bc", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/51fcac2b-0934-45cf-ab31-0e84be5c12b6", + "name": "51fcac2b-0934-45cf-ab31-0e84be5c12b6", "status": "Succeeded", - "startTime": "2022-09-19T12:15:53.0755479Z", - "endTime": "2022-09-19T12:19:58.069275Z", + "startTime": "2022-10-25T16:34:18.2777923Z", + "endTime": "2022-10-25T16:38:55.424748Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b" @@ -1549,7 +1666,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1557,8 +1674,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:20:26 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A19%3A58.0618288Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:39:23 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A38%3A55.4260767Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1566,22 +1683,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3de1ced0-3359-4ccd-b5b5-6516e48e45db", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122027Z:3de1ced0-3359-4ccd-b5b5-6516e48e45db", + "x-ms-correlation-request-id": "22cd00d7-e1f2-43ca-8860-68cfce70dcea", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163923Z:22cd00d7-e1f2-43ca-8860-68cfce70dcea", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b", "name": "sdk-py-tests-acc-1-84d7262b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-84d7262b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A19%3A58.0618288Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A38%3A55.4260767Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:15:50.9679025Z" + "CreatedOnDate": "2022-10-25T16:34:17.0054262Z" }, "properties": { - "fileSystemId": "e9ced3cd-eefe-2b2d-b40d-4803d15248ba", + "fileSystemId": "2396ff40-917e-3765-d58b-3d049bd7baac", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-84d7262b", "usageThreshold": 107374182400, @@ -1609,7 +1726,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_94778f5a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_819f9d28", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1624,8 +1741,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "e9ced3cd-eefe-2b2d-b40d-4803d15248ba", - "fileSystemId": "e9ced3cd-eefe-2b2d-b40d-4803d15248ba", + "mountTargetId": "2396ff40-917e-3765-d58b-3d049bd7baac", + "fileSystemId": "2396ff40-917e-3765-d58b-3d049bd7baac", "ipAddress": "10.0.0.4" } ], @@ -1645,10 +1762,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:15:51.9259876Z", + "createdAt": "2022-10-25T16:34:17.9759697Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:15:51.9259876Z" + "lastModifiedAt": "2022-10-25T16:34:17.9759697Z" } } }, @@ -1659,7 +1776,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1667,8 +1784,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:20:27 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A19%3A58.0618288Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:39:23 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A38%3A55.4260767Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1676,22 +1793,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f69b8308-f7b4-4d5d-ac29-28fae33adbc5", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122028Z:f69b8308-f7b4-4d5d-ac29-28fae33adbc5", + "x-ms-correlation-request-id": "64a48bc5-aa79-49df-b92a-1453112c545c", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163923Z:64a48bc5-aa79-49df-b92a-1453112c545c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b", "name": "sdk-py-tests-acc-1-84d7262b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-84d7262b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A19%3A58.0618288Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A38%3A55.4260767Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:15:50.9679025Z" + "CreatedOnDate": "2022-10-25T16:34:17.0054262Z" }, "properties": { - "fileSystemId": "e9ced3cd-eefe-2b2d-b40d-4803d15248ba", + "fileSystemId": "2396ff40-917e-3765-d58b-3d049bd7baac", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-84d7262b", "usageThreshold": 107374182400, @@ -1719,7 +1836,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_94778f5a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_819f9d28", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1734,8 +1851,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "e9ced3cd-eefe-2b2d-b40d-4803d15248ba", - "fileSystemId": "e9ced3cd-eefe-2b2d-b40d-4803d15248ba", + "mountTargetId": "2396ff40-917e-3765-d58b-3d049bd7baac", + "fileSystemId": "2396ff40-917e-3765-d58b-3d049bd7baac", "ipAddress": "10.0.0.4" } ], @@ -1755,10 +1872,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:15:51.9259876Z", + "createdAt": "2022-10-25T16:34:17.9759697Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:15:51.9259876Z" + "lastModifiedAt": "2022-10-25T16:34:17.9759697Z" } } }, @@ -1770,36 +1887,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcdefffe-59c7-4b23-beb9-4fc10303ea03?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:20:28 GMT", + "Date": "Tue, 25 Oct 2022 16:39:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcdefffe-59c7-4b23-beb9-4fc10303ea03?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3f297f8-42a7-4979-86aa-0602170a9285", + "x-ms-correlation-request-id": "09f3747c-5464-427c-97e4-59453c70f860", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122029Z:f3f297f8-42a7-4979-86aa-0602170a9285", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163924Z:09f3747c-5464-427c-97e4-59453c70f860", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcdefffe-59c7-4b23-beb9-4fc10303ea03?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1807,7 +1924,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:20:58 GMT", + "Date": "Tue, 25 Oct 2022 16:39:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1815,16 +1932,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce16da05-cc90-41dd-b50b-ce92b8a06e76", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122059Z:ce16da05-cc90-41dd-b50b-ce92b8a06e76", + "x-ms-correlation-request-id": "cdd6a789-2db2-4408-becb-10490ab0b619", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163924Z:cdd6a789-2db2-4408-becb-10490ab0b619", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcdefffe-59c7-4b23-beb9-4fc10303ea03", - "name": "fcdefffe-59c7-4b23-beb9-4fc10303ea03", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9", + "name": "1707e12e-a5e1-4e4f-8a05-a719a3eddcf9", "status": "Deleting", - "startTime": "2022-09-19T12:20:29.218391Z", + "startTime": "2022-10-25T16:39:24.5059529Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1833,13 +1950,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcdefffe-59c7-4b23-beb9-4fc10303ea03?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1847,7 +1964,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:21:29 GMT", + "Date": "Tue, 25 Oct 2022 16:39:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1855,16 +1972,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52da6cbe-5b12-4873-9454-1d616c29894a", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122129Z:52da6cbe-5b12-4873-9454-1d616c29894a", + "x-ms-correlation-request-id": "257053f7-d391-4a61-92d6-499c96eb5d92", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163955Z:257053f7-d391-4a61-92d6-499c96eb5d92", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcdefffe-59c7-4b23-beb9-4fc10303ea03", - "name": "fcdefffe-59c7-4b23-beb9-4fc10303ea03", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9", + "name": "1707e12e-a5e1-4e4f-8a05-a719a3eddcf9", "status": "Deleting", - "startTime": "2022-09-19T12:20:29.218391Z", + "startTime": "2022-10-25T16:39:24.5059529Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1873,13 +1990,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcdefffe-59c7-4b23-beb9-4fc10303ea03?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1887,7 +2004,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:21:59 GMT", + "Date": "Tue, 25 Oct 2022 16:40:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1895,17 +2012,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c95d20c-4244-48ea-8711-8c72eaabffbc", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122200Z:3c95d20c-4244-48ea-8711-8c72eaabffbc", + "x-ms-correlation-request-id": "8cc0a284-d966-4396-b203-33ca920ffb2b", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164025Z:8cc0a284-d966-4396-b203-33ca920ffb2b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9", + "name": "1707e12e-a5e1-4e4f-8a05-a719a3eddcf9", + "status": "Deleting", + "startTime": "2022-10-25T16:39:24.5059529Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:40:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "37152106-b27b-43f2-87ae-f352adcc3a08", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164055Z:37152106-b27b-43f2-87ae-f352adcc3a08", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcdefffe-59c7-4b23-beb9-4fc10303ea03", - "name": "fcdefffe-59c7-4b23-beb9-4fc10303ea03", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9", + "name": "1707e12e-a5e1-4e4f-8a05-a719a3eddcf9", + "status": "Deleting", + "startTime": "2022-10-25T16:39:24.5059529Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:41:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b948b278-273f-452e-b831-da705cefba7b", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164125Z:b948b278-273f-452e-b831-da705cefba7b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9", + "name": "1707e12e-a5e1-4e4f-8a05-a719a3eddcf9", "status": "Succeeded", - "startTime": "2022-09-19T12:20:29.218391Z", - "endTime": "2022-09-19T12:21:37.7132309Z", + "startTime": "2022-10-25T16:39:24.5059529Z", + "endTime": "2022-10-25T16:41:22.9882044Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b" @@ -1913,13 +2110,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcdefffe-59c7-4b23-beb9-4fc10303ea03?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1707e12e-a5e1-4e4f-8a05-a719a3eddcf9?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1927,7 +2124,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:21:59 GMT", + "Date": "Tue, 25 Oct 2022 16:41:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1935,22 +2132,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b2a0beb-b8fc-4779-9644-48999066a8b5", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122200Z:1b2a0beb-b8fc-4779-9644-48999066a8b5", + "x-ms-correlation-request-id": "4f09c26c-23f0-4886-8ac7-5b525034500b", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164126Z:4f09c26c-23f0-4886-8ac7-5b525034500b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b", "name": "sdk-py-tests-acc-1-84d7262b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-84d7262b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A21%3A28.6596645Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A41%3A13.5722509Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:15:50.9679025Z" + "CreatedOnDate": "2022-10-25T16:34:17.0054262Z" }, "properties": { - "fileSystemId": "e9ced3cd-eefe-2b2d-b40d-4803d15248ba", + "fileSystemId": "2396ff40-917e-3765-d58b-3d049bd7baac", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-84d7262b", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -1981,19 +2178,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_94778f5a", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_819f9d28", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-84d7262b", - "poolId": "f9cf0075-d711-be9f-1b88-1a05fef701a0", + "poolId": "50c877ee-9757-df81-cf35-52c079a2dd10", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "e9ced3cd-eefe-2b2d-b40d-4803d15248ba", - "fileSystemId": "e9ced3cd-eefe-2b2d-b40d-4803d15248ba", + "mountTargetId": "2396ff40-917e-3765-d58b-3d049bd7baac", + "fileSystemId": "2396ff40-917e-3765-d58b-3d049bd7baac", "startIp": "", "endIp": "", "gateway": "", @@ -2025,10 +2222,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:15:51.9259876Z", + "createdAt": "2022-10-25T16:34:17.9759697Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:15:51.9259876Z" + "lastModifiedAt": "2022-10-25T16:34:17.9759697Z" } } }, @@ -2039,7 +2236,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2047,14 +2244,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:25:22 GMT", + "Date": "Tue, 25 Oct 2022 16:44:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "746d82dc-2062-412f-8bc7-10471b01df9d", + "x-ms-correlation-request-id": "f2d0bdf9-1fd5-4eb6-a935-a42190c85c7f", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122523Z:746d82dc-2062-412f-8bc7-10471b01df9d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164449Z:f2d0bdf9-1fd5-4eb6-a935-a42190c85c7f" }, "ResponseBody": { "error": { @@ -2071,36 +2268,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a7dae0e-baaf-4b30-932b-479ef5eb2216?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/997651d8-b77b-4301-8851-4fd32d2badf3?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:25:34 GMT", + "Date": "Tue, 25 Oct 2022 16:45:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a7dae0e-baaf-4b30-932b-479ef5eb2216?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/997651d8-b77b-4301-8851-4fd32d2badf3?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c667542f-a3b7-4269-b682-3602b231ac82", + "x-ms-correlation-request-id": "47f0c982-3f0b-4dbf-9c80-3ddb68fd34f7", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122535Z:c667542f-a3b7-4269-b682-3602b231ac82", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164503Z:47f0c982-3f0b-4dbf-9c80-3ddb68fd34f7", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a7dae0e-baaf-4b30-932b-479ef5eb2216?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/997651d8-b77b-4301-8851-4fd32d2badf3?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2108,7 +2305,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:26:04 GMT", + "Date": "Tue, 25 Oct 2022 16:45:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2116,17 +2313,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e28f7b6f-c8fc-45c3-b74b-4aace07e4150", + "x-ms-correlation-request-id": "20e538e8-6539-45fb-a983-9591ad2d7064", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122605Z:e28f7b6f-c8fc-45c3-b74b-4aace07e4150", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164507Z:20e538e8-6539-45fb-a983-9591ad2d7064", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a7dae0e-baaf-4b30-932b-479ef5eb2216", - "name": "8a7dae0e-baaf-4b30-932b-479ef5eb2216", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/997651d8-b77b-4301-8851-4fd32d2badf3", + "name": "997651d8-b77b-4301-8851-4fd32d2badf3", "status": "Succeeded", - "startTime": "2022-09-19T12:25:35.3561223Z", - "endTime": "2022-09-19T12:25:36.4655514Z", + "startTime": "2022-10-25T16:45:03.5005834Z", + "endTime": "2022-10-25T16:45:04.6881631Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1" @@ -2134,13 +2331,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a7dae0e-baaf-4b30-932b-479ef5eb2216?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/997651d8-b77b-4301-8851-4fd32d2badf3?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2148,7 +2345,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:26:05 GMT", + "Date": "Tue, 25 Oct 2022 16:45:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2156,22 +2353,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78c2c6f9-e89b-4d17-a1b2-ba64a9ee0d01", + "x-ms-correlation-request-id": "cc22bc8e-cf64-4c19-af73-06dc8c9fd5dd", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122606Z:78c2c6f9-e89b-4d17-a1b2-ba64a9ee0d01", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164507Z:cc22bc8e-cf64-4c19-af73-06dc8c9fd5dd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-84d7262b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A25%3A35.355327Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A45%3A03.5015029Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:15:07.2872758Z" + "CreatedOnDate": "2022-10-25T16:34:03.5495325Z" }, "properties": { - "poolId": "f9cf0075-d711-be9f-1b88-1a05fef701a0", + "poolId": "50c877ee-9757-df81-cf35-52c079a2dd10", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b/capacityPools/sdk-py-tests-pool-1", @@ -2185,10 +2382,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:15:08.5238888Z", + "createdAt": "2022-10-25T16:34:04.6668278Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:15:08.5238888Z" + "lastModifiedAt": "2022-10-25T16:34:04.6668278Z" } } }, @@ -2200,20 +2397,22 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:26:15 GMT", + "Date": "Tue, 25 Oct 2022 16:45:22 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f403d86e-308e-461b-8663-cdcc325ce388", + "x-ms-correlation-request-id": "d067fff7-fa09-4ff0-8530-3d2614ae2fbc", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122616Z:f403d86e-308e-461b-8663-cdcc325ce388" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164522Z:d067fff7-fa09-4ff0-8530-3d2614ae2fbc", + "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, @@ -2225,20 +2424,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:26:26 GMT", + "Date": "Tue, 25 Oct 2022 16:45:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abe031d2-8f75-4342-bf98-0939b9c985f7", + "x-ms-correlation-request-id": "bf0acc1b-d9e6-422f-ae59-bcb590a165d3", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122626Z:abe031d2-8f75-4342-bf98-0939b9c985f7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164532Z:bf0acc1b-d9e6-422f-ae59-bcb590a165d3" }, "ResponseBody": null }, @@ -2250,20 +2449,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:26:36 GMT", + "Date": "Tue, 25 Oct 2022 16:45:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd97291b-cf02-4e00-be2b-f38661ccbf68", + "x-ms-correlation-request-id": "854fbf98-7a32-484c-91d5-a19d11dfd15f", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122637Z:dd97291b-cf02-4e00-be2b-f38661ccbf68" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164543Z:854fbf98-7a32-484c-91d5-a19d11dfd15f" }, "ResponseBody": null }, @@ -2275,20 +2474,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:26:47 GMT", + "Date": "Tue, 25 Oct 2022 16:45:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87c99d56-c8c2-4919-b902-8277712316af", + "x-ms-correlation-request-id": "e98c7526-1577-43c3-b5ec-afc6faead24b", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122647Z:87c99d56-c8c2-4919-b902-8277712316af" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164553Z:e98c7526-1577-43c3-b5ec-afc6faead24b" }, "ResponseBody": null }, @@ -2299,7 +2498,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2307,14 +2506,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:26:57 GMT", + "Date": "Tue, 25 Oct 2022 16:46:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac074ce8-c440-4283-91ea-96822a392387", + "x-ms-correlation-request-id": "57607448-2400-410d-810c-1ce5ff9a7149", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122657Z:ac074ce8-c440-4283-91ea-96822a392387" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164603Z:57607448-2400-410d-810c-1ce5ff9a7149" }, "ResponseBody": { "error": { @@ -2331,36 +2530,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba52fffb-502a-475a-b872-4e9b7b07e29a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c0444361-a616-4a78-9942-9e1bc7216dc0?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:26:58 GMT", + "Date": "Tue, 25 Oct 2022 16:46:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba52fffb-502a-475a-b872-4e9b7b07e29a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c0444361-a616-4a78-9942-9e1bc7216dc0?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09cc5a1c-03f1-4062-b074-3783deb4a853", + "x-ms-correlation-request-id": "3868fc48-2dee-4941-bd5f-080b36beac3e", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122659Z:09cc5a1c-03f1-4062-b074-3783deb4a853", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164604Z:3868fc48-2dee-4941-bd5f-080b36beac3e", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba52fffb-502a-475a-b872-4e9b7b07e29a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c0444361-a616-4a78-9942-9e1bc7216dc0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2368,7 +2567,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:27:29 GMT", + "Date": "Tue, 25 Oct 2022 16:46:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2376,17 +2575,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ccb02d8-0afc-4bf2-a02e-c690efac570f", + "x-ms-correlation-request-id": "2479e9e3-4678-4dff-ad67-dc6dd59cde94", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122729Z:3ccb02d8-0afc-4bf2-a02e-c690efac570f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164604Z:2479e9e3-4678-4dff-ad67-dc6dd59cde94", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba52fffb-502a-475a-b872-4e9b7b07e29a", - "name": "ba52fffb-502a-475a-b872-4e9b7b07e29a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c0444361-a616-4a78-9942-9e1bc7216dc0", + "name": "c0444361-a616-4a78-9942-9e1bc7216dc0", "status": "Succeeded", - "startTime": "2022-09-19T12:26:58.904933Z", - "endTime": "2022-09-19T12:26:58.9674916Z", + "startTime": "2022-10-25T16:46:04.2453634Z", + "endTime": "2022-10-25T16:46:04.3391113Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b" @@ -2394,13 +2593,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba52fffb-502a-475a-b872-4e9b7b07e29a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c0444361-a616-4a78-9942-9e1bc7216dc0?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2408,7 +2607,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:27:29 GMT", + "Date": "Tue, 25 Oct 2022 16:46:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2416,19 +2615,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbaff3dd-2b9c-43f9-8a01-ff68c588fcf1", + "x-ms-correlation-request-id": "997b92f0-6d67-4ce4-927d-bf821107c377", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122729Z:dbaff3dd-2b9c-43f9-8a01-ff68c588fcf1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164604Z:997b92f0-6d67-4ce4-927d-bf821107c377", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b", "name": "sdk-py-tests-acc-1-84d7262b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A26%3A58.9115215Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A46%3A04.2389967Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:14:32.7904981Z" + "CreatedOnDate": "2022-10-25T16:33:59.2422811Z" }, "properties": { "encryption": { @@ -2439,10 +2638,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:14:33.8789254Z", + "createdAt": "2022-10-25T16:34:00.2110086Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:14:33.8789254Z" + "lastModifiedAt": "2022-10-25T16:34:00.2110086Z" } } }, @@ -2453,50 +2652,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:27:29 GMT", + "Date": "Tue, 25 Oct 2022 16:46:04 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b289ea39-609d-4eae-ab8b-247ecd136250", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122729Z:b289ea39-609d-4eae-ab8b-247ecd136250" + "x-ms-correlation-request-id": "af428c3d-f72a-48b1-9e3c-26f306975cc9", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164605Z:af428c3d-f72a-48b1-9e3c-26f306975cc9", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-84d7262b\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-84d7262b?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e626e18b-5307-4a42-b62c-1f336ce2d1a2?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c801336d-a5de-4e3d-8bc4-198fe4f4f6cf?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:27:30 GMT", + "Date": "Tue, 25 Oct 2022 16:46:05 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/e626e18b-5307-4a42-b62c-1f336ce2d1a2?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/c801336d-a5de-4e3d-8bc4-198fe4f4f6cf?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -2505,10 +2706,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "78fdca93-a3b0-4d16-ae0f-1252317a2d3e", - "x-ms-correlation-request-id": "368f725c-3966-4e7f-934c-b343043fc096", + "x-ms-arm-service-request-id": "3a084b46-be9b-4aa2-85d2-d7ecc2706918", + "x-ms-correlation-request-id": "abe56196-beff-438b-a90c-f39fd813eac7", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T122730Z:368f725c-3966-4e7f-934c-b343043fc096" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T164606Z:abe56196-beff-438b-a90c-f39fd813eac7" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_list_volumes.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_list_volumes.json index 8f4d72ad4150..c94e29b5aa2c 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_list_volumes.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_list_volumes.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:22 GMT", + "Date": "Tue, 25 Oct 2022 16:13:52 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:22 GMT", + "Date": "Tue, 25 Oct 2022 16:13:52 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "72dbf577-1c7c-4b6c-981d-8e273d472709", + "client-request-id": "11a91891-058d-436e-a91c-919b2598ff57", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "72dbf577-1c7c-4b6c-981d-8e273d472709", + "client-request-id": "11a91891-058d-436e-a91c-919b2598ff57", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:23 GMT", + "Date": "Tue, 25 Oct 2022 16:13:52 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/640d63a9-638b-4822-979a-19bb203b6a54?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0cf7bc55-bf2b-4dd7-98c1-aca6fa4849b7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:29 GMT", + "Date": "Tue, 25 Oct 2022 16:14:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "3827b097-aafe-4cbe-b602-dea87c487d0d", - "x-ms-correlation-request-id": "a76f84ef-d376-450e-b72e-aee90df8efbd", + "x-ms-arm-service-request-id": "41276de6-f969-40c9-bcfb-5dfbfdba55b9", + "x-ms-correlation-request-id": "40009465-78e8-4c08-96d9-9fc3439c75e9", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112029Z:a76f84ef-d376-450e-b72e-aee90df8efbd" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161401Z:40009465-78e8-4c08-96d9-9fc3439c75e9" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-a2e023e0", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0", - "etag": "W/\u0022a92f1466-92ab-4e4a-9293-a1e49965a422\u0022", + "etag": "W/\u0022f72ca317-7a48-4671-9a20-e5261ba81479\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:20:24.8927200Z" + "CreatedOnDate": "2022-10-25T16:13:55.6671444Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "325be844-a11e-4c6f-b4e1-dd0d8b3dfde4", + "resourceGuid": "84d2eacd-5bc6-43da-beb5-4f1dc35bc226", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/640d63a9-638b-4822-979a-19bb203b6a54?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0cf7bc55-bf2b-4dd7-98c1-aca6fa4849b7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:32 GMT", + "Date": "Tue, 25 Oct 2022 16:14:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "eb828c2a-c4a2-4f1b-99bf-a05c96db99e5", - "x-ms-correlation-request-id": "f1ca04ab-8e86-4e48-b2a8-56fb14268dee", + "x-ms-arm-service-request-id": "2b31e827-b932-4076-8bbe-bcb1019b5032", + "x-ms-correlation-request-id": "0501dcc1-14ca-4468-8d0b-7bf22f3f8adc", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112032Z:f1ca04ab-8e86-4e48-b2a8-56fb14268dee" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161402Z:0501dcc1-14ca-4468-8d0b-7bf22f3f8adc" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:33 GMT", - "ETag": "W/\u0022de69ee5f-a210-492b-bbdd-0df740af5e32\u0022", + "Date": "Tue, 25 Oct 2022 16:14:02 GMT", + "ETag": "W/\u002205824646-2537-4c7e-a43d-fecdeadc0663\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "16e50385-4938-49f5-a9a8-82b0d8c77174", - "x-ms-correlation-request-id": "b3d5b53c-07b0-4931-ba6e-6291727e9a3d", + "x-ms-arm-service-request-id": "d034de3c-5679-44d0-a748-f2685b224f59", + "x-ms-correlation-request-id": "812afd7a-da65-4973-8ae7-947a5d226dc4", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112033Z:b3d5b53c-07b0-4931-ba6e-6291727e9a3d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161402Z:812afd7a-da65-4973-8ae7-947a5d226dc4" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-a2e023e0", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0", - "etag": "W/\u0022de69ee5f-a210-492b-bbdd-0df740af5e32\u0022", + "etag": "W/\u002205824646-2537-4c7e-a43d-fecdeadc0663\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:20:24.8927200Z" + "CreatedOnDate": "2022-10-25T16:13:55.6671444Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "325be844-a11e-4c6f-b4e1-dd0d8b3dfde4", + "resourceGuid": "84d2eacd-5bc6-43da-beb5-4f1dc35bc226", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f4b47828-c2d9-4953-a185-8ca3477845ad?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7169310a-434c-43e5-b2d2-41adaff3f582?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:34 GMT", + "Date": "Tue, 25 Oct 2022 16:14:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "d594e1e0-41c3-447b-a952-9d37b6abd383", - "x-ms-correlation-request-id": "1a1db748-766a-46bd-931d-62edb4402145", + "x-ms-arm-service-request-id": "027ae052-5af5-4eac-ac5d-29b29d96dcdb", + "x-ms-correlation-request-id": "051ed9c1-e2b1-4b69-8587-1f405465c166", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112034Z:1a1db748-766a-46bd-931d-62edb4402145" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161403Z:051ed9c1-e2b1-4b69-8587-1f405465c166" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default", - "etag": "W/\u00220ec8039d-5d62-4a87-aea0-34b47e420119\u0022", + "etag": "W/\u00229fcb044d-88b7-42fc-8e22-8ca5c4a1acc8\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00220ec8039d-5d62-4a87-aea0-34b47e420119\u0022", + "etag": "W/\u00229fcb044d-88b7-42fc-8e22-8ca5c4a1acc8\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f4b47828-c2d9-4953-a185-8ca3477845ad?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7169310a-434c-43e5-b2d2-41adaff3f582?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:37 GMT", + "Date": "Tue, 25 Oct 2022 16:14:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e44416fb-3e66-4e71-98b8-96007a22d0cf", - "x-ms-correlation-request-id": "db6581de-ea9d-417e-bcdf-6ae5fddbcaac", + "x-ms-arm-service-request-id": "8b742eea-63b9-4944-a06e-a27d6d7a0f54", + "x-ms-correlation-request-id": "132a5839-605f-47f8-9905-68bc7fc97779", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112037Z:db6581de-ea9d-417e-bcdf-6ae5fddbcaac" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161403Z:132a5839-605f-47f8-9905-68bc7fc97779" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:38 GMT", - "ETag": "W/\u0022c92a0869-bc4c-480d-8d92-f6024b652e64\u0022", + "Date": "Tue, 25 Oct 2022 16:14:03 GMT", + "ETag": "W/\u0022bbf39343-aa08-4a08-8476-ce4eb3a7753a\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b2864be6-5a69-45f4-ac61-cae5da435be8", - "x-ms-correlation-request-id": "e0513d6a-ef2c-487a-8569-4156356f0008", + "x-ms-arm-service-request-id": "042b78bd-e835-422f-b209-5e3ac7d8cbd3", + "x-ms-correlation-request-id": "a4862dd9-4384-491e-9249-9c9ba8f3a636", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112038Z:e0513d6a-ef2c-487a-8569-4156356f0008" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161403Z:a4862dd9-4384-491e-9249-9c9ba8f3a636" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default", - "etag": "W/\u0022c92a0869-bc4c-480d-8d92-f6024b652e64\u0022", + "etag": "W/\u0022bbf39343-aa08-4a08-8476-ce4eb3a7753a\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022c92a0869-bc4c-480d-8d92-f6024b652e64\u0022", + "etag": "W/\u0022bbf39343-aa08-4a08-8476-ce4eb3a7753a\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:37 GMT", + "Date": "Tue, 25 Oct 2022 16:14:03 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:37 GMT", + "Date": "Tue, 25 Oct 2022 16:14:03 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "b45959d4-a732-484f-9279-0de4f2c6f663", + "client-request-id": "115057f2-a4c2-4aba-9dfc-1f99f2cc318f", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "b45959d4-a732-484f-9279-0de4f2c6f663", + "client-request-id": "115057f2-a4c2-4aba-9dfc-1f99f2cc318f", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:38 GMT", + "Date": "Tue, 25 Oct 2022 16:14:03 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc16c5aa-c8b5-4abd-8157-62d037f79ca9?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f1072a3-ffb2-491e-a8e8-b391da7b8a3f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:20:43 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A20%3A41.9037082Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:14:08 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A14%3A07.3832927Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5a81aa0-f898-4b47-82e5-7cd451d588b6", + "x-ms-correlation-request-id": "e8904738-a63e-4cb4-8657-0f00b45837cd", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112043Z:a5a81aa0-f898-4b47-82e5-7cd451d588b6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161408Z:e8904738-a63e-4cb4-8657-0f00b45837cd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A20%3A41.9037082Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A14%3A07.3832927Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:20:40.0074903Z" + "CreatedOnDate": "2022-10-25T16:14:05.5406205Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:20:40.9963377Z", + "createdAt": "2022-10-25T16:14:06.3746316Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:20:40.9963377Z" + "lastModifiedAt": "2022-10-25T16:14:06.3746316Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc16c5aa-c8b5-4abd-8157-62d037f79ca9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f1072a3-ffb2-491e-a8e8-b391da7b8a3f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:21:13 GMT", + "Date": "Tue, 25 Oct 2022 16:14:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2c78c2f-7dbb-4c48-81cc-a667859862f4", + "x-ms-correlation-request-id": "638e01ce-dec5-4d4f-b935-22f504fcf4cb", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112113Z:d2c78c2f-7dbb-4c48-81cc-a667859862f4", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161408Z:638e01ce-dec5-4d4f-b935-22f504fcf4cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cc16c5aa-c8b5-4abd-8157-62d037f79ca9", - "name": "cc16c5aa-c8b5-4abd-8157-62d037f79ca9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f1072a3-ffb2-491e-a8e8-b391da7b8a3f", + "name": "9f1072a3-ffb2-491e-a8e8-b391da7b8a3f", "status": "Succeeded", - "startTime": "2022-09-19T11:20:41.9038939Z", - "endTime": "2022-09-19T11:20:41.9508101Z", + "startTime": "2022-10-25T16:14:07.3787705Z", + "endTime": "2022-10-25T16:14:07.4568793Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:21:13 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A20%3A41.9566551Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:14:09 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A14%3A07.4502132Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea5a7db5-36a0-4a2e-ac56-bce9f5eda651", + "x-ms-correlation-request-id": "a0c2c5bc-c16c-4836-963c-9e0e7878102c", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112114Z:ea5a7db5-36a0-4a2e-ac56-bce9f5eda651", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161409Z:a0c2c5bc-c16c-4836-963c-9e0e7878102c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A20%3A41.9566551Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A14%3A07.4502132Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:20:40.0074903Z" + "CreatedOnDate": "2022-10-25T16:14:05.5406205Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:20:40.9963377Z", + "createdAt": "2022-10-25T16:14:06.3746316Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:20:40.9963377Z" + "lastModifiedAt": "2022-10-25T16:14:06.3746316Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1198d71-0cf8-4d52-8da0-ffece1e891e5?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21a015bc-3f1c-4276-b0d8-15f134cea0d6?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:21:16 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A21%3A15.5875692Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:14:11 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A14%3A10.9672229Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3e1431c-e827-4cbf-b73c-e7fd0fe16a8d", + "x-ms-correlation-request-id": "9b6b021b-dee9-4fcd-a81e-8f464241a252", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112116Z:d3e1431c-e827-4cbf-b73c-e7fd0fe16a8d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161411Z:9b6b021b-dee9-4fcd-a81e-8f464241a252", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A21%3A15.5875692Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A14%3A10.9672229Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:21:14.3013656Z" + "CreatedOnDate": "2022-10-25T16:14:09.5648288Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:21:15.4029173Z", + "createdAt": "2022-10-25T16:14:10.7054712Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:21:15.4029173Z" + "lastModifiedAt": "2022-10-25T16:14:10.7054712Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1198d71-0cf8-4d52-8da0-ffece1e891e5?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21a015bc-3f1c-4276-b0d8-15f134cea0d6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:21:46 GMT", + "Date": "Tue, 25 Oct 2022 16:14:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2e09e9c-e9e7-4f5d-820f-91829ffb5273", + "x-ms-correlation-request-id": "c80454cf-fae7-4cdd-8026-29ab000ae6b5", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112146Z:c2e09e9c-e9e7-4f5d-820f-91829ffb5273", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161412Z:c80454cf-fae7-4cdd-8026-29ab000ae6b5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1198d71-0cf8-4d52-8da0-ffece1e891e5", - "name": "e1198d71-0cf8-4d52-8da0-ffece1e891e5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21a015bc-3f1c-4276-b0d8-15f134cea0d6", + "name": "21a015bc-3f1c-4276-b0d8-15f134cea0d6", "status": "Succeeded", - "startTime": "2022-09-19T11:21:15.5884406Z", - "endTime": "2022-09-19T11:21:16.5153816Z", + "startTime": "2022-10-25T16:14:10.9667415Z", + "endTime": "2022-10-25T16:14:11.873063Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:21:46 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A21%3A16.5097851Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:14:12 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A14%3A11.8667007Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25f66cd9-9c31-40df-a7ef-9556b735d3ec", + "x-ms-correlation-request-id": "149bafd6-b1c3-40e1-8781-5da3eb1e03bc", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112147Z:25f66cd9-9c31-40df-a7ef-9556b735d3ec", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161412Z:149bafd6-b1c3-40e1-8781-5da3eb1e03bc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A21%3A16.5097851Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A14%3A11.8667007Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:21:14.3013656Z" + "CreatedOnDate": "2022-10-25T16:14:09.5648288Z" }, "properties": { - "poolId": "4582c81e-9e44-1078-afda-6253bb077da2", + "poolId": "bc5885e1-34d6-ab52-4e18-e54a5f9251cb", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:21:15.4029173Z", + "createdAt": "2022-10-25T16:14:10.7054712Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:21:15.4029173Z" + "lastModifiedAt": "2022-10-25T16:14:10.7054712Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:21:59 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A21%3A58.7600339Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:14:25 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A14%3A24.8292159Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99de6c51-4032-4549-b20a-47e78b81c033", + "x-ms-correlation-request-id": "a8c5f625-4abf-42df-94b4-8f4be225dfaa", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112200Z:99de6c51-4032-4549-b20a-47e78b81c033", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161425Z:a8c5f625-4abf-42df-94b4-8f4be225dfaa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A21%3A58.7600339Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A14%3A24.8292159Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:21:57.5177891Z" + "CreatedOnDate": "2022-10-25T16:14:22.8850346Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:21:58.4657081Z", + "createdAt": "2022-10-25T16:14:23.9158812Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:21:58.4657081Z" + "lastModifiedAt": "2022-10-25T16:14:23.9158812Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:22:30 GMT", + "Date": "Tue, 25 Oct 2022 16:14:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bbf42f9-e03c-47f4-a5fa-874c7f6166c0", + "x-ms-correlation-request-id": "9a3459d3-4c4f-40db-8c6e-71276481c413", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112230Z:1bbf42f9-e03c-47f4-a5fa-874c7f6166c0", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161426Z:9a3459d3-4c4f-40db-8c6e-71276481c413", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", - "name": "2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", "status": "Creating", - "startTime": "2022-09-19T11:21:58.7572971Z", + "startTime": "2022-10-25T16:14:24.8235299Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:23:00 GMT", + "Date": "Tue, 25 Oct 2022 16:14:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f841f42e-e620-460c-8e76-8ae9b60df584", + "x-ms-correlation-request-id": "d48a9172-4486-4c02-a7fe-d94726d697e8", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112300Z:f841f42e-e620-460c-8e76-8ae9b60df584", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161456Z:d48a9172-4486-4c02-a7fe-d94726d697e8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", - "name": "2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", "status": "Creating", - "startTime": "2022-09-19T11:21:58.7572971Z", + "startTime": "2022-10-25T16:14:24.8235299Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:23:30 GMT", + "Date": "Tue, 25 Oct 2022 16:15:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4aee8487-7121-4310-ae3f-d88a85df8231", + "x-ms-correlation-request-id": "a5a4fcdd-5118-4e1c-b337-3f8f0a739245", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112330Z:4aee8487-7121-4310-ae3f-d88a85df8231", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161526Z:a5a4fcdd-5118-4e1c-b337-3f8f0a739245", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", - "name": "2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", "status": "Creating", - "startTime": "2022-09-19T11:21:58.7572971Z", + "startTime": "2022-10-25T16:14:24.8235299Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:24:01 GMT", + "Date": "Tue, 25 Oct 2022 16:15:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98bafa6c-450a-4e52-b639-9f6803ee3506", + "x-ms-correlation-request-id": "625ad2ec-6578-44eb-807a-7bf95a96ad9e", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112401Z:98bafa6c-450a-4e52-b639-9f6803ee3506", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161556Z:625ad2ec-6578-44eb-807a-7bf95a96ad9e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", - "name": "2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", "status": "Creating", - "startTime": "2022-09-19T11:21:58.7572971Z", + "startTime": "2022-10-25T16:14:24.8235299Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:24:31 GMT", + "Date": "Tue, 25 Oct 2022 16:16:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c049c7bd-920e-4bf8-a646-a7e601f000a5", + "x-ms-correlation-request-id": "a4a19633-5ec0-40cf-9e56-872a21904919", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112431Z:c049c7bd-920e-4bf8-a646-a7e601f000a5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161627Z:a4a19633-5ec0-40cf-9e56-872a21904919", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", - "name": "2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", "status": "Creating", - "startTime": "2022-09-19T11:21:58.7572971Z", + "startTime": "2022-10-25T16:14:24.8235299Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:25:01 GMT", + "Date": "Tue, 25 Oct 2022 16:16:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02139fa8-8df0-4354-a89e-b3b4759c3f18", + "x-ms-correlation-request-id": "e20684a7-b60a-4107-8511-7046fb286aa6", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112501Z:02139fa8-8df0-4354-a89e-b3b4759c3f18", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161657Z:e20684a7-b60a-4107-8511-7046fb286aa6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", - "name": "2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", "status": "Creating", - "startTime": "2022-09-19T11:21:58.7572971Z", + "startTime": "2022-10-25T16:14:24.8235299Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:25:31 GMT", + "Date": "Tue, 25 Oct 2022 16:17:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ec81b77-3afb-4118-8bd7-84c3dd0aac13", + "x-ms-correlation-request-id": "ffec7764-7ff2-4b06-9c82-d3d45f814170", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112532Z:4ec81b77-3afb-4118-8bd7-84c3dd0aac13", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161727Z:ffec7764-7ff2-4b06-9c82-d3d45f814170", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", - "name": "2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", "status": "Creating", - "startTime": "2022-09-19T11:21:58.7572971Z", + "startTime": "2022-10-25T16:14:24.8235299Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:26:02 GMT", + "Date": "Tue, 25 Oct 2022 16:17:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1486,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bcf0e151-b74a-4f99-827a-238814637670", + "x-ms-correlation-request-id": "a4b0fd2b-c44c-4a70-ab05-fbae35f61c74", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112602Z:bcf0e151-b74a-4f99-827a-238814637670", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161757Z:a4b0fd2b-c44c-4a70-ab05-fbae35f61c74", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", + "status": "Creating", + "startTime": "2022-10-25T16:14:24.8235299Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:18:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bdcf3a94-7691-49ae-ac34-97d33886b100", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161828Z:bdcf3a94-7691-49ae-ac34-97d33886b100", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", + "status": "Creating", + "startTime": "2022-10-25T16:14:24.8235299Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:18:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "704f48b4-c732-4079-a172-a40455b3470d", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161858Z:704f48b4-c732-4079-a172-a40455b3470d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", - "name": "2acadb6a-f49a-46f1-bc62-4efd3d6c83a1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", + "status": "Creating", + "startTime": "2022-10-25T16:14:24.8235299Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:19:27 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "882f3e2d-9794-4171-8e96-bb703921c359", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161928Z:882f3e2d-9794-4171-8e96-bb703921c359", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed3fe744-e115-4b25-be68-669478a98226", + "name": "ed3fe744-e115-4b25-be68-669478a98226", "status": "Succeeded", - "startTime": "2022-09-19T11:21:58.7572971Z", - "endTime": "2022-09-19T11:26:01.5646328Z", + "startTime": "2022-10-25T16:14:24.8235299Z", + "endTime": "2022-10-25T16:19:07.3874021Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0" @@ -1509,7 +1630,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1638,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:26:03 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A26%3A01.55372Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:19:28 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A19%3A07.3774821Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1647,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c7b2aa9-7b29-4798-9ef5-6089c27e7b9e", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112603Z:5c7b2aa9-7b29-4798-9ef5-6089c27e7b9e", + "x-ms-correlation-request-id": "610368c5-4f89-4ed9-b01c-5472823fd849", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161929Z:610368c5-4f89-4ed9-b01c-5472823fd849", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A26%3A01.55372Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A19%3A07.3774821Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:21:57.5177891Z" + "CreatedOnDate": "2022-10-25T16:14:22.8850346Z" }, "properties": { - "fileSystemId": "e6de3af6-bf49-c6c1-2ca7-f572c383ce56", + "fileSystemId": "b0e41a53-a086-fe31-83dd-64ccd8028a19", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-a2e023e0", "usageThreshold": 107374182400, @@ -1569,7 +1690,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_118c8d8b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_afca3620", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1705,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "e6de3af6-bf49-c6c1-2ca7-f572c383ce56", - "fileSystemId": "e6de3af6-bf49-c6c1-2ca7-f572c383ce56", + "mountTargetId": "b0e41a53-a086-fe31-83dd-64ccd8028a19", + "fileSystemId": "b0e41a53-a086-fe31-83dd-64ccd8028a19", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1726,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:21:58.4657081Z", + "createdAt": "2022-10-25T16:14:23.9158812Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:21:58.4657081Z" + "lastModifiedAt": "2022-10-25T16:14:23.9158812Z" } } }, @@ -1621,7 +1742,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1651,30 +1772,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9400a166-9396-4633-940e-f83c03d6aa05?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5337b0a-3ec4-4008-9ad9-9e22fb6232ad?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:26:07 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A26%3A06.2522852Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:19:32 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A19%3A32.1670258Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3493752e-d16a-491b-a25f-aaaf5f3ddcec", + "x-ms-correlation-request-id": "e9a17430-a91b-4092-81f2-3e6b4897d37c", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112607Z:3493752e-d16a-491b-a25f-aaaf5f3ddcec", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161933Z:e9a17430-a91b-4092-81f2-3e6b4897d37c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1/sdk-py-tests-vol-4-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A26%3A06.2522852Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A19%3A32.1670258Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:26:03.7400239Z" + "CreatedOnDate": "2022-10-25T16:19:29.5292222Z" }, "properties": { "serviceLevel": "Premium", @@ -1704,21 +1825,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:26:05.4208061Z", + "createdAt": "2022-10-25T16:19:31.0542875Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:26:05.4208061Z" + "lastModifiedAt": "2022-10-25T16:19:31.0542875Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9400a166-9396-4633-940e-f83c03d6aa05?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5337b0a-3ec4-4008-9ad9-9e22fb6232ad?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1726,7 +1847,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:26:36 GMT", + "Date": "Tue, 25 Oct 2022 16:19:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1734,17 +1855,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3aa0732c-5d04-4d31-8590-66eca57fac22", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112637Z:3aa0732c-5d04-4d31-8590-66eca57fac22", + "x-ms-correlation-request-id": "cbd7cc85-1e4e-451c-9ce3-24a887a5adfc", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T161933Z:cbd7cc85-1e4e-451c-9ce3-24a887a5adfc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9400a166-9396-4633-940e-f83c03d6aa05", - "name": "9400a166-9396-4633-940e-f83c03d6aa05", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5337b0a-3ec4-4008-9ad9-9e22fb6232ad", + "name": "e5337b0a-3ec4-4008-9ad9-9e22fb6232ad", + "status": "Creating", + "startTime": "2022-10-25T16:19:32.166043Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5337b0a-3ec4-4008-9ad9-9e22fb6232ad?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:20:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d8943547-ab76-49c0-88f6-be76c5732fc3", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162004Z:d8943547-ab76-49c0-88f6-be76c5732fc3", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5337b0a-3ec4-4008-9ad9-9e22fb6232ad", + "name": "e5337b0a-3ec4-4008-9ad9-9e22fb6232ad", + "status": "Creating", + "startTime": "2022-10-25T16:19:32.166043Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5337b0a-3ec4-4008-9ad9-9e22fb6232ad?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:20:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "16775994-4e16-4380-9049-8edcb4e8d45c", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162035Z:16775994-4e16-4380-9049-8edcb4e8d45c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5337b0a-3ec4-4008-9ad9-9e22fb6232ad", + "name": "e5337b0a-3ec4-4008-9ad9-9e22fb6232ad", "status": "Succeeded", - "startTime": "2022-09-19T11:26:06.2505363Z", - "endTime": "2022-09-19T11:26:15.2387416Z", + "startTime": "2022-10-25T16:19:32.166043Z", + "endTime": "2022-10-25T16:20:08.1468318Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0" @@ -1758,7 +1959,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1766,8 +1967,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:26:37 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A26%3A15.2355427Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 16:20:35 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T16%3A20%3A08.1358527Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1775,22 +1976,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db06b01b-904e-4193-be88-707d476da363", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112638Z:db06b01b-904e-4193-be88-707d476da363", + "x-ms-correlation-request-id": "9cffe9c1-a17f-4a5d-9517-9778819c6b5e", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162035Z:9cffe9c1-a17f-4a5d-9517-9778819c6b5e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1/sdk-py-tests-vol-4-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A26%3A15.2355427Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A20%3A08.1358527Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:26:03.7400239Z" + "CreatedOnDate": "2022-10-25T16:19:29.5292222Z" }, "properties": { - "fileSystemId": "39691c83-c03c-eec3-8df0-6bbe2e45a6d6", + "fileSystemId": "b365ce6f-7f11-c61e-354f-c0c2f94833fc", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-a2e023e0", "usageThreshold": 107374182400, @@ -1818,7 +2019,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_118c8d8b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_afca3620", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1833,8 +2034,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "39691c83-c03c-eec3-8df0-6bbe2e45a6d6", - "fileSystemId": "39691c83-c03c-eec3-8df0-6bbe2e45a6d6", + "mountTargetId": "b365ce6f-7f11-c61e-354f-c0c2f94833fc", + "fileSystemId": "b365ce6f-7f11-c61e-354f-c0c2f94833fc", "ipAddress": "10.0.0.4" } ], @@ -1854,10 +2055,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:26:05.4208061Z", + "createdAt": "2022-10-25T16:19:31.0542875Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:26:05.4208061Z" + "lastModifiedAt": "2022-10-25T16:19:31.0542875Z" } } }, @@ -1868,7 +2069,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1876,7 +2077,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:26:37 GMT", + "Date": "Tue, 25 Oct 2022 16:20:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1884,9 +2085,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6be6e6a5-1379-4f37-9ce4-42e98ccce901", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112638Z:6be6e6a5-1379-4f37-9ce4-42e98ccce901", + "x-ms-correlation-request-id": "a13eda12-9941-495d-b067-673d9d1d32d5", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162036Z:a13eda12-9941-495d-b067-673d9d1d32d5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -1895,13 +2096,13 @@ "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A26%3A01.55372Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A19%3A07.3774821Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:21:57.5177891Z" + "CreatedOnDate": "2022-10-25T16:14:22.8850346Z" }, "properties": { - "fileSystemId": "e6de3af6-bf49-c6c1-2ca7-f572c383ce56", + "fileSystemId": "b0e41a53-a086-fe31-83dd-64ccd8028a19", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-a2e023e0", "usageThreshold": 107374182400, @@ -1929,7 +2130,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_118c8d8b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_afca3620", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1944,8 +2145,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "e6de3af6-bf49-c6c1-2ca7-f572c383ce56", - "fileSystemId": "e6de3af6-bf49-c6c1-2ca7-f572c383ce56", + "mountTargetId": "b0e41a53-a086-fe31-83dd-64ccd8028a19", + "fileSystemId": "b0e41a53-a086-fe31-83dd-64ccd8028a19", "ipAddress": "10.0.0.4" } ], @@ -1965,23 +2166,23 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:21:58.4657081Z", + "createdAt": "2022-10-25T16:14:23.9158812Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:21:58.4657081Z" + "lastModifiedAt": "2022-10-25T16:14:23.9158812Z" } }, { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1/sdk-py-tests-vol-4-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A26%3A15.2355427Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A20%3A08.1358527Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:26:03.7400239Z" + "CreatedOnDate": "2022-10-25T16:19:29.5292222Z" }, "properties": { - "fileSystemId": "39691c83-c03c-eec3-8df0-6bbe2e45a6d6", + "fileSystemId": "b365ce6f-7f11-c61e-354f-c0c2f94833fc", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-a2e023e0", "usageThreshold": 107374182400, @@ -2009,7 +2210,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_118c8d8b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_afca3620", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -2024,8 +2225,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "39691c83-c03c-eec3-8df0-6bbe2e45a6d6", - "fileSystemId": "39691c83-c03c-eec3-8df0-6bbe2e45a6d6", + "mountTargetId": "b365ce6f-7f11-c61e-354f-c0c2f94833fc", + "fileSystemId": "b365ce6f-7f11-c61e-354f-c0c2f94833fc", "ipAddress": "10.0.0.4" } ], @@ -2045,10 +2246,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:26:05.4208061Z", + "createdAt": "2022-10-25T16:19:31.0542875Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:26:05.4208061Z" + "lastModifiedAt": "2022-10-25T16:19:31.0542875Z" } } ] @@ -2062,36 +2263,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a4ae005-06c1-45ef-9172-2f6b4b574ce6?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25748c15-18c6-4164-a53d-a543f1ecbd6b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:26:38 GMT", + "Date": "Tue, 25 Oct 2022 16:20:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a4ae005-06c1-45ef-9172-2f6b4b574ce6?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25748c15-18c6-4164-a53d-a543f1ecbd6b?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "533ed071-a84f-4a63-af2b-999d141d51e4", + "x-ms-correlation-request-id": "f0dce8c6-46a6-47e5-8b1f-df8069689eb6", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112639Z:533ed071-a84f-4a63-af2b-999d141d51e4", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162036Z:f0dce8c6-46a6-47e5-8b1f-df8069689eb6", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a4ae005-06c1-45ef-9172-2f6b4b574ce6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25748c15-18c6-4164-a53d-a543f1ecbd6b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2099,7 +2300,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:27:09 GMT", + "Date": "Tue, 25 Oct 2022 16:20:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2107,17 +2308,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "191b0320-463c-482d-84c4-a746d3935978", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112709Z:191b0320-463c-482d-84c4-a746d3935978", + "x-ms-correlation-request-id": "8a6cb832-aa47-49b6-8982-c818dfa1fd69", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162037Z:8a6cb832-aa47-49b6-8982-c818dfa1fd69", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a4ae005-06c1-45ef-9172-2f6b4b574ce6", - "name": "9a4ae005-06c1-45ef-9172-2f6b4b574ce6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25748c15-18c6-4164-a53d-a543f1ecbd6b", + "name": "25748c15-18c6-4164-a53d-a543f1ecbd6b", + "status": "Deleting", + "startTime": "2022-10-25T16:20:36.6674407Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25748c15-18c6-4164-a53d-a543f1ecbd6b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:21:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cf907de6-7c43-4e87-878f-186ea3d030db", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162107Z:cf907de6-7c43-4e87-878f-186ea3d030db", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25748c15-18c6-4164-a53d-a543f1ecbd6b", + "name": "25748c15-18c6-4164-a53d-a543f1ecbd6b", "status": "Succeeded", - "startTime": "2022-09-19T11:26:39.1254837Z", - "endTime": "2022-09-19T11:26:42.8506654Z", + "startTime": "2022-10-25T16:20:36.6674407Z", + "endTime": "2022-10-25T16:20:51.0593294Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0" @@ -2125,13 +2366,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9a4ae005-06c1-45ef-9172-2f6b4b574ce6?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25748c15-18c6-4164-a53d-a543f1ecbd6b?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2139,7 +2380,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:27:09 GMT", + "Date": "Tue, 25 Oct 2022 16:21:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2147,22 +2388,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aaa48854-894e-41dd-b740-f4fd4ade2c30", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T112709Z:aaa48854-894e-41dd-b740-f4fd4ade2c30", + "x-ms-correlation-request-id": "4e9c8c03-b746-4f06-87b9-d33138bb4236", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162107Z:4e9c8c03-b746-4f06-87b9-d33138bb4236", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1/sdk-py-tests-vol-3-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A26%3A39.117275Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A20%3A36.6615882Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:21:57.5177891Z" + "CreatedOnDate": "2022-10-25T16:14:22.8850346Z" }, "properties": { - "fileSystemId": "e6de3af6-bf49-c6c1-2ca7-f572c383ce56", + "fileSystemId": "b0e41a53-a086-fe31-83dd-64ccd8028a19", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-a2e023e0", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2193,19 +2434,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_118c8d8b", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_afca3620", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a2e023e0", - "poolId": "4582c81e-9e44-1078-afda-6253bb077da2", + "poolId": "bc5885e1-34d6-ab52-4e18-e54a5f9251cb", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "e6de3af6-bf49-c6c1-2ca7-f572c383ce56", - "fileSystemId": "e6de3af6-bf49-c6c1-2ca7-f572c383ce56", + "mountTargetId": "b0e41a53-a086-fe31-83dd-64ccd8028a19", + "fileSystemId": "b0e41a53-a086-fe31-83dd-64ccd8028a19", "startIp": "", "endIp": "", "gateway": "", @@ -2237,10 +2478,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:21:58.4657081Z", + "createdAt": "2022-10-25T16:14:23.9158812Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:21:58.4657081Z" + "lastModifiedAt": "2022-10-25T16:14:23.9158812Z" } } }, @@ -2251,7 +2492,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2259,14 +2500,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:30:34 GMT", + "Date": "Tue, 25 Oct 2022 16:24:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfbdb02a-7ae7-4963-b5e0-841601ecee98", + "x-ms-correlation-request-id": "67b6d7b1-5c45-4a48-a863-d4c4d9de710f", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113034Z:dfbdb02a-7ae7-4963-b5e0-841601ecee98" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162429Z:67b6d7b1-5c45-4a48-a863-d4c4d9de710f" }, "ResponseBody": { "error": { @@ -2283,36 +2524,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:30:36 GMT", + "Date": "Tue, 25 Oct 2022 16:24:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91f67c7c-beab-4b22-97aa-4999f06b5188", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113036Z:91f67c7c-beab-4b22-97aa-4999f06b5188", + "x-ms-correlation-request-id": "dcfc4f6e-1f28-46a4-993b-10d7e2e7e8c4", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162433Z:dcfc4f6e-1f28-46a4-993b-10d7e2e7e8c4", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2320,7 +2561,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:31:06 GMT", + "Date": "Tue, 25 Oct 2022 16:24:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2328,16 +2569,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "737e8d5f-d708-4a87-add3-009422a614dd", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113107Z:737e8d5f-d708-4a87-add3-009422a614dd", + "x-ms-correlation-request-id": "427c8409-15f4-4580-b459-e249be113bb6", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162433Z:427c8409-15f4-4580-b459-e249be113bb6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab", - "name": "7cef6f05-a9c5-47a5-b459-42c24e7b45ab", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378", + "name": "5abbc6b0-accb-4345-afc0-85dff26b4378", "status": "Deleting", - "startTime": "2022-09-19T11:30:36.5529493Z", + "startTime": "2022-10-25T16:24:32.9124432Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2346,13 +2587,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2360,7 +2601,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:31:37 GMT", + "Date": "Tue, 25 Oct 2022 16:25:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2368,16 +2609,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "498241bb-efa4-46ae-b351-39ce86130cdd", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113137Z:498241bb-efa4-46ae-b351-39ce86130cdd", + "x-ms-correlation-request-id": "999f9fa9-eb7b-426e-bd2d-4c17531d4996", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162503Z:999f9fa9-eb7b-426e-bd2d-4c17531d4996", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab", - "name": "7cef6f05-a9c5-47a5-b459-42c24e7b45ab", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378", + "name": "5abbc6b0-accb-4345-afc0-85dff26b4378", "status": "Deleting", - "startTime": "2022-09-19T11:30:36.5529493Z", + "startTime": "2022-10-25T16:24:32.9124432Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2386,13 +2627,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2400,7 +2641,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:32:06 GMT", + "Date": "Tue, 25 Oct 2022 16:25:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2408,16 +2649,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e90231c6-481f-46b0-9f67-9ffa8716d467", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113207Z:e90231c6-481f-46b0-9f67-9ffa8716d467", + "x-ms-correlation-request-id": "4a93f8d9-08e2-4e70-879a-719fa2b6ed3d", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162533Z:4a93f8d9-08e2-4e70-879a-719fa2b6ed3d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab", - "name": "7cef6f05-a9c5-47a5-b459-42c24e7b45ab", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378", + "name": "5abbc6b0-accb-4345-afc0-85dff26b4378", "status": "Deleting", - "startTime": "2022-09-19T11:30:36.5529493Z", + "startTime": "2022-10-25T16:24:32.9124432Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2426,13 +2667,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2440,7 +2681,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:32:36 GMT", + "Date": "Tue, 25 Oct 2022 16:26:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2448,16 +2689,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dffe4503-7d42-4f32-b864-5037ca023bf7", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113237Z:dffe4503-7d42-4f32-b864-5037ca023bf7", + "x-ms-correlation-request-id": "982c11a2-6c48-46fd-b4fb-fa4f1ba1429e", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162604Z:982c11a2-6c48-46fd-b4fb-fa4f1ba1429e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab", - "name": "7cef6f05-a9c5-47a5-b459-42c24e7b45ab", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378", + "name": "5abbc6b0-accb-4345-afc0-85dff26b4378", "status": "Deleting", - "startTime": "2022-09-19T11:30:36.5529493Z", + "startTime": "2022-10-25T16:24:32.9124432Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2466,13 +2707,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2480,7 +2721,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:33:07 GMT", + "Date": "Tue, 25 Oct 2022 16:26:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2488,16 +2729,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e55e8a5-75fb-461f-828e-670972a55db0", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113307Z:0e55e8a5-75fb-461f-828e-670972a55db0", + "x-ms-correlation-request-id": "4612ec8f-7a12-4d92-bc7f-bb4fcf0a8a72", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162634Z:4612ec8f-7a12-4d92-bc7f-bb4fcf0a8a72", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab", - "name": "7cef6f05-a9c5-47a5-b459-42c24e7b45ab", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378", + "name": "5abbc6b0-accb-4345-afc0-85dff26b4378", "status": "Deleting", - "startTime": "2022-09-19T11:30:36.5529493Z", + "startTime": "2022-10-25T16:24:32.9124432Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2506,13 +2747,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2520,7 +2761,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:33:37 GMT", + "Date": "Tue, 25 Oct 2022 16:27:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2528,17 +2769,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5dd34320-0d24-49d8-b8c1-053f9dbe2a77", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113338Z:5dd34320-0d24-49d8-b8c1-053f9dbe2a77", + "x-ms-correlation-request-id": "76a241e0-bd27-48f9-8fcb-3e93cff9d312", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162704Z:76a241e0-bd27-48f9-8fcb-3e93cff9d312", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378", + "name": "5abbc6b0-accb-4345-afc0-85dff26b4378", + "status": "Deleting", + "startTime": "2022-10-25T16:24:32.9124432Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:27:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e1a724b6-5dfd-499c-8a35-e06eaa84292b", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162734Z:e1a724b6-5dfd-499c-8a35-e06eaa84292b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab", - "name": "7cef6f05-a9c5-47a5-b459-42c24e7b45ab", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378", + "name": "5abbc6b0-accb-4345-afc0-85dff26b4378", "status": "Succeeded", - "startTime": "2022-09-19T11:30:36.5529493Z", - "endTime": "2022-09-19T11:33:08.762708Z", + "startTime": "2022-10-25T16:24:32.9124432Z", + "endTime": "2022-10-25T16:27:11.9145757Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0" @@ -2546,13 +2827,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cef6f05-a9c5-47a5-b459-42c24e7b45ab?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5abbc6b0-accb-4345-afc0-85dff26b4378?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2560,7 +2841,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:33:37 GMT", + "Date": "Tue, 25 Oct 2022 16:27:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2568,22 +2849,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8442256-2ae8-4685-8c44-ca493539f48a", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113338Z:d8442256-2ae8-4685-8c44-ca493539f48a", + "x-ms-correlation-request-id": "2432f23e-fca6-4f17-bc87-8933bf8f446b", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T162735Z:2432f23e-fca6-4f17-bc87-8933bf8f446b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1/sdk-py-tests-vol-4-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A32%3A51.398856Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A27%3A06.2315358Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:26:03.7400239Z" + "CreatedOnDate": "2022-10-25T16:19:29.5292222Z" }, "properties": { - "fileSystemId": "39691c83-c03c-eec3-8df0-6bbe2e45a6d6", + "fileSystemId": "b365ce6f-7f11-c61e-354f-c0c2f94833fc", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-a2e023e0", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2614,19 +2895,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_118c8d8b", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_afca3620", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-4-a2e023e0", - "poolId": "4582c81e-9e44-1078-afda-6253bb077da2", + "poolId": "bc5885e1-34d6-ab52-4e18-e54a5f9251cb", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "39691c83-c03c-eec3-8df0-6bbe2e45a6d6", - "fileSystemId": "39691c83-c03c-eec3-8df0-6bbe2e45a6d6", + "mountTargetId": "b365ce6f-7f11-c61e-354f-c0c2f94833fc", + "fileSystemId": "b365ce6f-7f11-c61e-354f-c0c2f94833fc", "startIp": "", "endIp": "", "gateway": "", @@ -2658,10 +2939,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:26:05.4208061Z", + "createdAt": "2022-10-25T16:19:31.0542875Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:26:05.4208061Z" + "lastModifiedAt": "2022-10-25T16:19:31.0542875Z" } } }, @@ -2672,7 +2953,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2680,14 +2961,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:36:58 GMT", + "Date": "Tue, 25 Oct 2022 16:30:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c19b55f-e283-4ee0-8d95-c25d0c37ff61", + "x-ms-correlation-request-id": "750ceeab-2e21-4e45-af7e-01dd1d6dc8b2", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113659Z:7c19b55f-e283-4ee0-8d95-c25d0c37ff61" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163057Z:750ceeab-2e21-4e45-af7e-01dd1d6dc8b2" }, "ResponseBody": { "error": { @@ -2704,36 +2985,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee08910-af74-4466-b95e-59010b014722?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b500b11-1cf7-4291-9195-74b199d63e94?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:37:10 GMT", + "Date": "Tue, 25 Oct 2022 16:31:10 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee08910-af74-4466-b95e-59010b014722?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b500b11-1cf7-4291-9195-74b199d63e94?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f119f606-b9e7-44a9-b65f-920a85e5b8d7", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113711Z:f119f606-b9e7-44a9-b65f-920a85e5b8d7", + "x-ms-correlation-request-id": "9b88ad77-6324-464d-9599-138ef47e8460", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163110Z:9b88ad77-6324-464d-9599-138ef47e8460", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee08910-af74-4466-b95e-59010b014722?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b500b11-1cf7-4291-9195-74b199d63e94?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2741,7 +3022,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:37:41 GMT", + "Date": "Tue, 25 Oct 2022 16:31:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2749,17 +3030,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c03ac2e9-2d89-4652-bab0-7f1521e88227", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113741Z:c03ac2e9-2d89-4652-bab0-7f1521e88227", + "x-ms-correlation-request-id": "c1fccb84-3037-4542-949c-3856ab8c4e0f", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163110Z:c1fccb84-3037-4542-949c-3856ab8c4e0f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee08910-af74-4466-b95e-59010b014722", - "name": "0ee08910-af74-4466-b95e-59010b014722", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b500b11-1cf7-4291-9195-74b199d63e94", + "name": "4b500b11-1cf7-4291-9195-74b199d63e94", + "status": "Deleting", + "startTime": "2022-10-25T16:31:10.2530423Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b500b11-1cf7-4291-9195-74b199d63e94?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 16:31:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "52291e24-7754-49f3-9c6d-3ea4965aeacd", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163140Z:52291e24-7754-49f3-9c6d-3ea4965aeacd", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b500b11-1cf7-4291-9195-74b199d63e94", + "name": "4b500b11-1cf7-4291-9195-74b199d63e94", "status": "Succeeded", - "startTime": "2022-09-19T11:37:11.2135385Z", - "endTime": "2022-09-19T11:37:12.2761235Z", + "startTime": "2022-10-25T16:31:10.2530423Z", + "endTime": "2022-10-25T16:31:11.3936594Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1" @@ -2767,13 +3088,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ee08910-af74-4466-b95e-59010b014722?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b500b11-1cf7-4291-9195-74b199d63e94?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2781,7 +3102,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:37:41 GMT", + "Date": "Tue, 25 Oct 2022 16:31:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2789,22 +3110,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1f6eb85-bab5-4d50-ae5b-41342378a6dd", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113741Z:e1f6eb85-bab5-4d50-ae5b-41342378a6dd", + "x-ms-correlation-request-id": "930ddf4d-15ea-4089-9f65-ef819dbb9cef", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163141Z:930ddf4d-15ea-4089-9f65-ef819dbb9cef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-a2e023e0/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A37%3A11.2180198Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A31%3A10.2439591Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:21:14.3013656Z" + "CreatedOnDate": "2022-10-25T16:14:09.5648288Z" }, "properties": { - "poolId": "4582c81e-9e44-1078-afda-6253bb077da2", + "poolId": "bc5885e1-34d6-ab52-4e18-e54a5f9251cb", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0/capacityPools/sdk-py-tests-pool-1", @@ -2818,10 +3139,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:21:15.4029173Z", + "createdAt": "2022-10-25T16:14:10.7054712Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:21:15.4029173Z" + "lastModifiedAt": "2022-10-25T16:14:10.7054712Z" } } }, @@ -2833,20 +3154,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:37:51 GMT", + "Date": "Tue, 25 Oct 2022 16:31:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ee297bd-5cac-4a73-bbea-1e29a7cd9833", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113752Z:2ee297bd-5cac-4a73-bbea-1e29a7cd9833" + "x-ms-correlation-request-id": "dc7beae1-9890-4d7e-b378-afa0e1e8bcb4", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163151Z:dc7beae1-9890-4d7e-b378-afa0e1e8bcb4" }, "ResponseBody": null }, @@ -2858,20 +3179,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:38:01 GMT", + "Date": "Tue, 25 Oct 2022 16:32:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "398da78a-f698-4407-a873-e679ffa31f4b", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113802Z:398da78a-f698-4407-a873-e679ffa31f4b" + "x-ms-correlation-request-id": "6353dd33-293a-4247-9991-de858cf624fd", + "x-ms-ratelimit-remaining-subscription-deletes": "14990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163201Z:6353dd33-293a-4247-9991-de858cf624fd" }, "ResponseBody": null }, @@ -2883,20 +3204,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:38:12 GMT", + "Date": "Tue, 25 Oct 2022 16:32:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f196ec7e-8288-4767-a0ad-031b870cc115", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113812Z:f196ec7e-8288-4767-a0ad-031b870cc115" + "x-ms-correlation-request-id": "10cf3c4e-f3c9-4e00-9e58-6e8bc4a0c7ca", + "x-ms-ratelimit-remaining-subscription-deletes": "14989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163211Z:10cf3c4e-f3c9-4e00-9e58-6e8bc4a0c7ca" }, "ResponseBody": null }, @@ -2908,20 +3229,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 11:38:22 GMT", + "Date": "Tue, 25 Oct 2022 16:32:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0782920b-5f10-4310-a046-84ec96905919", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113823Z:0782920b-5f10-4310-a046-84ec96905919" + "x-ms-correlation-request-id": "af89b7c0-6ae1-4160-b9ef-51a04d0d6d95", + "x-ms-ratelimit-remaining-subscription-deletes": "14988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163222Z:af89b7c0-6ae1-4160-b9ef-51a04d0d6d95" }, "ResponseBody": null }, @@ -2932,7 +3253,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2940,14 +3261,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:38:32 GMT", + "Date": "Tue, 25 Oct 2022 16:32:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee5b77db-f5e3-450e-b7db-80eec648464c", + "x-ms-correlation-request-id": "bc3dc14e-6610-4773-b786-71686ba7188a", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113833Z:ee5b77db-f5e3-450e-b7db-80eec648464c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163232Z:bc3dc14e-6610-4773-b786-71686ba7188a" }, "ResponseBody": { "error": { @@ -2964,36 +3285,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2fe65e58-8832-4c6f-869c-7819491e379d?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/95b569c1-1c15-480c-a137-7f6ce60281f1?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:38:34 GMT", + "Date": "Tue, 25 Oct 2022 16:32:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2fe65e58-8832-4c6f-869c-7819491e379d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/95b569c1-1c15-480c-a137-7f6ce60281f1?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd9ee2a5-bfb2-49c6-be20-cb192fbf371e", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113834Z:dd9ee2a5-bfb2-49c6-be20-cb192fbf371e", + "x-ms-correlation-request-id": "a79d1a88-480a-44f5-84da-02b91a5fad55", + "x-ms-ratelimit-remaining-subscription-deletes": "14987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163234Z:a79d1a88-480a-44f5-84da-02b91a5fad55", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2fe65e58-8832-4c6f-869c-7819491e379d?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/95b569c1-1c15-480c-a137-7f6ce60281f1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3001,7 +3322,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:05 GMT", + "Date": "Tue, 25 Oct 2022 16:32:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3009,17 +3330,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8daebcb0-9d65-458e-8bf0-55e06055b4b1", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113905Z:8daebcb0-9d65-458e-8bf0-55e06055b4b1", + "x-ms-correlation-request-id": "b1740ae6-8436-4692-9c78-ca99f9a67289", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163234Z:b1740ae6-8436-4692-9c78-ca99f9a67289", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2fe65e58-8832-4c6f-869c-7819491e379d", - "name": "2fe65e58-8832-4c6f-869c-7819491e379d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/95b569c1-1c15-480c-a137-7f6ce60281f1", + "name": "95b569c1-1c15-480c-a137-7f6ce60281f1", "status": "Succeeded", - "startTime": "2022-09-19T11:38:34.8262443Z", - "endTime": "2022-09-19T11:38:34.8887478Z", + "startTime": "2022-10-25T16:32:33.8280757Z", + "endTime": "2022-10-25T16:32:33.9373977Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0" @@ -3027,13 +3348,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2fe65e58-8832-4c6f-869c-7819491e379d?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/95b569c1-1c15-480c-a137-7f6ce60281f1?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3041,7 +3362,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:05 GMT", + "Date": "Tue, 25 Oct 2022 16:32:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3049,19 +3370,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abdf8132-b198-4c48-a74a-2fab8dae7f2e", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113905Z:abdf8132-b198-4c48-a74a-2fab8dae7f2e", + "x-ms-correlation-request-id": "bb1d557b-ce12-4f40-8035-821142da12ed", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163234Z:bb1d557b-ce12-4f40-8035-821142da12ed", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0", "name": "sdk-py-tests-acc-1-a2e023e0", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A38%3A34.8302387Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T16%3A32%3A33.8314214Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:20:40.0074903Z" + "CreatedOnDate": "2022-10-25T16:14:05.5406205Z" }, "properties": { "encryption": { @@ -3072,10 +3393,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:20:40.9963377Z", + "createdAt": "2022-10-25T16:14:06.3746316Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:20:40.9963377Z" + "lastModifiedAt": "2022-10-25T16:14:06.3746316Z" } } }, @@ -3086,50 +3407,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:05 GMT", + "Date": "Tue, 25 Oct 2022 16:32:34 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6eb2148d-f889-4ca9-8e8a-328f78ed3fec", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113905Z:6eb2148d-f889-4ca9-8e8a-328f78ed3fec" + "x-ms-correlation-request-id": "065b70c2-98f4-4a35-a058-0235c7e5c353", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163234Z:065b70c2-98f4-4a35-a058-0235c7e5c353", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a2e023e0\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a2e023e0?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/717f18d9-6044-4c22-b469-9cc0607b750a?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ce0aae75-3e91-4ab7-b3e8-93d89c8a7dd6?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:39:06 GMT", + "Date": "Tue, 25 Oct 2022 16:32:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/717f18d9-6044-4c22-b469-9cc0607b750a?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/ce0aae75-3e91-4ab7-b3e8-93d89c8a7dd6?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -3138,10 +3461,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "43d43645-9e5a-4f7b-a80f-30b571fd9ffe", - "x-ms-correlation-request-id": "c31d20ea-1bbe-40cb-b4bd-4e75706003e1", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113906Z:c31d20ea-1bbe-40cb-b4bd-4e75706003e1" + "x-ms-arm-service-request-id": "2696f052-c77f-4234-bbf7-abdbcdae6c91", + "x-ms-correlation-request-id": "092673c3-5959-4ff3-80a5-951b2b10708c", + "x-ms-ratelimit-remaining-subscription-deletes": "14986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T163236Z:092673c3-5959-4ff3-80a5-951b2b10708c" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_patch_volume.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_patch_volume.json index 5576c818ee3c..0fdba4972015 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_patch_volume.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_patch_volume.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:17 GMT", + "Date": "Tue, 25 Oct 2022 17:32:38 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:17 GMT", + "Date": "Tue, 25 Oct 2022 17:32:38 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "ba59b532-8e1b-4db1-a920-d2d8317ce71d", + "client-request-id": "6ca0a0ee-666a-4cfb-8257-ae822799a852", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "ba59b532-8e1b-4db1-a920-d2d8317ce71d", + "client-request-id": "6ca0a0ee-666a-4cfb-8257-ae822799a852", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:17 GMT", + "Date": "Tue, 25 Oct 2022 17:32:38 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/be77cce8-6de3-45a8-9da1-6f88e0f50cbc?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7af5b8fe-ce4d-471f-b22a-9da13c197a81?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:23 GMT", + "Date": "Tue, 25 Oct 2022 17:32:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a5e8286a-6aa0-454f-8199-86fe9883461e", - "x-ms-correlation-request-id": "35faf8ee-3bbe-45e7-92be-952282a0939a", + "x-ms-arm-service-request-id": "50135440-2376-409c-97af-5a0bf2e386c3", + "x-ms-correlation-request-id": "643e1270-f168-4a52-9ae5-d21079e6079c", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T125923Z:35faf8ee-3bbe-45e7-92be-952282a0939a" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173248Z:643e1270-f168-4a52-9ae5-d21079e6079c" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-a12623c1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1", - "etag": "W/\u00222af654bd-1c93-47ca-b7dd-0ffc4cc11369\u0022", + "etag": "W/\u002206bc3b23-c856-4c54-867c-6fcf47475357\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:59:19.3602553Z" + "CreatedOnDate": "2022-10-25T17:32:41.9880840Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "7829bd5e-8f94-4813-8897-c5b3f9859976", + "resourceGuid": "6ccb1026-8fd2-4830-9ec9-c307e1d55d26", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/be77cce8-6de3-45a8-9da1-6f88e0f50cbc?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7af5b8fe-ce4d-471f-b22a-9da13c197a81?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:26 GMT", + "Date": "Tue, 25 Oct 2022 17:32:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "67b4dc7a-995d-4189-a4f5-afd9becdef96", - "x-ms-correlation-request-id": "83936e49-e4ff-4430-b934-53176b63ef22", + "x-ms-arm-service-request-id": "a3671117-bce9-4418-9163-8fe0a4b69ba9", + "x-ms-correlation-request-id": "b51870dc-b083-4989-8cd6-6eae564e0a7c", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T125927Z:83936e49-e4ff-4430-b934-53176b63ef22" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173248Z:b51870dc-b083-4989-8cd6-6eae564e0a7c" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:28 GMT", - "ETag": "W/\u0022fd81e18c-ab76-487d-a5d7-83f6633783f7\u0022", + "Date": "Tue, 25 Oct 2022 17:32:48 GMT", + "ETag": "W/\u0022cda70e9d-2876-4fcb-bd41-0b119245cf7b\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "24de6c82-da5f-410a-b4e6-15755ce64baa", - "x-ms-correlation-request-id": "a42332d1-a756-4f43-8b58-f21db057e99f", + "x-ms-arm-service-request-id": "7c96ebe4-6c8f-4576-bb9b-a3752979609c", + "x-ms-correlation-request-id": "e6570ae5-e557-4674-889d-d92945423a01", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T125928Z:a42332d1-a756-4f43-8b58-f21db057e99f" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173248Z:e6570ae5-e557-4674-889d-d92945423a01" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-a12623c1", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1", - "etag": "W/\u0022fd81e18c-ab76-487d-a5d7-83f6633783f7\u0022", + "etag": "W/\u0022cda70e9d-2876-4fcb-bd41-0b119245cf7b\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:59:19.3602553Z" + "CreatedOnDate": "2022-10-25T17:32:41.9880840Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "7829bd5e-8f94-4813-8897-c5b3f9859976", + "resourceGuid": "6ccb1026-8fd2-4830-9ec9-c307e1d55d26", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0eb2c938-795c-486b-bf03-38f6494368ec?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/81e5d0a6-bac8-472a-bc21-354ebb1d3235?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:28 GMT", + "Date": "Tue, 25 Oct 2022 17:32:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "e2525a15-531a-4d30-b649-0f31ae3e8377", - "x-ms-correlation-request-id": "5e86a023-407a-41f4-be6e-051673c882b0", + "x-ms-arm-service-request-id": "153a4b40-51f3-42f2-9404-5a52a88683b8", + "x-ms-correlation-request-id": "305e41e5-1dd3-480f-8f3e-f45c9f62b497", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T125929Z:5e86a023-407a-41f4-be6e-051673c882b0" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173249Z:305e41e5-1dd3-480f-8f3e-f45c9f62b497" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default", - "etag": "W/\u002261895e11-f7e4-4ecd-aec3-ab4d51571a3c\u0022", + "etag": "W/\u002252e94a48-2e25-4d29-b50f-337f7c1f0e5c\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default/delegations/netAppVolumes", - "etag": "W/\u002261895e11-f7e4-4ecd-aec3-ab4d51571a3c\u0022", + "etag": "W/\u002252e94a48-2e25-4d29-b50f-337f7c1f0e5c\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0eb2c938-795c-486b-bf03-38f6494368ec?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/81e5d0a6-bac8-472a-bc21-354ebb1d3235?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:31 GMT", + "Date": "Tue, 25 Oct 2022 17:32:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "4c2aa00e-0be9-4882-bc03-90fda09a302d", - "x-ms-correlation-request-id": "e50bc6a5-de7f-4ee2-8736-192a5f73bffe", + "x-ms-arm-service-request-id": "271516be-a25f-4d6f-99b5-9ac422067b91", + "x-ms-correlation-request-id": "2a01ce21-7779-4f76-bef7-3695048f0bbd", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T125932Z:e50bc6a5-de7f-4ee2-8736-192a5f73bffe" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173249Z:2a01ce21-7779-4f76-bef7-3695048f0bbd" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:32 GMT", - "ETag": "W/\u0022da692d31-32fa-4444-a7cd-1c5803af8c0c\u0022", + "Date": "Tue, 25 Oct 2022 17:32:49 GMT", + "ETag": "W/\u002231a869c6-d3dd-4d92-9b70-2ec613fd492c\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "1ff84748-2f28-4edb-a09c-af90020550b4", - "x-ms-correlation-request-id": "9d48003c-6d7b-44ee-b052-92b915622ff0", + "x-ms-arm-service-request-id": "fd8070f5-14ce-4e4c-a971-93979534ed41", + "x-ms-correlation-request-id": "0a348144-cd6a-4203-b71a-5cf37dbbf4c7", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T125932Z:9d48003c-6d7b-44ee-b052-92b915622ff0" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173249Z:0a348144-cd6a-4203-b71a-5cf37dbbf4c7" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default", - "etag": "W/\u0022da692d31-32fa-4444-a7cd-1c5803af8c0c\u0022", + "etag": "W/\u002231a869c6-d3dd-4d92-9b70-2ec613fd492c\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022da692d31-32fa-4444-a7cd-1c5803af8c0c\u0022", + "etag": "W/\u002231a869c6-d3dd-4d92-9b70-2ec613fd492c\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:32 GMT", + "Date": "Tue, 25 Oct 2022 17:32:50 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:32 GMT", + "Date": "Tue, 25 Oct 2022 17:32:50 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "a128a056-35ae-4454-92b0-ff1f3c95822a", + "client-request-id": "8556b173-4dc8-47a8-959f-67ccd69514f4", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "a128a056-35ae-4454-92b0-ff1f3c95822a", + "client-request-id": "8556b173-4dc8-47a8-959f-67ccd69514f4", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:33 GMT", + "Date": "Tue, 25 Oct 2022 17:32:50 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f512c31e-e744-429b-af37-f97202892ce8?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5c96399-9d8e-4649-a954-f7791b6998fd?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "704", + "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:59:36 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A59%3A35.7328826Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:33:00 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A32%3A53.2854668Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "222e225a-b8bb-4ce8-8683-37add2cfd661", + "x-ms-correlation-request-id": "a13c59b9-cf5f-44c6-ae7a-0be190294ca3", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T125937Z:222e225a-b8bb-4ce8-8683-37add2cfd661", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173300Z:a13c59b9-cf5f-44c6-ae7a-0be190294ca3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1", "name": "sdk-py-tests-acc-1-a12623c1", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A59%3A35.7328826Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A32%3A53.2854668Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:59:34.0672533Z" + "CreatedOnDate": "2022-10-25T17:32:51.5090173Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:59:34.848234Z", + "createdAt": "2022-10-25T17:32:52.3395874Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:59:34.848234Z" + "lastModifiedAt": "2022-10-25T17:32:52.3395874Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f512c31e-e744-429b-af37-f97202892ce8?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5c96399-9d8e-4649-a954-f7791b6998fd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:00:06 GMT", + "Date": "Tue, 25 Oct 2022 17:33:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d3292b9-ccdf-4275-8143-e31b9e11768c", + "x-ms-correlation-request-id": "f609c146-9899-4de9-984d-90f3bfa2ab57", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130007Z:8d3292b9-ccdf-4275-8143-e31b9e11768c", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173300Z:f609c146-9899-4de9-984d-90f3bfa2ab57", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f512c31e-e744-429b-af37-f97202892ce8", - "name": "f512c31e-e744-429b-af37-f97202892ce8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5c96399-9d8e-4649-a954-f7791b6998fd", + "name": "f5c96399-9d8e-4649-a954-f7791b6998fd", "status": "Succeeded", - "startTime": "2022-09-19T12:59:35.7245896Z", - "endTime": "2022-09-19T12:59:35.7714622Z", + "startTime": "2022-10-25T17:32:53.2924627Z", + "endTime": "2022-10-25T17:32:53.323761Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:00:07 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A59%3A35.7762172Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:33:01 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A32%3A53.327362Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e008557e-a09d-4c7d-9aa1-297d0ba82a10", + "x-ms-correlation-request-id": "533ed865-9bc9-4c27-ab4a-15ea0177f44e", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130007Z:e008557e-a09d-4c7d-9aa1-297d0ba82a10", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173301Z:533ed865-9bc9-4c27-ab4a-15ea0177f44e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1", "name": "sdk-py-tests-acc-1-a12623c1", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A59%3A35.7762172Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A32%3A53.327362Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:59:34.0672533Z" + "CreatedOnDate": "2022-10-25T17:32:51.5090173Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:59:34.848234Z", + "createdAt": "2022-10-25T17:32:52.3395874Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:59:34.848234Z" + "lastModifiedAt": "2022-10-25T17:32:52.3395874Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cee7c12d-3469-416e-a497-c40a1740ba72?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a1c0d472-4efe-4649-a739-2d06cc6499b9?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "918", + "Content-Length": "920", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:00:09 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A00%3A09.2765132Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:33:03 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A33%3A02.8247472Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d40038ca-b2db-44ca-a8fe-88ca868cc64d", + "x-ms-correlation-request-id": "a53e4855-ac76-466e-94a8-adec9cdead97", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130010Z:d40038ca-b2db-44ca-a8fe-88ca868cc64d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173304Z:a53e4855-ac76-466e-94a8-adec9cdead97", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-a12623c1/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A00%3A09.2765132Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A33%3A02.8247472Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:00:08.1428918Z" + "CreatedOnDate": "2022-10-25T17:33:01.5288261Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:00:09.08928Z", + "createdAt": "2022-10-25T17:33:02.517139Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:00:09.08928Z" + "lastModifiedAt": "2022-10-25T17:33:02.517139Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cee7c12d-3469-416e-a497-c40a1740ba72?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a1c0d472-4efe-4649-a739-2d06cc6499b9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:00:40 GMT", + "Date": "Tue, 25 Oct 2022 17:33:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5dca4383-f6dd-4f6d-8ad4-ebc11b1fe61c", + "x-ms-correlation-request-id": "6ffe8f59-71ef-4b53-9caa-aba0ea2019a2", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130040Z:5dca4383-f6dd-4f6d-8ad4-ebc11b1fe61c", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173304Z:6ffe8f59-71ef-4b53-9caa-aba0ea2019a2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cee7c12d-3469-416e-a497-c40a1740ba72", - "name": "cee7c12d-3469-416e-a497-c40a1740ba72", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a1c0d472-4efe-4649-a739-2d06cc6499b9", + "name": "a1c0d472-4efe-4649-a739-2d06cc6499b9", "status": "Succeeded", - "startTime": "2022-09-19T13:00:09.2694513Z", - "endTime": "2022-09-19T13:00:10.0384898Z", + "startTime": "2022-10-25T17:33:02.8275739Z", + "endTime": "2022-10-25T17:33:03.6714166Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:00:41 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A00%3A10.0307903Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:33:04 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A33%3A03.6694665Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dad2eb56-6943-4611-8751-7a104f9b2d27", + "x-ms-correlation-request-id": "d5da58fb-3dbb-42cc-a5e4-c5b84e163a8a", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130041Z:dad2eb56-6943-4611-8751-7a104f9b2d27", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173304Z:d5da58fb-3dbb-42cc-a5e4-c5b84e163a8a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-a12623c1/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A00%3A10.0307903Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A33%3A03.6694665Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:00:08.1428918Z" + "CreatedOnDate": "2022-10-25T17:33:01.5288261Z" }, "properties": { - "poolId": "c980798f-16b1-ee39-e0fb-b70051a43eb1", + "poolId": "307adbc9-8068-207c-e347-80e750ae8998", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:00:09.08928Z", + "createdAt": "2022-10-25T17:33:02.517139Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:00:09.08928Z" + "lastModifiedAt": "2022-10-25T17:33:02.517139Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "1585", + "Content-Length": "1581", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:00:53 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A00%3A53.0332479Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:33:18 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A33%3A17.4639732Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8d20bae-d780-43f0-808c-41b002b401cb", + "x-ms-correlation-request-id": "b2b0288a-6a26-4f3d-9757-dbe1365050f5", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130054Z:d8d20bae-d780-43f0-808c-41b002b401cb", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173318Z:b2b0288a-6a26-4f3d-9757-dbe1365050f5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1", "name": "sdk-py-tests-acc-1-a12623c1/sdk-py-tests-pool-1/sdk-py-tests-vol-3-a12623c1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A00%3A53.0332479Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A33%3A17.4639732Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:00:51.6098512Z" + "CreatedOnDate": "2022-10-25T17:33:15.1020658Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:00:52.6906351Z", + "createdAt": "2022-10-25T17:33:16.54139Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:00:52.6906351Z" + "lastModifiedAt": "2022-10-25T17:33:16.54139Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:01:23 GMT", + "Date": "Tue, 25 Oct 2022 17:33:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d37d347a-e4a1-4633-a043-bd7d9627277d", + "x-ms-correlation-request-id": "653f1678-17a1-47f3-8a71-1f5f6864d766", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130124Z:d37d347a-e4a1-4633-a043-bd7d9627277d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173319Z:653f1678-17a1-47f3-8a71-1f5f6864d766", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0", - "name": "fc41c80b-2f17-491f-bba0-c82d3873bfd0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76", + "name": "6981a454-5958-4025-9583-ba4a74e60e76", "status": "Creating", - "startTime": "2022-09-19T13:00:53.0314239Z", + "startTime": "2022-10-25T17:33:17.4729086Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:01:53 GMT", + "Date": "Tue, 25 Oct 2022 17:33:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b737800f-636c-4a33-9d22-9a2d17f8a88d", + "x-ms-correlation-request-id": "70f5176d-917c-49fe-a8c7-03b588ef3797", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130154Z:b737800f-636c-4a33-9d22-9a2d17f8a88d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173349Z:70f5176d-917c-49fe-a8c7-03b588ef3797", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0", - "name": "fc41c80b-2f17-491f-bba0-c82d3873bfd0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76", + "name": "6981a454-5958-4025-9583-ba4a74e60e76", "status": "Creating", - "startTime": "2022-09-19T13:00:53.0314239Z", + "startTime": "2022-10-25T17:33:17.4729086Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:02:23 GMT", + "Date": "Tue, 25 Oct 2022 17:34:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09a930f4-1dda-4c33-9245-62f3f1b588b0", + "x-ms-correlation-request-id": "204e8c39-69a8-4669-87e1-07e765e27dcc", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130224Z:09a930f4-1dda-4c33-9245-62f3f1b588b0", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173419Z:204e8c39-69a8-4669-87e1-07e765e27dcc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0", - "name": "fc41c80b-2f17-491f-bba0-c82d3873bfd0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76", + "name": "6981a454-5958-4025-9583-ba4a74e60e76", "status": "Creating", - "startTime": "2022-09-19T13:00:53.0314239Z", + "startTime": "2022-10-25T17:33:17.4729086Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:02:54 GMT", + "Date": "Tue, 25 Oct 2022 17:34:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08e06029-13f3-4ac3-a818-288c8adcb814", + "x-ms-correlation-request-id": "a0914a6e-6cd7-424d-9061-ffef7f0fd99d", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130255Z:08e06029-13f3-4ac3-a818-288c8adcb814", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173449Z:a0914a6e-6cd7-424d-9061-ffef7f0fd99d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0", - "name": "fc41c80b-2f17-491f-bba0-c82d3873bfd0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76", + "name": "6981a454-5958-4025-9583-ba4a74e60e76", "status": "Creating", - "startTime": "2022-09-19T13:00:53.0314239Z", + "startTime": "2022-10-25T17:33:17.4729086Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:03:24 GMT", + "Date": "Tue, 25 Oct 2022 17:35:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffeb71cc-e4bd-4551-81c0-01e726b4ad0b", + "x-ms-correlation-request-id": "0875f96c-a676-47e6-beb2-37ac6cc7f24f", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130325Z:ffeb71cc-e4bd-4551-81c0-01e726b4ad0b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173520Z:0875f96c-a676-47e6-beb2-37ac6cc7f24f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0", - "name": "fc41c80b-2f17-491f-bba0-c82d3873bfd0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76", + "name": "6981a454-5958-4025-9583-ba4a74e60e76", "status": "Creating", - "startTime": "2022-09-19T13:00:53.0314239Z", + "startTime": "2022-10-25T17:33:17.4729086Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:03:55 GMT", + "Date": "Tue, 25 Oct 2022 17:35:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85be22cc-712c-47ca-b512-89a710dc3c7a", + "x-ms-correlation-request-id": "1566df79-4d50-471c-adfc-900790951f95", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130355Z:85be22cc-712c-47ca-b512-89a710dc3c7a", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173550Z:1566df79-4d50-471c-adfc-900790951f95", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0", - "name": "fc41c80b-2f17-491f-bba0-c82d3873bfd0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76", + "name": "6981a454-5958-4025-9583-ba4a74e60e76", "status": "Creating", - "startTime": "2022-09-19T13:00:53.0314239Z", + "startTime": "2022-10-25T17:33:17.4729086Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:04:25 GMT", + "Date": "Tue, 25 Oct 2022 17:36:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2065ecc6-d83d-4e5f-8c59-8aa5c3959c88", + "x-ms-correlation-request-id": "b2927aea-0cf4-4669-91e9-36e8c1f88203", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130425Z:2065ecc6-d83d-4e5f-8c59-8aa5c3959c88", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173620Z:b2927aea-0cf4-4669-91e9-36e8c1f88203", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0", - "name": "fc41c80b-2f17-491f-bba0-c82d3873bfd0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76", + "name": "6981a454-5958-4025-9583-ba4a74e60e76", "status": "Creating", - "startTime": "2022-09-19T13:00:53.0314239Z", + "startTime": "2022-10-25T17:33:17.4729086Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:04:56 GMT", + "Date": "Tue, 25 Oct 2022 17:36:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1486,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e30ca956-df7d-4528-a769-f1505b802baf", + "x-ms-correlation-request-id": "acb8fa55-d17b-468d-bb80-faa2e1fcf34b", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130456Z:e30ca956-df7d-4528-a769-f1505b802baf", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173650Z:acb8fa55-d17b-468d-bb80-faa2e1fcf34b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76", + "name": "6981a454-5958-4025-9583-ba4a74e60e76", + "status": "Creating", + "startTime": "2022-10-25T17:33:17.4729086Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:37:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cfd1f079-9754-4a3c-8d89-dd4848e53be9", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173721Z:cfd1f079-9754-4a3c-8d89-dd4848e53be9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fc41c80b-2f17-491f-bba0-c82d3873bfd0", - "name": "fc41c80b-2f17-491f-bba0-c82d3873bfd0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76", + "name": "6981a454-5958-4025-9583-ba4a74e60e76", + "status": "Creating", + "startTime": "2022-10-25T17:33:17.4729086Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:37:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7476af13-74df-478b-9856-ca289b2403a8", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173751Z:7476af13-74df-478b-9856-ca289b2403a8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6981a454-5958-4025-9583-ba4a74e60e76", + "name": "6981a454-5958-4025-9583-ba4a74e60e76", "status": "Succeeded", - "startTime": "2022-09-19T13:00:53.0314239Z", - "endTime": "2022-09-19T13:04:51.3118054Z", + "startTime": "2022-10-25T17:33:17.4729086Z", + "endTime": "2022-10-25T17:37:47.311747Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1" @@ -1509,7 +1590,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1598,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:04:57 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A04%3A51.3036127Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:37:51 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A37%3A47.306401Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1607,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d44eba5-ab28-48ac-aa54-df17b17aadd5", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130457Z:6d44eba5-ab28-48ac-aa54-df17b17aadd5", + "x-ms-correlation-request-id": "e122fe61-5a74-400a-bf84-741058d64d1d", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173751Z:e122fe61-5a74-400a-bf84-741058d64d1d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1", "name": "sdk-py-tests-acc-1-a12623c1/sdk-py-tests-pool-1/sdk-py-tests-vol-3-a12623c1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A04%3A51.3036127Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A37%3A47.306401Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:00:51.6098512Z" + "CreatedOnDate": "2022-10-25T17:33:15.1020658Z" }, "properties": { - "fileSystemId": "54204f71-378c-7646-9893-c45904d95c58", + "fileSystemId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-a12623c1", "usageThreshold": 107374182400, @@ -1569,7 +1650,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6d44ed82", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_49685655", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1665,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "54204f71-378c-7646-9893-c45904d95c58", - "fileSystemId": "54204f71-378c-7646-9893-c45904d95c58", + "mountTargetId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", + "fileSystemId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1686,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:00:52.6906351Z", + "createdAt": "2022-10-25T17:33:16.54139Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:00:52.6906351Z" + "lastModifiedAt": "2022-10-25T17:33:16.54139Z" } } }, @@ -1621,7 +1702,7 @@ "Connection": "keep-alive", "Content-Length": "166", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -1634,35 +1715,35 @@ }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5afdb42-b256-45fa-a9f9-d29e7d0499f3?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f806b84-d5d2-4e2c-8ecd-42b667270fc6?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "2480", + "Content-Length": "2476", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:04:58 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A04%3A58.3433893Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:37:52 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A37%3A52.3725197Z\u0027\u0022", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5afdb42-b256-45fa-a9f9-d29e7d0499f3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f806b84-d5d2-4e2c-8ecd-42b667270fc6?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db1d99cd-025d-41f5-9d0e-8ffe2808b72c", + "x-ms-correlation-request-id": "ff34edee-c4ea-4e45-a8fa-b260e6a5f4b7", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130458Z:db1d99cd-025d-41f5-9d0e-8ffe2808b72c", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173752Z:ff34edee-c4ea-4e45-a8fa-b260e6a5f4b7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1", "name": "sdk-py-tests-acc-1-a12623c1/sdk-py-tests-pool-1/sdk-py-tests-vol-3-a12623c1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A04%3A58.3433893Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A37%3A52.3725197Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:00:51.6098512Z" + "CreatedOnDate": "2022-10-25T17:33:15.1020658Z" }, "properties": { "provisioningState": "Patching", - "fileSystemId": "54204f71-378c-7646-9893-c45904d95c58", + "fileSystemId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-a12623c1", "usageThreshold": 107374182400, @@ -1690,7 +1771,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6d44ed82", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_49685655", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1705,8 +1786,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "54204f71-378c-7646-9893-c45904d95c58", - "fileSystemId": "54204f71-378c-7646-9893-c45904d95c58", + "mountTargetId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", + "fileSystemId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", "ipAddress": "10.0.0.4" } ], @@ -1725,21 +1806,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:00:52.6906351Z", + "createdAt": "2022-10-25T17:33:16.54139Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:00:52.6906351Z" + "lastModifiedAt": "2022-10-25T17:33:16.54139Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5afdb42-b256-45fa-a9f9-d29e7d0499f3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f806b84-d5d2-4e2c-8ecd-42b667270fc6?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1747,7 +1828,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:05:28 GMT", + "Date": "Tue, 25 Oct 2022 17:37:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1755,17 +1836,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ae69cc3-8eb4-4257-b21b-0f41c606df6d", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130528Z:4ae69cc3-8eb4-4257-b21b-0f41c606df6d", + "x-ms-correlation-request-id": "61e2c5e4-2926-48ba-9924-01b73431f4bc", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173752Z:61e2c5e4-2926-48ba-9924-01b73431f4bc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5afdb42-b256-45fa-a9f9-d29e7d0499f3", - "name": "c5afdb42-b256-45fa-a9f9-d29e7d0499f3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f806b84-d5d2-4e2c-8ecd-42b667270fc6", + "name": "1f806b84-d5d2-4e2c-8ecd-42b667270fc6", + "status": "Patching", + "startTime": "2022-10-25T17:37:52.3749222Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f806b84-d5d2-4e2c-8ecd-42b667270fc6?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:38:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fe60cebb-66e0-4d53-ae6f-f2d96cb4c7dd", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173823Z:fe60cebb-66e0-4d53-ae6f-f2d96cb4c7dd", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f806b84-d5d2-4e2c-8ecd-42b667270fc6", + "name": "1f806b84-d5d2-4e2c-8ecd-42b667270fc6", "status": "Succeeded", - "startTime": "2022-09-19T13:04:58.3338194Z", - "endTime": "2022-09-19T13:05:01.3184749Z", + "startTime": "2022-10-25T17:37:52.3749222Z", + "endTime": "2022-10-25T17:37:55.6403305Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1" @@ -1773,13 +1894,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c5afdb42-b256-45fa-a9f9-d29e7d0499f3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1f806b84-d5d2-4e2c-8ecd-42b667270fc6?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1787,7 +1908,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:05:28 GMT", + "Date": "Tue, 25 Oct 2022 17:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1795,22 +1916,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88ecab5c-47db-4370-9ce6-e83502ce74e1", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130529Z:88ecab5c-47db-4370-9ce6-e83502ce74e1", + "x-ms-correlation-request-id": "90a91fcc-1ad6-40d5-86f5-b40159d7b965", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173823Z:90a91fcc-1ad6-40d5-86f5-b40159d7b965", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1", "name": "sdk-py-tests-acc-1-a12623c1/sdk-py-tests-pool-1/sdk-py-tests-vol-3-a12623c1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A05%3A01.3136073Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A37%3A55.6406599Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:04:58.0021870Z" + "CreatedOnDate": "2022-10-25T17:37:52.0043455Z" }, "properties": { - "fileSystemId": "54204f71-378c-7646-9893-c45904d95c58", + "fileSystemId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-a12623c1", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -1841,19 +1962,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6d44ed82", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_49685655", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1", - "poolId": "c980798f-16b1-ee39-e0fb-b70051a43eb1", + "poolId": "307adbc9-8068-207c-e347-80e750ae8998", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "54204f71-378c-7646-9893-c45904d95c58", - "fileSystemId": "54204f71-378c-7646-9893-c45904d95c58", + "mountTargetId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", + "fileSystemId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", "startIp": "", "endIp": "", "gateway": "", @@ -1885,10 +2006,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:00:52.6906351Z", + "createdAt": "2022-10-25T17:33:16.54139Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:04:58.2083783Z" + "lastModifiedAt": "2022-10-25T17:37:52.1677182Z" } } }, @@ -1900,36 +2021,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79149132-9290-435d-819b-83e45bb1a815?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:05:30 GMT", + "Date": "Tue, 25 Oct 2022 17:38:24 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79149132-9290-435d-819b-83e45bb1a815?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfb91244-4ad6-4c2a-a63f-4bca4b9e51be", + "x-ms-correlation-request-id": "53f440a5-27fd-41d2-8d76-0047f56c863d", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130530Z:cfb91244-4ad6-4c2a-a63f-4bca4b9e51be", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173824Z:53f440a5-27fd-41d2-8d76-0047f56c863d", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79149132-9290-435d-819b-83e45bb1a815?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1937,7 +2058,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:06:00 GMT", + "Date": "Tue, 25 Oct 2022 17:38:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1945,16 +2066,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c517a388-2e58-4f53-bd9f-9f2b9d588467", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130600Z:c517a388-2e58-4f53-bd9f-9f2b9d588467", + "x-ms-correlation-request-id": "a6be8bbe-fb6f-4d16-8c0b-36e23afe7171", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173824Z:a6be8bbe-fb6f-4d16-8c0b-36e23afe7171", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79149132-9290-435d-819b-83e45bb1a815", - "name": "79149132-9290-435d-819b-83e45bb1a815", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f", + "name": "9557df05-1f57-44c2-97ec-748b82ceb91f", "status": "Deleting", - "startTime": "2022-09-19T13:05:30.4399128Z", + "startTime": "2022-10-25T17:38:23.8814154Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1963,13 +2084,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79149132-9290-435d-819b-83e45bb1a815?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1977,7 +2098,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:06:30 GMT", + "Date": "Tue, 25 Oct 2022 17:38:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1985,16 +2106,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "212524fa-1fb1-4601-bfdc-d93af1b45bd1", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130631Z:212524fa-1fb1-4601-bfdc-d93af1b45bd1", + "x-ms-correlation-request-id": "6b323046-f85d-43f3-8e6e-ac32320791a5", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173854Z:6b323046-f85d-43f3-8e6e-ac32320791a5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79149132-9290-435d-819b-83e45bb1a815", - "name": "79149132-9290-435d-819b-83e45bb1a815", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f", + "name": "9557df05-1f57-44c2-97ec-748b82ceb91f", "status": "Deleting", - "startTime": "2022-09-19T13:05:30.4399128Z", + "startTime": "2022-10-25T17:38:23.8814154Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2003,13 +2124,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79149132-9290-435d-819b-83e45bb1a815?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2017,7 +2138,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:07:02 GMT", + "Date": "Tue, 25 Oct 2022 17:39:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2025,17 +2146,177 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40c62015-594f-432d-bb48-1d55c0b462c8", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130702Z:40c62015-594f-432d-bb48-1d55c0b462c8", + "x-ms-correlation-request-id": "f23ee7bb-3fc9-4e55-8265-478e9730f304", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173924Z:f23ee7bb-3fc9-4e55-8265-478e9730f304", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79149132-9290-435d-819b-83e45bb1a815", - "name": "79149132-9290-435d-819b-83e45bb1a815", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f", + "name": "9557df05-1f57-44c2-97ec-748b82ceb91f", + "status": "Deleting", + "startTime": "2022-10-25T17:38:23.8814154Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:39:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2d60082c-fba6-4d9b-95f7-e25d186c0b52", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173955Z:2d60082c-fba6-4d9b-95f7-e25d186c0b52", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f", + "name": "9557df05-1f57-44c2-97ec-748b82ceb91f", + "status": "Deleting", + "startTime": "2022-10-25T17:38:23.8814154Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:40:25 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "71d90bcf-9f83-44c0-abfe-de916fbac7e5", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174026Z:71d90bcf-9f83-44c0-abfe-de916fbac7e5", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f", + "name": "9557df05-1f57-44c2-97ec-748b82ceb91f", + "status": "Deleting", + "startTime": "2022-10-25T17:38:23.8814154Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:40:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c202582e-d564-4792-b8c8-b124f0e31c3b", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174056Z:c202582e-d564-4792-b8c8-b124f0e31c3b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f", + "name": "9557df05-1f57-44c2-97ec-748b82ceb91f", + "status": "Deleting", + "startTime": "2022-10-25T17:38:23.8814154Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:41:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a0db14a7-7166-403a-8e7e-61172832cf8a", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174126Z:a0db14a7-7166-403a-8e7e-61172832cf8a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f", + "name": "9557df05-1f57-44c2-97ec-748b82ceb91f", "status": "Succeeded", - "startTime": "2022-09-19T13:05:30.4399128Z", - "endTime": "2022-09-19T13:06:33.7951418Z", + "startTime": "2022-10-25T17:38:23.8814154Z", + "endTime": "2022-10-25T17:41:18.0885571Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1" @@ -2043,13 +2324,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/79149132-9290-435d-819b-83e45bb1a815?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9557df05-1f57-44c2-97ec-748b82ceb91f?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2057,7 +2338,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:07:02 GMT", + "Date": "Tue, 25 Oct 2022 17:41:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2065,22 +2346,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5fd7b589-fd5a-4532-953c-e94ade7fab86", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T130703Z:5fd7b589-fd5a-4532-953c-e94ade7fab86", + "x-ms-correlation-request-id": "2d54131f-36ef-45bd-9a75-8b85b55acfec", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174126Z:2d54131f-36ef-45bd-9a75-8b85b55acfec", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1", "name": "sdk-py-tests-acc-1-a12623c1/sdk-py-tests-pool-1/sdk-py-tests-vol-3-a12623c1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A06%3A28.7212446Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A41%3A00.3965502Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:04:58.0021870Z" + "CreatedOnDate": "2022-10-25T17:37:52.0043455Z" }, "properties": { - "fileSystemId": "54204f71-378c-7646-9893-c45904d95c58", + "fileSystemId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-a12623c1", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2111,19 +2392,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6d44ed82", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_49685655", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-a12623c1", - "poolId": "c980798f-16b1-ee39-e0fb-b70051a43eb1", + "poolId": "307adbc9-8068-207c-e347-80e750ae8998", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "54204f71-378c-7646-9893-c45904d95c58", - "fileSystemId": "54204f71-378c-7646-9893-c45904d95c58", + "mountTargetId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", + "fileSystemId": "bba370d5-37f5-42a9-ff5b-97a7e28a06d2", "startIp": "", "endIp": "", "gateway": "", @@ -2155,10 +2436,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:00:52.6906351Z", + "createdAt": "2022-10-25T17:33:16.54139Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:04:58.2083783Z" + "lastModifiedAt": "2022-10-25T17:37:52.1677182Z" } } }, @@ -2169,7 +2450,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2177,14 +2458,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:10:26 GMT", + "Date": "Tue, 25 Oct 2022 17:44:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cde7709c-5053-4f43-9b5c-02de01f10080", + "x-ms-correlation-request-id": "858ddfd4-2723-405d-b328-d72017ca6aa2", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131026Z:cde7709c-5053-4f43-9b5c-02de01f10080" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174449Z:858ddfd4-2723-405d-b328-d72017ca6aa2" }, "ResponseBody": { "error": { @@ -2201,36 +2482,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24f0e798-945c-47d7-bcb3-7f975e95ae95?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27d03dcb-c5ee-46d2-bb69-f61b20ea0209?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:10:38 GMT", + "Date": "Tue, 25 Oct 2022 17:45:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24f0e798-945c-47d7-bcb3-7f975e95ae95?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27d03dcb-c5ee-46d2-bb69-f61b20ea0209?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27a63963-6d9a-4ad5-a68c-ed4f3692be82", + "x-ms-correlation-request-id": "3fbe1335-d1fc-4cc8-8098-376ea6ee1f9f", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131039Z:27a63963-6d9a-4ad5-a68c-ed4f3692be82", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174502Z:3fbe1335-d1fc-4cc8-8098-376ea6ee1f9f", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24f0e798-945c-47d7-bcb3-7f975e95ae95?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27d03dcb-c5ee-46d2-bb69-f61b20ea0209?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2238,7 +2519,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:11:08 GMT", + "Date": "Tue, 25 Oct 2022 17:45:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2246,17 +2527,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "381eba72-9b5c-4a09-a0eb-a44d4ecb8dc6", + "x-ms-correlation-request-id": "55041ff8-f982-4136-a2c1-98541815b051", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131109Z:381eba72-9b5c-4a09-a0eb-a44d4ecb8dc6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174502Z:55041ff8-f982-4136-a2c1-98541815b051", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27d03dcb-c5ee-46d2-bb69-f61b20ea0209", + "name": "27d03dcb-c5ee-46d2-bb69-f61b20ea0209", + "status": "Deleting", + "startTime": "2022-10-25T17:45:02.38396Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27d03dcb-c5ee-46d2-bb69-f61b20ea0209?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:45:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2e62c9f2-434d-4b18-8db7-389392874a24", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174532Z:2e62c9f2-434d-4b18-8db7-389392874a24", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24f0e798-945c-47d7-bcb3-7f975e95ae95", - "name": "24f0e798-945c-47d7-bcb3-7f975e95ae95", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27d03dcb-c5ee-46d2-bb69-f61b20ea0209", + "name": "27d03dcb-c5ee-46d2-bb69-f61b20ea0209", "status": "Succeeded", - "startTime": "2022-09-19T13:10:38.8606264Z", - "endTime": "2022-09-19T13:10:39.7825654Z", + "startTime": "2022-10-25T17:45:02.38396Z", + "endTime": "2022-10-25T17:45:03.3839677Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1" @@ -2264,13 +2585,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24f0e798-945c-47d7-bcb3-7f975e95ae95?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/27d03dcb-c5ee-46d2-bb69-f61b20ea0209?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2278,7 +2599,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:11:08 GMT", + "Date": "Tue, 25 Oct 2022 17:45:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2286,22 +2607,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0616244-98f1-459a-892b-a3996c358cbe", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131109Z:c0616244-98f1-459a-892b-a3996c358cbe", + "x-ms-correlation-request-id": "a2787273-9536-49b9-a1b0-87932663d243", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174533Z:a2787273-9536-49b9-a1b0-87932663d243", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-a12623c1/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A10%3A38.8577607Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A45%3A02.3897815Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:00:08.1428918Z" + "CreatedOnDate": "2022-10-25T17:33:01.5288261Z" }, "properties": { - "poolId": "c980798f-16b1-ee39-e0fb-b70051a43eb1", + "poolId": "307adbc9-8068-207c-e347-80e750ae8998", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1/capacityPools/sdk-py-tests-pool-1", @@ -2315,10 +2636,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:00:09.08928Z", + "createdAt": "2022-10-25T17:33:02.517139Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:00:09.08928Z" + "lastModifiedAt": "2022-10-25T17:33:02.517139Z" } } }, @@ -2330,20 +2651,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:11:18 GMT", + "Date": "Tue, 25 Oct 2022 17:45:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1634748e-c6ff-40b8-87da-2945a6893979", + "x-ms-correlation-request-id": "a544dae9-a703-472d-a828-f3c2de951542", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131119Z:1634748e-c6ff-40b8-87da-2945a6893979" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174543Z:a544dae9-a703-472d-a828-f3c2de951542" }, "ResponseBody": null }, @@ -2355,20 +2676,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:11:29 GMT", + "Date": "Tue, 25 Oct 2022 17:45:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8abb0c47-b7b0-4324-988c-9e372d974dac", + "x-ms-correlation-request-id": "6aea1bbf-2c64-42ec-8b9b-233c069b825e", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131130Z:8abb0c47-b7b0-4324-988c-9e372d974dac" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174553Z:6aea1bbf-2c64-42ec-8b9b-233c069b825e" }, "ResponseBody": null }, @@ -2380,20 +2701,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:11:40 GMT", + "Date": "Tue, 25 Oct 2022 17:46:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "304bfb52-9f4f-409f-969d-331d0cdef36c", + "x-ms-correlation-request-id": "db54868c-3ed6-4300-89ed-7457c1ecddcf", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131140Z:304bfb52-9f4f-409f-969d-331d0cdef36c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174604Z:db54868c-3ed6-4300-89ed-7457c1ecddcf" }, "ResponseBody": null }, @@ -2405,20 +2726,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:11:50 GMT", + "Date": "Tue, 25 Oct 2022 17:46:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66fdc4d5-89b8-4310-9ae9-7c5ec03e09a5", + "x-ms-correlation-request-id": "fdc7093a-ecc5-45cc-ad2d-49478b94949d", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131150Z:66fdc4d5-89b8-4310-9ae9-7c5ec03e09a5" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174614Z:fdc7093a-ecc5-45cc-ad2d-49478b94949d" }, "ResponseBody": null }, @@ -2429,7 +2750,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2437,14 +2758,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:12:00 GMT", + "Date": "Tue, 25 Oct 2022 17:46:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f059883-a17f-40aa-aa6b-9a1b810c86fb", + "x-ms-correlation-request-id": "c8269ea9-a033-45e4-acba-bfd572990780", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131201Z:2f059883-a17f-40aa-aa6b-9a1b810c86fb" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174624Z:c8269ea9-a033-45e4-acba-bfd572990780" }, "ResponseBody": { "error": { @@ -2461,36 +2782,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1512e16f-e198-4724-8c33-7b855a76a05c?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b480e7d-568b-43eb-a119-84a431b5745e?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:12:02 GMT", + "Date": "Tue, 25 Oct 2022 17:46:26 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1512e16f-e198-4724-8c33-7b855a76a05c?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b480e7d-568b-43eb-a119-84a431b5745e?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c7aefda-c80e-4931-b78c-dc1897734385", + "x-ms-correlation-request-id": "e8309fbf-6adf-4b19-8b0e-99449148b2fd", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131202Z:8c7aefda-c80e-4931-b78c-dc1897734385", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174626Z:e8309fbf-6adf-4b19-8b0e-99449148b2fd", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1512e16f-e198-4724-8c33-7b855a76a05c?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b480e7d-568b-43eb-a119-84a431b5745e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2498,7 +2819,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:12:31 GMT", + "Date": "Tue, 25 Oct 2022 17:46:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2506,17 +2827,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "883a85cb-0bb2-4cd4-9f5d-d578e2ed8a74", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131232Z:883a85cb-0bb2-4cd4-9f5d-d578e2ed8a74", + "x-ms-correlation-request-id": "5116481e-7817-494f-b9bc-1b4b789afbb4", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174626Z:5116481e-7817-494f-b9bc-1b4b789afbb4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1512e16f-e198-4724-8c33-7b855a76a05c", - "name": "1512e16f-e198-4724-8c33-7b855a76a05c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b480e7d-568b-43eb-a119-84a431b5745e", + "name": "4b480e7d-568b-43eb-a119-84a431b5745e", "status": "Succeeded", - "startTime": "2022-09-19T13:12:02.2761358Z", - "endTime": "2022-09-19T13:12:02.3230117Z", + "startTime": "2022-10-25T17:46:26.0720008Z", + "endTime": "2022-10-25T17:46:26.1344099Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1" @@ -2524,13 +2845,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1512e16f-e198-4724-8c33-7b855a76a05c?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b480e7d-568b-43eb-a119-84a431b5745e?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2538,7 +2859,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:12:32 GMT", + "Date": "Tue, 25 Oct 2022 17:46:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2546,19 +2867,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9da9d5f0-1713-40ff-97d1-dd9ae8fa5fa7", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131232Z:9da9d5f0-1713-40ff-97d1-dd9ae8fa5fa7", + "x-ms-correlation-request-id": "68368606-4772-4537-ba9c-2b7c42aca727", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174627Z:68368606-4772-4537-ba9c-2b7c42aca727", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1", "name": "sdk-py-tests-acc-1-a12623c1", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A12%3A02.2757864Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A46%3A26.0640784Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:59:34.0672533Z" + "CreatedOnDate": "2022-10-25T17:32:51.5090173Z" }, "properties": { "encryption": { @@ -2569,10 +2890,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:59:34.848234Z", + "createdAt": "2022-10-25T17:32:52.3395874Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:59:34.848234Z" + "lastModifiedAt": "2022-10-25T17:32:52.3395874Z" } } }, @@ -2583,50 +2904,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:12:32 GMT", + "Date": "Tue, 25 Oct 2022 17:46:27 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f358302-cfd5-482b-91d6-3714033cea5e", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131233Z:4f358302-cfd5-482b-91d6-3714033cea5e" + "x-ms-correlation-request-id": "bc630427-d6ac-49a4-b868-73995462867c", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174627Z:bc630427-d6ac-49a4-b868-73995462867c", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-a12623c1\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-a12623c1?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a1a409cf-c759-4e0c-a73e-e939d324251d?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/af23d32a-552e-4032-a25e-58adc5b81971?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:12:33 GMT", + "Date": "Tue, 25 Oct 2022 17:46:28 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/a1a409cf-c759-4e0c-a73e-e939d324251d?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/af23d32a-552e-4032-a25e-58adc5b81971?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -2635,10 +2958,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0259b9a8-5832-4e38-aac0-0e889356c985", - "x-ms-correlation-request-id": "459dfd28-7c53-40ba-bc0f-b5cea678c42b", + "x-ms-arm-service-request-id": "c9931993-6677-4fd1-bead-e8d059d15dd4", + "x-ms-correlation-request-id": "cba1a581-979f-4acc-8f1d-a9249d297926", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131233Z:459dfd28-7c53-40ba-bc0f-b5cea678c42b" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T174628Z:cba1a581-979f-4acc-8f1d-a9249d297926" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_pool_change.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_pool_change.json index 0db8210cdbfc..4481e611be66 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_pool_change.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_pool_change.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:33 GMT", + "Date": "Tue, 25 Oct 2022 18:00:37 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:33 GMT", + "Date": "Tue, 25 Oct 2022 18:00:37 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "82478499-4127-45e1-ac4d-958c81cfd77a", + "client-request-id": "58cdd0ff-7e08-422b-af8b-4ca3b5cacee4", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "82478499-4127-45e1-ac4d-958c81cfd77a", + "client-request-id": "58cdd0ff-7e08-422b-af8b-4ca3b5cacee4", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:34 GMT", + "Date": "Tue, 25 Oct 2022 18:00:37 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/98546996-1d67-4d13-b36b-39b3933e5a6a?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9db9b458-d0ac-4fcf-8f3f-cbc8399b6901?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:39 GMT", + "Date": "Tue, 25 Oct 2022 18:00:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "07127998-1d3e-4964-b80c-60820cfd0fe6", - "x-ms-correlation-request-id": "59503db4-b764-40b2-b012-dc8bdf29f678", + "x-ms-arm-service-request-id": "951ac9a2-5732-4c58-a3b6-3d88da642ede", + "x-ms-correlation-request-id": "03b3f054-66d3-4def-a86e-1944b814f676", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131740Z:59503db4-b764-40b2-b012-dc8bdf29f678" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180047Z:03b3f054-66d3-4def-a86e-1944b814f676" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-7b9e2339", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339", - "etag": "W/\u002276bbe1dd-a77d-4348-b46c-875ae6eff6f4\u0022", + "etag": "W/\u0022a9e4556e-df0b-4069-82bc-d25fe27de04c\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:17:36.0864667Z" + "CreatedOnDate": "2022-10-25T18:00:40.3200478Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "b0c6e135-2181-46cd-8d1c-6bd2cd5d2657", + "resourceGuid": "f4b29399-e6b6-4875-945a-85a6e10d8724", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/98546996-1d67-4d13-b36b-39b3933e5a6a?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9db9b458-d0ac-4fcf-8f3f-cbc8399b6901?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:43 GMT", + "Date": "Tue, 25 Oct 2022 18:00:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b0164058-1a4b-40d1-8b22-63e1573e6338", - "x-ms-correlation-request-id": "87f4f9ba-04ff-4bc0-b40f-242c6d9c3aad", + "x-ms-arm-service-request-id": "f287209f-5e52-4d55-ae25-3ca30d9bdcaa", + "x-ms-correlation-request-id": "14fea882-705c-40c3-a7d7-06ba9d7d63a0", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131743Z:87f4f9ba-04ff-4bc0-b40f-242c6d9c3aad" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180047Z:14fea882-705c-40c3-a7d7-06ba9d7d63a0" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:43 GMT", - "ETag": "W/\u0022b24254cd-8f12-4d00-abc6-59650889512d\u0022", + "Date": "Tue, 25 Oct 2022 18:00:47 GMT", + "ETag": "W/\u00226fc3d5ac-4585-4562-a8bf-0e9f3fb89cff\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "09102cfa-3e68-49c4-9f77-8cd13a737ac8", - "x-ms-correlation-request-id": "8bcf3ec3-48c5-41cd-965b-9b5913ad66be", + "x-ms-arm-service-request-id": "4ace56c9-ea8d-47e9-b985-8f0c2f3b67b1", + "x-ms-correlation-request-id": "02090319-8e04-44fa-8e01-3e7776ad55f5", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131743Z:8bcf3ec3-48c5-41cd-965b-9b5913ad66be" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180048Z:02090319-8e04-44fa-8e01-3e7776ad55f5" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-7b9e2339", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339", - "etag": "W/\u0022b24254cd-8f12-4d00-abc6-59650889512d\u0022", + "etag": "W/\u00226fc3d5ac-4585-4562-a8bf-0e9f3fb89cff\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:17:36.0864667Z" + "CreatedOnDate": "2022-10-25T18:00:40.3200478Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "b0c6e135-2181-46cd-8d1c-6bd2cd5d2657", + "resourceGuid": "f4b29399-e6b6-4875-945a-85a6e10d8724", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2d048235-7bb9-48f5-b2a3-4bd0d60be104?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f8d0dc53-9c6a-49eb-abce-8dc9a89224b9?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:44 GMT", + "Date": "Tue, 25 Oct 2022 18:00:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "528d5e19-097a-4ad5-8bdf-f7ad7127f8fe", - "x-ms-correlation-request-id": "45b29bdf-8ead-4297-ba29-ac6589fa36c5", + "x-ms-arm-service-request-id": "a082801e-f55c-4d21-84a1-267ae33a7d90", + "x-ms-correlation-request-id": "a1b93c8c-d01a-48c6-8866-fe8d2f95109f", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131744Z:45b29bdf-8ead-4297-ba29-ac6589fa36c5" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180048Z:a1b93c8c-d01a-48c6-8866-fe8d2f95109f" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default", - "etag": "W/\u00224c9f9520-890a-45d3-af23-1fed01a46cac\u0022", + "etag": "W/\u0022a2aca3f9-1143-4a26-a77b-320564f9129f\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00224c9f9520-890a-45d3-af23-1fed01a46cac\u0022", + "etag": "W/\u0022a2aca3f9-1143-4a26-a77b-320564f9129f\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2d048235-7bb9-48f5-b2a3-4bd0d60be104?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f8d0dc53-9c6a-49eb-abce-8dc9a89224b9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:47 GMT", + "Date": "Tue, 25 Oct 2022 18:00:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b4ec4f74-ed89-4d36-9c00-62e7079167be", - "x-ms-correlation-request-id": "f2fd8d1d-5f9a-4c04-a447-c3171711839b", + "x-ms-arm-service-request-id": "c37eb959-5a24-4f6f-ac72-4e382f3c4271", + "x-ms-correlation-request-id": "b233d6d6-708d-49a9-9213-9210e027b760", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131747Z:f2fd8d1d-5f9a-4c04-a447-c3171711839b" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180049Z:b233d6d6-708d-49a9-9213-9210e027b760" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:47 GMT", - "ETag": "W/\u0022e28f5322-23b3-4aa6-af16-7fb26f8521ad\u0022", + "Date": "Tue, 25 Oct 2022 18:00:49 GMT", + "ETag": "W/\u00222d31d482-36eb-4e00-a6ca-ef492695fff6\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "0cfe5037-ce41-4ee4-9ed8-75a2f9caebc3", - "x-ms-correlation-request-id": "5f3e258d-0b67-4b5a-802b-29033e1317a1", + "x-ms-arm-service-request-id": "cf93509c-5442-4073-bef2-9f7304363978", + "x-ms-correlation-request-id": "77f01626-de74-4fe3-b366-564c8bf3a3ac", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131748Z:5f3e258d-0b67-4b5a-802b-29033e1317a1" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180049Z:77f01626-de74-4fe3-b366-564c8bf3a3ac" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default", - "etag": "W/\u0022e28f5322-23b3-4aa6-af16-7fb26f8521ad\u0022", + "etag": "W/\u00222d31d482-36eb-4e00-a6ca-ef492695fff6\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022e28f5322-23b3-4aa6-af16-7fb26f8521ad\u0022", + "etag": "W/\u00222d31d482-36eb-4e00-a6ca-ef492695fff6\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:47 GMT", + "Date": "Tue, 25 Oct 2022 18:00:49 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:47 GMT", + "Date": "Tue, 25 Oct 2022 18:00:49 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "43675e28-feed-48f4-b873-86033b7414ee", + "client-request-id": "a76bf659-c4c1-4445-958e-a4c022809908", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "43675e28-feed-48f4-b873-86033b7414ee", + "client-request-id": "a76bf659-c4c1-4445-958e-a4c022809908", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:47 GMT", + "Date": "Tue, 25 Oct 2022 18:00:49 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,37 +762,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dcfba47d-2beb-443e-a001-429907b902e3?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b43fb5a-17fc-4e78-9969-ebe16774483a?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "704", + "Content-Length": "706", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:17:52 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A17%3A51.2034743Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 18:00:53 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T18%3A00%3A52.8262269Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9dffb3ad-5dd0-4283-b2d1-323dec726bdf", + "x-ms-correlation-request-id": "4a545537-569a-430f-873d-339bb1cdaac5", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131752Z:9dffb3ad-5dd0-4283-b2d1-323dec726bdf", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180054Z:4a545537-569a-430f-873d-339bb1cdaac5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339", "name": "sdk-py-tests-acc-1-7b9e2339", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A17%3A51.2034743Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A00%3A52.8262269Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:17:49.1560060Z" + "CreatedOnDate": "2022-10-25T18:00:50.8293074Z" }, "properties": { "provisioningState": "Creating" @@ -799,21 +800,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:17:50.282444Z", + "createdAt": "2022-10-25T18:00:51.8276074Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:17:50.282444Z" + "lastModifiedAt": "2022-10-25T18:00:51.8276074Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dcfba47d-2beb-443e-a001-429907b902e3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b43fb5a-17fc-4e78-9969-ebe16774483a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:18:22 GMT", + "Date": "Tue, 25 Oct 2022 18:00:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +830,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bffcc3d-3e92-46da-b089-53b2ed59ad53", + "x-ms-correlation-request-id": "925aa95b-b31c-47de-8d0e-73f457be3f98", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131823Z:0bffcc3d-3e92-46da-b089-53b2ed59ad53", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180054Z:925aa95b-b31c-47de-8d0e-73f457be3f98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dcfba47d-2beb-443e-a001-429907b902e3", - "name": "dcfba47d-2beb-443e-a001-429907b902e3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b43fb5a-17fc-4e78-9969-ebe16774483a", + "name": "4b43fb5a-17fc-4e78-9969-ebe16774483a", "status": "Succeeded", - "startTime": "2022-09-19T13:17:51.1949329Z", - "endTime": "2022-09-19T13:17:51.242002Z", + "startTime": "2022-10-25T18:00:52.8206734Z", + "endTime": "2022-10-25T18:00:52.850568Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339" @@ -853,7 +854,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +862,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:18:23 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A17%3A51.2481174Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 18:00:54 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T18%3A00%3A52.8545397Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,19 +871,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5fcf09b0-1984-4182-81a9-28f783299994", + "x-ms-correlation-request-id": "23247bf9-8aaa-4765-a155-baf0c1e28d6e", "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131823Z:5fcf09b0-1984-4182-81a9-28f783299994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180054Z:23247bf9-8aaa-4765-a155-baf0c1e28d6e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339", "name": "sdk-py-tests-acc-1-7b9e2339", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A17%3A51.2481174Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A00%3A52.8545397Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:17:49.1560060Z" + "CreatedOnDate": "2022-10-25T18:00:50.8293074Z" }, "properties": { "activeDirectories": [ @@ -911,10 +912,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:17:50.282444Z", + "createdAt": "2022-10-25T18:00:51.8276074Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:17:50.282444Z" + "lastModifiedAt": "2022-10-25T18:00:51.8276074Z" } } }, @@ -927,7 +928,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -940,30 +941,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34c0a8bf-2674-490b-b5d1-2a97019b1e02?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55ffbd1-d63c-4b29-bf8a-57bb78ae60fb?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:18:25 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A18%3A25.1428039Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 18:00:56 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T18%3A00%3A56.4301439Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0eadacee-1ff9-4072-8c84-67fa5050904d", + "x-ms-correlation-request-id": "57d406b7-01c5-41aa-8707-278586dc5132", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131826Z:0eadacee-1ff9-4072-8c84-67fa5050904d", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180057Z:57d406b7-01c5-41aa-8707-278586dc5132", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A18%3A25.1428039Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A00%3A56.4301439Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:18:23.7306694Z" + "CreatedOnDate": "2022-10-25T18:00:55.1503343Z" }, "properties": { "serviceLevel": "Premium", @@ -977,21 +978,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:18:24.8958727Z", + "createdAt": "2022-10-25T18:00:56.1286622Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:18:24.8958727Z" + "lastModifiedAt": "2022-10-25T18:00:56.1286622Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34c0a8bf-2674-490b-b5d1-2a97019b1e02?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55ffbd1-d63c-4b29-bf8a-57bb78ae60fb?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1000,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:18:55 GMT", + "Date": "Tue, 25 Oct 2022 18:00:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1008,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6853ea2-b378-4c3a-8984-d7d6c237b095", + "x-ms-correlation-request-id": "b2a4caa9-cc6b-47ef-af73-7a962dcc8898", "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131856Z:e6853ea2-b378-4c3a-8984-d7d6c237b095", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180057Z:b2a4caa9-cc6b-47ef-af73-7a962dcc8898", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/34c0a8bf-2674-490b-b5d1-2a97019b1e02", - "name": "34c0a8bf-2674-490b-b5d1-2a97019b1e02", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b55ffbd1-d63c-4b29-bf8a-57bb78ae60fb", + "name": "b55ffbd1-d63c-4b29-bf8a-57bb78ae60fb", "status": "Succeeded", - "startTime": "2022-09-19T13:18:25.1481383Z", - "endTime": "2022-09-19T13:18:25.9607Z", + "startTime": "2022-10-25T18:00:56.4322075Z", + "endTime": "2022-10-25T18:00:57.4791604Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1032,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1040,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:18:56 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A18%3A25.9554199Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 18:00:57 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T18%3A00%3A57.4779025Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1049,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c562b05d-8918-492e-926e-c8dc208d8a91", + "x-ms-correlation-request-id": "d7d97e91-2200-4c54-a0e0-4d6ac6bae39e", "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131856Z:c562b05d-8918-492e-926e-c8dc208d8a91", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180058Z:d7d97e91-2200-4c54-a0e0-4d6ac6bae39e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A18%3A25.9554199Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A00%3A57.4779025Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:18:23.7306694Z" + "CreatedOnDate": "2022-10-25T18:00:55.1503343Z" }, "properties": { - "poolId": "93cd9e60-d077-0f22-9213-c591a1a5e0c8", + "poolId": "b5500261-5d71-f8a0-939e-f9e12c42ca5b", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1077,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:18:24.8958727Z", + "createdAt": "2022-10-25T18:00:56.1286622Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:18:24.8958727Z" + "lastModifiedAt": "2022-10-25T18:00:56.1286622Z" } } }, @@ -1092,7 +1093,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1123,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:19:12 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A19%3A10.8693118Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 18:01:10 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T18%3A01%3A10.5719471Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "108b5dae-d05e-4ff4-b54d-9fbbef06e382", + "x-ms-correlation-request-id": "7c78fc21-2470-4f7a-8f5a-9d258bc9d93e", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131912Z:108b5dae-d05e-4ff4-b54d-9fbbef06e382", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180111Z:7c78fc21-2470-4f7a-8f5a-9d258bc9d93e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9e2339", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-1/sdk-py-tests-vol-3-7b9e2339", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A19%3A10.8693118Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A01%3A10.5719471Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:19:07.2017159Z" + "CreatedOnDate": "2022-10-25T18:01:08.3097832Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1176,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:19:08.3093886Z", + "createdAt": "2022-10-25T18:01:09.4350418Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:19:08.3093886Z" + "lastModifiedAt": "2022-10-25T18:01:09.4350418Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:19:42 GMT", + "Date": "Tue, 25 Oct 2022 18:01:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1c606ab-ce75-4b8a-9297-114104aa1129", + "x-ms-correlation-request-id": "6547df86-3251-49b6-9b15-8bff4bfe8cdb", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T131942Z:f1c606ab-ce75-4b8a-9297-114104aa1129", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180111Z:6547df86-3251-49b6-9b15-8bff4bfe8cdb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7", - "name": "87f94b7f-258f-4b92-b9c6-9468f7b086d7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", "status": "Creating", - "startTime": "2022-09-19T13:19:10.8604704Z", + "startTime": "2022-10-25T18:01:10.575239Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1224,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:20:12 GMT", + "Date": "Tue, 25 Oct 2022 18:01:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1246,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e78f6e58-fd49-4aed-af95-649d0ca27cc6", + "x-ms-correlation-request-id": "b093ac84-24e5-4cd1-98fd-79d4a4a1c9f8", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132012Z:e78f6e58-fd49-4aed-af95-649d0ca27cc6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180142Z:b093ac84-24e5-4cd1-98fd-79d4a4a1c9f8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7", - "name": "87f94b7f-258f-4b92-b9c6-9468f7b086d7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", "status": "Creating", - "startTime": "2022-09-19T13:19:10.8604704Z", + "startTime": "2022-10-25T18:01:10.575239Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1264,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1278,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:20:42 GMT", + "Date": "Tue, 25 Oct 2022 18:02:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1286,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eec19f40-f574-4bad-a591-f4d32c463cd4", + "x-ms-correlation-request-id": "1e4f2eda-4771-48df-8d67-7dad9eabd06f", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132043Z:eec19f40-f574-4bad-a591-f4d32c463cd4", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180212Z:1e4f2eda-4771-48df-8d67-7dad9eabd06f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7", - "name": "87f94b7f-258f-4b92-b9c6-9468f7b086d7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", "status": "Creating", - "startTime": "2022-09-19T13:19:10.8604704Z", + "startTime": "2022-10-25T18:01:10.575239Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1304,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:21:12 GMT", + "Date": "Tue, 25 Oct 2022 18:02:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1326,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "baf94ba8-3f11-4e13-9524-77e3e3887cc6", + "x-ms-correlation-request-id": "f5f29032-b423-4a35-b654-6502a9295ac8", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132113Z:baf94ba8-3f11-4e13-9524-77e3e3887cc6", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180242Z:f5f29032-b423-4a35-b654-6502a9295ac8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7", - "name": "87f94b7f-258f-4b92-b9c6-9468f7b086d7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", "status": "Creating", - "startTime": "2022-09-19T13:19:10.8604704Z", + "startTime": "2022-10-25T18:01:10.575239Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1344,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1358,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:21:43 GMT", + "Date": "Tue, 25 Oct 2022 18:03:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1366,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a44f647-0573-4134-a452-9cdfa9a5387f", + "x-ms-correlation-request-id": "6233fa92-e7c0-47b7-95e5-84b3d222c1e7", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132143Z:8a44f647-0573-4134-a452-9cdfa9a5387f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180313Z:6233fa92-e7c0-47b7-95e5-84b3d222c1e7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7", - "name": "87f94b7f-258f-4b92-b9c6-9468f7b086d7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", "status": "Creating", - "startTime": "2022-09-19T13:19:10.8604704Z", + "startTime": "2022-10-25T18:01:10.575239Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1384,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:22:13 GMT", + "Date": "Tue, 25 Oct 2022 18:03:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1406,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e94e5ab-9e5b-4867-9af2-5908e09c5586", + "x-ms-correlation-request-id": "648c5943-2f9a-41e8-b952-0e67dc10af6e", "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132214Z:9e94e5ab-9e5b-4867-9af2-5908e09c5586", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180343Z:648c5943-2f9a-41e8-b952-0e67dc10af6e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7", - "name": "87f94b7f-258f-4b92-b9c6-9468f7b086d7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", "status": "Creating", - "startTime": "2022-09-19T13:19:10.8604704Z", + "startTime": "2022-10-25T18:01:10.575239Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1424,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:22:43 GMT", + "Date": "Tue, 25 Oct 2022 18:04:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1446,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3fb779da-776d-4e99-9f4e-3f9abe13b4f0", + "x-ms-correlation-request-id": "13e6de9b-3e3c-4edb-a461-5a3c92127c6f", "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132244Z:3fb779da-776d-4e99-9f4e-3f9abe13b4f0", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180413Z:13e6de9b-3e3c-4edb-a461-5a3c92127c6f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7", - "name": "87f94b7f-258f-4b92-b9c6-9468f7b086d7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", "status": "Creating", - "startTime": "2022-09-19T13:19:10.8604704Z", + "startTime": "2022-10-25T18:01:10.575239Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1464,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:23:14 GMT", + "Date": "Tue, 25 Oct 2022 18:04:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,16 +1486,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "322784d0-1c97-46b1-8931-e6de685f4706", + "x-ms-correlation-request-id": "618280bc-fbab-4c80-a232-0ac3cfea085b", "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132314Z:322784d0-1c97-46b1-8931-e6de685f4706", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180443Z:618280bc-fbab-4c80-a232-0ac3cfea085b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7", - "name": "87f94b7f-258f-4b92-b9c6-9468f7b086d7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", "status": "Creating", - "startTime": "2022-09-19T13:19:10.8604704Z", + "startTime": "2022-10-25T18:01:10.575239Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1503,13 +1504,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,7 +1518,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:23:44 GMT", + "Date": "Tue, 25 Oct 2022 18:05:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1525,17 +1526,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa905985-ce4b-43ba-b1e3-5991fa25a614", + "x-ms-correlation-request-id": "f9b1eb59-fc47-4f2a-a117-1209872d5d0d", "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132344Z:aa905985-ce4b-43ba-b1e3-5991fa25a614", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180514Z:f9b1eb59-fc47-4f2a-a117-1209872d5d0d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "status": "Creating", + "startTime": "2022-10-25T18:01:10.575239Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9e2339" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 18:05:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e8762bc9-2436-41e5-b14c-c6a5ecc940c4", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180544Z:e8762bc9-2436-41e5-b14c-c6a5ecc940c4", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "status": "Creating", + "startTime": "2022-10-25T18:01:10.575239Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9e2339" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 18:06:13 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bf2357ff-6690-4286-9a5a-edf8e0a59282", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180614Z:bf2357ff-6690-4286-9a5a-edf8e0a59282", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87f94b7f-258f-4b92-b9c6-9468f7b086d7", - "name": "87f94b7f-258f-4b92-b9c6-9468f7b086d7", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", + "name": "d8ecac85-6bb0-4d8c-a3af-8f7eef5877b5", "status": "Succeeded", - "startTime": "2022-09-19T13:19:10.8604704Z", - "endTime": "2022-09-19T13:23:16.59385Z", + "startTime": "2022-10-25T18:01:10.575239Z", + "endTime": "2022-10-25T18:05:58.7678419Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9e2339" @@ -1549,7 +1630,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1557,8 +1638,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:23:45 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A23%3A16.591231Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 18:06:15 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T18%3A05%3A58.7629815Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1566,22 +1647,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c006d4fe-6b54-42e2-ace2-fa25d6f9f30a", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132345Z:c006d4fe-6b54-42e2-ace2-fa25d6f9f30a", + "x-ms-correlation-request-id": "04ce6d78-b840-4ce5-85cb-8e37cc62d836", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180615Z:04ce6d78-b840-4ce5-85cb-8e37cc62d836", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9e2339", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-1/sdk-py-tests-vol-3-7b9e2339", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A23%3A16.591231Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A05%3A58.7629815Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:19:07.2017159Z" + "CreatedOnDate": "2022-10-25T18:01:08.3097832Z" }, "properties": { - "fileSystemId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", + "fileSystemId": "ca763a24-cce5-0a53-243a-c8ef65214145", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-7b9e2339", "usageThreshold": 107374182400, @@ -1609,7 +1690,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_56969651", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ef393e26", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1624,8 +1705,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", - "fileSystemId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", + "mountTargetId": "ca763a24-cce5-0a53-243a-c8ef65214145", + "fileSystemId": "ca763a24-cce5-0a53-243a-c8ef65214145", "ipAddress": "10.0.0.4" } ], @@ -1645,10 +1726,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:19:08.3093886Z", + "createdAt": "2022-10-25T18:01:09.4350418Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:19:08.3093886Z" + "lastModifiedAt": "2022-10-25T18:01:09.4350418Z" } } }, @@ -1661,7 +1742,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1674,30 +1755,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ca1294da-308b-410b-871f-25687075a6e0?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1044969a-3828-4369-87e2-3ba6fa92d904?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "922", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:23:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A23%3A48.5915549Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 18:06:19 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T18%3A06%3A18.5713984Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "402d441a-a911-488f-add4-6264d9cab4e1", + "x-ms-correlation-request-id": "c25e8660-027e-4537-a630-860200f7b541", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132349Z:402d441a-a911-488f-add4-6264d9cab4e1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180620Z:c25e8660-027e-4537-a630-860200f7b541", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A23%3A48.5915549Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A06%3A18.5713984Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:23:46.1615040Z" + "CreatedOnDate": "2022-10-25T18:06:16.1773445Z" }, "properties": { "serviceLevel": "Premium", @@ -1711,21 +1792,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:23:48.3999957Z", + "createdAt": "2022-10-25T18:06:18.2982207Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:23:48.3999957Z" + "lastModifiedAt": "2022-10-25T18:06:18.2982207Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ca1294da-308b-410b-871f-25687075a6e0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1044969a-3828-4369-87e2-3ba6fa92d904?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1733,7 +1814,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:24:19 GMT", + "Date": "Tue, 25 Oct 2022 18:06:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1741,17 +1822,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30b74b41-eef5-4af9-9764-afd0e73031d2", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132420Z:30b74b41-eef5-4af9-9764-afd0e73031d2", + "x-ms-correlation-request-id": "cf7455c2-d390-4a31-9a0d-c8f54edffbe8", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180620Z:cf7455c2-d390-4a31-9a0d-c8f54edffbe8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ca1294da-308b-410b-871f-25687075a6e0", - "name": "ca1294da-308b-410b-871f-25687075a6e0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1044969a-3828-4369-87e2-3ba6fa92d904", + "name": "1044969a-3828-4369-87e2-3ba6fa92d904", "status": "Succeeded", - "startTime": "2022-09-19T13:23:48.590155Z", - "endTime": "2022-09-19T13:23:49.6403341Z", + "startTime": "2022-10-25T18:06:18.5761594Z", + "endTime": "2022-10-25T18:06:19.5136428Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2" @@ -1765,7 +1846,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1773,8 +1854,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:24:19 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A23%3A49.6444362Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 18:06:20 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T18%3A06%3A19.50514Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1782,22 +1863,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43a941b7-e294-49a6-88b1-4af2814350e4", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132420Z:43a941b7-e294-49a6-88b1-4af2814350e4", + "x-ms-correlation-request-id": "f8bec59b-3fa4-4626-926a-137a88775d18", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180620Z:f8bec59b-3fa4-4626-926a-137a88775d18", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A23%3A49.6444362Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A06%3A19.50514Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:23:46.1615040Z" + "CreatedOnDate": "2022-10-25T18:06:16.1773445Z" }, "properties": { - "poolId": "a4ae45bc-1bda-0956-e7e1-55ebae2e50b0", + "poolId": "3eae6f25-bfb8-5d90-fd6d-babb9e5da758", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1810,10 +1891,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:23:48.3999957Z", + "createdAt": "2022-10-25T18:06:18.2982207Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:23:48.3999957Z" + "lastModifiedAt": "2022-10-25T18:06:18.2982207Z" } } }, @@ -1826,38 +1907,38 @@ "Connection": "keep-alive", "Content-Length": "219", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "newPoolResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/62c2e9db-1c25-4fc6-b540-96a33e7c03b6?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07a6d413-d32b-49c6-bf17-86ef1fcf3c2f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:24:31 GMT", + "Date": "Tue, 25 Oct 2022 18:06:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/62c2e9db-1c25-4fc6-b540-96a33e7c03b6?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07a6d413-d32b-49c6-bf17-86ef1fcf3c2f?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ac00561-745c-4881-a126-239ba3aaa436", + "x-ms-correlation-request-id": "0cad7b05-cac7-40df-a3f2-a071dc450051", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132431Z:7ac00561-745c-4881-a126-239ba3aaa436", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180631Z:0cad7b05-cac7-40df-a3f2-a071dc450051", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/62c2e9db-1c25-4fc6-b540-96a33e7c03b6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07a6d413-d32b-49c6-bf17-86ef1fcf3c2f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1865,7 +1946,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:25:01 GMT", + "Date": "Tue, 25 Oct 2022 18:06:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1873,17 +1954,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fdaf7566-bd56-4a31-9ff2-21afb83bf9a5", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132501Z:fdaf7566-bd56-4a31-9ff2-21afb83bf9a5", + "x-ms-correlation-request-id": "726976e3-a403-44d1-b992-ee605f9d30ed", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180631Z:726976e3-a403-44d1-b992-ee605f9d30ed", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/62c2e9db-1c25-4fc6-b540-96a33e7c03b6", - "name": "62c2e9db-1c25-4fc6-b540-96a33e7c03b6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07a6d413-d32b-49c6-bf17-86ef1fcf3c2f", + "name": "07a6d413-d32b-49c6-bf17-86ef1fcf3c2f", + "status": "ChangePool", + "startTime": "2022-10-25T18:06:31.1387002Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9e2339" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07a6d413-d32b-49c6-bf17-86ef1fcf3c2f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 18:07:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "381bfc0b-76ec-42e5-8f22-7125a95c8f16", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180701Z:381bfc0b-76ec-42e5-8f22-7125a95c8f16", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07a6d413-d32b-49c6-bf17-86ef1fcf3c2f", + "name": "07a6d413-d32b-49c6-bf17-86ef1fcf3c2f", "status": "Succeeded", - "startTime": "2022-09-19T13:24:30.9686136Z", - "endTime": "2022-09-19T13:24:39.8344018Z", + "startTime": "2022-10-25T18:06:31.1387002Z", + "endTime": "2022-10-25T18:06:36.5466487Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-7b9e2339" @@ -1891,13 +2012,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/62c2e9db-1c25-4fc6-b540-96a33e7c03b6?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07a6d413-d32b-49c6-bf17-86ef1fcf3c2f?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1905,7 +2026,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:25:01 GMT", + "Date": "Tue, 25 Oct 2022 18:07:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1913,22 +2034,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5669126d-2a59-412a-98d4-dbc0e81c2fab", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132501Z:5669126d-2a59-412a-98d4-dbc0e81c2fab", + "x-ms-correlation-request-id": "ec23ddaf-7b67-457e-9e09-1195c43e9fd5", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180702Z:ec23ddaf-7b67-457e-9e09-1195c43e9fd5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-2/sdk-py-tests-vol-3-7b9e2339", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A24%3A39.8404042Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A06%3A36.5384181Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:19:07.2017159Z" + "CreatedOnDate": "2022-10-25T18:01:08.3097832Z" }, "properties": { - "fileSystemId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", + "fileSystemId": "ca763a24-cce5-0a53-243a-c8ef65214145", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-7b9e2339", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -1959,19 +2080,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_56969651", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ef393e26", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339", - "poolId": "a4ae45bc-1bda-0956-e7e1-55ebae2e50b0", + "poolId": "3eae6f25-bfb8-5d90-fd6d-babb9e5da758", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", - "fileSystemId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", + "mountTargetId": "ca763a24-cce5-0a53-243a-c8ef65214145", + "fileSystemId": "ca763a24-cce5-0a53-243a-c8ef65214145", "startIp": "", "endIp": "", "gateway": "", @@ -2009,7 +2130,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2017,8 +2138,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:25:01 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T13%3A24%3A39.8404042Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 18:07:02 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T18%3A06%3A36.5384181Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2026,23 +2147,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a03e988a-fa50-4f74-b1c1-6959d5fa4194", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132501Z:a03e988a-fa50-4f74-b1c1-6959d5fa4194", + "x-ms-correlation-request-id": "11e9c7a9-44fd-48be-8c71-fa4bac508124", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180702Z:11e9c7a9-44fd-48be-8c71-fa4bac508124", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-2/sdk-py-tests-vol-3-7b9e2339", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A24%3A39.8404042Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A06%3A36.5384181Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:19:07.2017159Z" + "CreatedOnDate": "2022-10-25T18:01:08.3097832Z" }, "properties": { "provisioningState": "Succeeded", - "fileSystemId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", + "fileSystemId": "ca763a24-cce5-0a53-243a-c8ef65214145", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-7b9e2339", "usageThreshold": 107374182400, @@ -2070,7 +2191,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_56969651", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ef393e26", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -2085,8 +2206,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", - "fileSystemId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", + "mountTargetId": "ca763a24-cce5-0a53-243a-c8ef65214145", + "fileSystemId": "ca763a24-cce5-0a53-243a-c8ef65214145", "ipAddress": "10.0.0.4" } ], @@ -2111,7 +2232,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2119,7 +2240,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:25:02 GMT", + "Date": "Tue, 25 Oct 2022 18:07:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2127,9 +2248,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58c84c6d-5940-4722-ab9d-c43976afe904", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132502Z:58c84c6d-5940-4722-ab9d-c43976afe904", + "x-ms-correlation-request-id": "2daae83f-5304-467b-825e-1d1cf9869e81", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180702Z:2daae83f-5304-467b-825e-1d1cf9869e81", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -2144,36 +2265,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2aba6edc-c47a-414e-ab3d-75a0d865385a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:25:02 GMT", + "Date": "Tue, 25 Oct 2022 18:07:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2aba6edc-c47a-414e-ab3d-75a0d865385a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b00f5feb-8e48-41ae-88d2-9fcb9729d03f", + "x-ms-correlation-request-id": "6ef5ac06-a946-4c54-aec4-0ba328159efd", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132503Z:b00f5feb-8e48-41ae-88d2-9fcb9729d03f", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180703Z:6ef5ac06-a946-4c54-aec4-0ba328159efd", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2aba6edc-c47a-414e-ab3d-75a0d865385a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2181,7 +2302,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:25:33 GMT", + "Date": "Tue, 25 Oct 2022 18:07:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2189,16 +2310,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "735ce353-e2bd-4e73-ad2a-b8fa0eb93e40", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132533Z:735ce353-e2bd-4e73-ad2a-b8fa0eb93e40", + "x-ms-correlation-request-id": "3a33f55f-27a0-4a9c-8e12-c5018c82716d", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180704Z:3a33f55f-27a0-4a9c-8e12-c5018c82716d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2aba6edc-c47a-414e-ab3d-75a0d865385a", - "name": "2aba6edc-c47a-414e-ab3d-75a0d865385a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f", + "name": "365135f4-f96d-45cc-afde-ff6beb80254f", "status": "Deleting", - "startTime": "2022-09-19T13:25:03.1144649Z", + "startTime": "2022-10-25T18:07:03.7353293Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2207,13 +2328,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2aba6edc-c47a-414e-ab3d-75a0d865385a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2221,7 +2342,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:26:03 GMT", + "Date": "Tue, 25 Oct 2022 18:07:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2229,17 +2350,177 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b3bf106-7942-40b2-a730-bc06bfaaec2d", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132603Z:7b3bf106-7942-40b2-a730-bc06bfaaec2d", + "x-ms-correlation-request-id": "19ff8b62-9603-46a4-8404-dd3b438f6daa", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180734Z:19ff8b62-9603-46a4-8404-dd3b438f6daa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2aba6edc-c47a-414e-ab3d-75a0d865385a", - "name": "2aba6edc-c47a-414e-ab3d-75a0d865385a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f", + "name": "365135f4-f96d-45cc-afde-ff6beb80254f", + "status": "Deleting", + "startTime": "2022-10-25T18:07:03.7353293Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 18:08:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "81ec2f4b-8d2b-4bad-88bc-21e6e01fa662", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180804Z:81ec2f4b-8d2b-4bad-88bc-21e6e01fa662", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f", + "name": "365135f4-f96d-45cc-afde-ff6beb80254f", + "status": "Deleting", + "startTime": "2022-10-25T18:07:03.7353293Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 18:08:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0d2ee527-1fd8-47ea-a6d8-534546614ec6", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180834Z:0d2ee527-1fd8-47ea-a6d8-534546614ec6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f", + "name": "365135f4-f96d-45cc-afde-ff6beb80254f", + "status": "Deleting", + "startTime": "2022-10-25T18:07:03.7353293Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 18:09:04 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "710cdfba-92d8-4377-8368-deefb4a044e8", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180905Z:710cdfba-92d8-4377-8368-deefb4a044e8", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f", + "name": "365135f4-f96d-45cc-afde-ff6beb80254f", + "status": "Deleting", + "startTime": "2022-10-25T18:07:03.7353293Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 18:09:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e0063128-1fdd-494c-b3e4-b5290b716b4e", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180935Z:e0063128-1fdd-494c-b3e4-b5290b716b4e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f", + "name": "365135f4-f96d-45cc-afde-ff6beb80254f", "status": "Succeeded", - "startTime": "2022-09-19T13:25:03.1144649Z", - "endTime": "2022-09-19T13:25:37.446036Z", + "startTime": "2022-10-25T18:07:03.7353293Z", + "endTime": "2022-10-25T18:09:05.153748Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339" @@ -2247,13 +2528,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2aba6edc-c47a-414e-ab3d-75a0d865385a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/365135f4-f96d-45cc-afde-ff6beb80254f?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2261,7 +2542,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:26:03 GMT", + "Date": "Tue, 25 Oct 2022 18:09:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2269,22 +2550,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "338390a1-19c1-4bf4-9292-c06a19647d92", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132603Z:338390a1-19c1-4bf4-9292-c06a19647d92", + "x-ms-correlation-request-id": "010816ed-3095-40a1-83ad-a964f4239dbb", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T180935Z:010816ed-3095-40a1-83ad-a964f4239dbb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-2/sdk-py-tests-vol-3-7b9e2339", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A25%3A32.2041072Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A09%3A00.1955601Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:19:07.2017159Z" + "CreatedOnDate": "2022-10-25T18:01:08.3097832Z" }, "properties": { - "fileSystemId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", + "fileSystemId": "ca763a24-cce5-0a53-243a-c8ef65214145", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-7b9e2339", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2315,19 +2596,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_56969651", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ef393e26", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-3-7b9e2339", - "poolId": "a4ae45bc-1bda-0956-e7e1-55ebae2e50b0", + "poolId": "3eae6f25-bfb8-5d90-fd6d-babb9e5da758", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", - "fileSystemId": "f172dafd-5cd6-6013-8c07-a64c4992fd7d", + "mountTargetId": "ca763a24-cce5-0a53-243a-c8ef65214145", + "fileSystemId": "ca763a24-cce5-0a53-243a-c8ef65214145", "startIp": "", "endIp": "", "gateway": "", @@ -2365,7 +2646,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2373,14 +2654,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:29:25 GMT", + "Date": "Tue, 25 Oct 2022 18:12:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0cbb6f6a-8244-429e-a664-ccf46b38d4d6", + "x-ms-correlation-request-id": "c802105a-fa11-4d89-b8f0-65e47c7334fe", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132926Z:0cbb6f6a-8244-429e-a664-ccf46b38d4d6" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181257Z:c802105a-fa11-4d89-b8f0-65e47c7334fe" }, "ResponseBody": { "error": { @@ -2397,36 +2678,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a785948-46e8-4c3a-8637-9242d0cdf776?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1054999-5f91-4cb5-997e-5e87ee1d7a1f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:29:38 GMT", + "Date": "Tue, 25 Oct 2022 18:13:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a785948-46e8-4c3a-8637-9242d0cdf776?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1054999-5f91-4cb5-997e-5e87ee1d7a1f?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ef1a0f4-f26e-4c3a-a079-5fbd92606884", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T132939Z:7ef1a0f4-f26e-4c3a-a079-5fbd92606884", + "x-ms-correlation-request-id": "68e1506b-82b8-482c-8992-d3ee2786afc5", + "x-ms-ratelimit-remaining-subscription-deletes": "14998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181310Z:68e1506b-82b8-482c-8992-d3ee2786afc5", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a785948-46e8-4c3a-8637-9242d0cdf776?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1054999-5f91-4cb5-997e-5e87ee1d7a1f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2434,7 +2715,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:30:08 GMT", + "Date": "Tue, 25 Oct 2022 18:13:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2442,17 +2723,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2416a765-e936-4925-9895-8f1df034ce37", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133009Z:2416a765-e936-4925-9895-8f1df034ce37", + "x-ms-correlation-request-id": "ef4b7cbc-f0be-44d3-b749-2fb3c1190e4c", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181310Z:ef4b7cbc-f0be-44d3-b749-2fb3c1190e4c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1054999-5f91-4cb5-997e-5e87ee1d7a1f", + "name": "b1054999-5f91-4cb5-997e-5e87ee1d7a1f", + "status": "Deleting", + "startTime": "2022-10-25T18:13:10.5406813Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1054999-5f91-4cb5-997e-5e87ee1d7a1f?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 18:13:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "827badbb-c27e-4601-936f-2aa25c50a060", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181341Z:827badbb-c27e-4601-936f-2aa25c50a060", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a785948-46e8-4c3a-8637-9242d0cdf776", - "name": "3a785948-46e8-4c3a-8637-9242d0cdf776", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1054999-5f91-4cb5-997e-5e87ee1d7a1f", + "name": "b1054999-5f91-4cb5-997e-5e87ee1d7a1f", "status": "Succeeded", - "startTime": "2022-09-19T13:29:38.9991096Z", - "endTime": "2022-09-19T13:29:40.061642Z", + "startTime": "2022-10-25T18:13:10.5406813Z", + "endTime": "2022-10-25T18:13:11.556748Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1" @@ -2460,13 +2781,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3a785948-46e8-4c3a-8637-9242d0cdf776?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1054999-5f91-4cb5-997e-5e87ee1d7a1f?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2474,7 +2795,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:30:08 GMT", + "Date": "Tue, 25 Oct 2022 18:13:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2482,22 +2803,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d962bd68-b37d-4e2f-8748-fa0e1158b986", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133009Z:d962bd68-b37d-4e2f-8748-fa0e1158b986", + "x-ms-correlation-request-id": "bdec8763-7ee9-415e-8f25-9dc05a4b48b8", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181341Z:bdec8763-7ee9-415e-8f25-9dc05a4b48b8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A29%3A39.0026028Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A13%3A10.5445267Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:18:23.7306694Z" + "CreatedOnDate": "2022-10-25T18:00:55.1503343Z" }, "properties": { - "poolId": "93cd9e60-d077-0f22-9213-c591a1a5e0c8", + "poolId": "b5500261-5d71-f8a0-939e-f9e12c42ca5b", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-1", @@ -2511,10 +2832,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:18:24.8958727Z", + "createdAt": "2022-10-25T18:00:56.1286622Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:18:24.8958727Z" + "lastModifiedAt": "2022-10-25T18:00:56.1286622Z" } } }, @@ -2526,20 +2847,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:30:19 GMT", + "Date": "Tue, 25 Oct 2022 18:13:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "460a531c-c7b4-498b-a305-c40858143f16", - "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133019Z:460a531c-c7b4-498b-a305-c40858143f16" + "x-ms-correlation-request-id": "099ecef3-7a70-46b7-be41-1ffe4e589e26", + "x-ms-ratelimit-remaining-subscription-deletes": "14997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181351Z:099ecef3-7a70-46b7-be41-1ffe4e589e26" }, "ResponseBody": null }, @@ -2551,20 +2872,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:30:30 GMT", + "Date": "Tue, 25 Oct 2022 18:14:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6950c5fb-e5ce-4ba2-a77e-a938c09ddf7d", - "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133030Z:6950c5fb-e5ce-4ba2-a77e-a938c09ddf7d" + "x-ms-correlation-request-id": "d57b5763-943c-41ad-891d-9dd80eab58cc", + "x-ms-ratelimit-remaining-subscription-deletes": "14996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181402Z:d57b5763-943c-41ad-891d-9dd80eab58cc" }, "ResponseBody": null }, @@ -2576,20 +2897,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:30:40 GMT", + "Date": "Tue, 25 Oct 2022 18:14:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df6e6ab3-343d-4c30-aa77-9c6287e97509", - "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133040Z:df6e6ab3-343d-4c30-aa77-9c6287e97509" + "x-ms-correlation-request-id": "3f74e37f-c476-4676-be40-f78a2116a1c5", + "x-ms-ratelimit-remaining-subscription-deletes": "14995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181412Z:3f74e37f-c476-4676-be40-f78a2116a1c5" }, "ResponseBody": null }, @@ -2601,20 +2922,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:30:50 GMT", + "Date": "Tue, 25 Oct 2022 18:14:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99d171f1-19af-4bdd-aff4-49f73659b3fb", - "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133050Z:99d171f1-19af-4bdd-aff4-49f73659b3fb" + "x-ms-correlation-request-id": "c4116bd6-ce37-4edc-a488-abca234c5615", + "x-ms-ratelimit-remaining-subscription-deletes": "14994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181422Z:c4116bd6-ce37-4edc-a488-abca234c5615" }, "ResponseBody": null }, @@ -2625,7 +2946,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2633,14 +2954,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:31:00 GMT", + "Date": "Tue, 25 Oct 2022 18:14:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa9104a9-913c-478d-88ed-8a817df1da32", + "x-ms-correlation-request-id": "fe288e5d-1336-48fc-a8d9-5ea730fa52b7", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133101Z:fa9104a9-913c-478d-88ed-8a817df1da32" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181432Z:fe288e5d-1336-48fc-a8d9-5ea730fa52b7" }, "ResponseBody": { "error": { @@ -2657,36 +2978,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d18ebe1-2c95-4e2d-8877-f4da7b2172b9?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ede15ee6-d33e-4fa8-9de6-9c29b854f5c7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:31:12 GMT", + "Date": "Tue, 25 Oct 2022 18:14:43 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d18ebe1-2c95-4e2d-8877-f4da7b2172b9?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ede15ee6-d33e-4fa8-9de6-9c29b854f5c7?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e160ff7-89ca-4a83-9af0-5b02797fb8c4", - "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133112Z:5e160ff7-89ca-4a83-9af0-5b02797fb8c4", + "x-ms-correlation-request-id": "9522bb2c-5910-4683-a5bb-bcc3d92be40a", + "x-ms-ratelimit-remaining-subscription-deletes": "14993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181444Z:9522bb2c-5910-4683-a5bb-bcc3d92be40a", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d18ebe1-2c95-4e2d-8877-f4da7b2172b9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ede15ee6-d33e-4fa8-9de6-9c29b854f5c7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2694,7 +3015,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:31:42 GMT", + "Date": "Tue, 25 Oct 2022 18:14:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2702,17 +3023,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33d83091-f910-41bd-8692-15747b75837b", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133143Z:33d83091-f910-41bd-8692-15747b75837b", + "x-ms-correlation-request-id": "fec648c1-97d4-4a06-aede-119ab2a82af2", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181444Z:fec648c1-97d4-4a06-aede-119ab2a82af2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d18ebe1-2c95-4e2d-8877-f4da7b2172b9", - "name": "9d18ebe1-2c95-4e2d-8877-f4da7b2172b9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ede15ee6-d33e-4fa8-9de6-9c29b854f5c7", + "name": "ede15ee6-d33e-4fa8-9de6-9c29b854f5c7", + "status": "Deleting", + "startTime": "2022-10-25T18:14:44.2222553Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ede15ee6-d33e-4fa8-9de6-9c29b854f5c7?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 18:15:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4df866c7-c910-4b1f-885a-74e7fd7ad129", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181514Z:4df866c7-c910-4b1f-885a-74e7fd7ad129", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ede15ee6-d33e-4fa8-9de6-9c29b854f5c7", + "name": "ede15ee6-d33e-4fa8-9de6-9c29b854f5c7", "status": "Succeeded", - "startTime": "2022-09-19T13:31:12.7109349Z", - "endTime": "2022-09-19T13:31:13.5884852Z", + "startTime": "2022-10-25T18:14:44.2222553Z", + "endTime": "2022-10-25T18:14:45.4098538Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2" @@ -2720,13 +3081,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d18ebe1-2c95-4e2d-8877-f4da7b2172b9?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ede15ee6-d33e-4fa8-9de6-9c29b854f5c7?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2734,7 +3095,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:31:42 GMT", + "Date": "Tue, 25 Oct 2022 18:15:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2742,22 +3103,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2151a3b4-4022-4858-8eeb-49b6b2d49e49", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133143Z:2151a3b4-4022-4858-8eeb-49b6b2d49e49", + "x-ms-correlation-request-id": "d3597571-7922-40c4-900b-5a02bb08d39f", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181515Z:d3597571-7922-40c4-900b-5a02bb08d39f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2", "name": "sdk-py-tests-acc-1-7b9e2339/sdk-py-tests-pool-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A31%3A12.705528Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A14%3A44.224302Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:23:46.1615040Z" + "CreatedOnDate": "2022-10-25T18:06:16.1773445Z" }, "properties": { - "poolId": "a4ae45bc-1bda-0956-e7e1-55ebae2e50b0", + "poolId": "3eae6f25-bfb8-5d90-fd6d-babb9e5da758", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339/capacityPools/sdk-py-tests-pool-2", @@ -2771,10 +3132,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:23:48.3999957Z", + "createdAt": "2022-10-25T18:06:18.2982207Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:23:48.3999957Z" + "lastModifiedAt": "2022-10-25T18:06:18.2982207Z" } } }, @@ -2786,20 +3147,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:31:53 GMT", + "Date": "Tue, 25 Oct 2022 18:15:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3b9fee6-2e92-4241-a2cb-cbaee03506e3", - "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133153Z:f3b9fee6-2e92-4241-a2cb-cbaee03506e3" + "x-ms-correlation-request-id": "1234ebd4-07b4-4044-be6b-2e1d1fce8c22", + "x-ms-ratelimit-remaining-subscription-deletes": "14992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181525Z:1234ebd4-07b4-4044-be6b-2e1d1fce8c22" }, "ResponseBody": null }, @@ -2811,20 +3172,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:32:03 GMT", + "Date": "Tue, 25 Oct 2022 18:15:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f41dac2-f199-4396-b685-718ae558bc36", - "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133204Z:3f41dac2-f199-4396-b685-718ae558bc36" + "x-ms-correlation-request-id": "abc8d9bb-a419-4c88-a07f-3a2c8fd4d338", + "x-ms-ratelimit-remaining-subscription-deletes": "14991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181535Z:abc8d9bb-a419-4c88-a07f-3a2c8fd4d338" }, "ResponseBody": null }, @@ -2836,20 +3197,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:32:13 GMT", + "Date": "Tue, 25 Oct 2022 18:15:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce0c5d1e-2c24-4308-8673-ca9409cac7fc", - "x-ms-ratelimit-remaining-subscription-deletes": "14991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133214Z:ce0c5d1e-2c24-4308-8673-ca9409cac7fc" + "x-ms-correlation-request-id": "7a94ab05-c095-4c81-9cb6-2fc817caa64f", + "x-ms-ratelimit-remaining-subscription-deletes": "14990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181546Z:7a94ab05-c095-4c81-9cb6-2fc817caa64f" }, "ResponseBody": null }, @@ -2861,20 +3222,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 13:32:23 GMT", + "Date": "Tue, 25 Oct 2022 18:15:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b4c98c7-2589-45b3-b667-9528783bdf50", - "x-ms-ratelimit-remaining-subscription-deletes": "14990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133224Z:3b4c98c7-2589-45b3-b667-9528783bdf50" + "x-ms-correlation-request-id": "4e901ab3-d42f-410c-9717-ca17753dc3f4", + "x-ms-ratelimit-remaining-subscription-deletes": "14989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181556Z:4e901ab3-d42f-410c-9717-ca17753dc3f4" }, "ResponseBody": null }, @@ -2885,7 +3246,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2893,14 +3254,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:32:34 GMT", + "Date": "Tue, 25 Oct 2022 18:16:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3efcfd84-b38b-4e18-bdf7-c140f7ee19d3", + "x-ms-correlation-request-id": "58259d90-1b7f-4a44-9611-12c5dd8c5023", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133235Z:3efcfd84-b38b-4e18-bdf7-c140f7ee19d3" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181606Z:58259d90-1b7f-4a44-9611-12c5dd8c5023" }, "ResponseBody": { "error": { @@ -2917,36 +3278,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fb1605a-4227-45f5-8165-0ea25d27d39a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/985d2be7-a481-4628-94f7-0c380de76614?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:32:35 GMT", + "Date": "Tue, 25 Oct 2022 18:16:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fb1605a-4227-45f5-8165-0ea25d27d39a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/985d2be7-a481-4628-94f7-0c380de76614?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c6ae9d5-b1c8-4a39-8ab9-5aa0fd55323a", - "x-ms-ratelimit-remaining-subscription-deletes": "14989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133236Z:5c6ae9d5-b1c8-4a39-8ab9-5aa0fd55323a", + "x-ms-correlation-request-id": "6be83bba-c4a7-464f-9f84-822b7767b2d1", + "x-ms-ratelimit-remaining-subscription-deletes": "14988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181608Z:6be83bba-c4a7-464f-9f84-822b7767b2d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fb1605a-4227-45f5-8165-0ea25d27d39a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/985d2be7-a481-4628-94f7-0c380de76614?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2954,7 +3315,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:33:06 GMT", + "Date": "Tue, 25 Oct 2022 18:16:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2962,17 +3323,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b5f41da-ceb5-457d-a121-80b07ee200e2", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133306Z:3b5f41da-ceb5-457d-a121-80b07ee200e2", + "x-ms-correlation-request-id": "72df08dd-3aa9-46f1-b0f0-e3ca37777b1e", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181608Z:72df08dd-3aa9-46f1-b0f0-e3ca37777b1e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fb1605a-4227-45f5-8165-0ea25d27d39a", - "name": "4fb1605a-4227-45f5-8165-0ea25d27d39a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/985d2be7-a481-4628-94f7-0c380de76614", + "name": "985d2be7-a481-4628-94f7-0c380de76614", "status": "Succeeded", - "startTime": "2022-09-19T13:32:36.566092Z", - "endTime": "2022-09-19T13:32:36.6129552Z", + "startTime": "2022-10-25T18:16:08.2319637Z", + "endTime": "2022-10-25T18:16:08.2787756Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339" @@ -2980,13 +3341,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4fb1605a-4227-45f5-8165-0ea25d27d39a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/985d2be7-a481-4628-94f7-0c380de76614?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2994,7 +3355,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:33:07 GMT", + "Date": "Tue, 25 Oct 2022 18:16:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3002,19 +3363,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa9f538c-3cba-44b2-8bf4-83977e38a5a4", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133307Z:fa9f538c-3cba-44b2-8bf4-83977e38a5a4", + "x-ms-correlation-request-id": "b2f096e4-09a9-4b3b-b248-d5ddf4e5b4ab", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181608Z:b2f096e4-09a9-4b3b-b248-d5ddf4e5b4ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339", "name": "sdk-py-tests-acc-1-7b9e2339", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T13%3A32%3A36.5724257Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T18%3A16%3A08.1935321Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T13:17:49.1560060Z" + "CreatedOnDate": "2022-10-25T18:00:50.8293074Z" }, "properties": { "encryption": { @@ -3025,10 +3386,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T13:17:50.282444Z", + "createdAt": "2022-10-25T18:00:51.8276074Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T13:17:50.282444Z" + "lastModifiedAt": "2022-10-25T18:00:51.8276074Z" } } }, @@ -3039,50 +3400,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "254", + "Content-Length": "255", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 13:33:07 GMT", + "Date": "Tue, 25 Oct 2022 18:16:09 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6476761-ba72-404c-8190-ba7612477c1f", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133307Z:d6476761-ba72-404c-8190-ba7612477c1f" + "x-ms-correlation-request-id": "17a9fd21-3848-4879-8431-8894c12edbdc", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181609Z:17a9fd21-3848-4879-8431-8894c12edbdc", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-7b9e2339\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-7b9e2339?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5ac05c39-7056-4dd1-b4d9-7bde72322f6e?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/093eb802-8b70-4d05-9772-bb6e85d9fc9d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 13:33:08 GMT", + "Date": "Tue, 25 Oct 2022 18:16:10 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/5ac05c39-7056-4dd1-b4d9-7bde72322f6e?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/093eb802-8b70-4d05-9772-bb6e85d9fc9d?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -3091,10 +3454,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "6003bfdb-d18e-45b2-bf77-cd0e7254441a", - "x-ms-correlation-request-id": "eb0ffec3-835d-4a17-91fb-6fc6a24a7602", - "x-ms-ratelimit-remaining-subscription-deletes": "14988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T133308Z:eb0ffec3-835d-4a17-91fb-6fc6a24a7602" + "x-ms-arm-service-request-id": "95bc4b59-0bdb-4a4a-9831-c0ed7c30d017", + "x-ms-correlation-request-id": "f19d9cb9-65e5-47fb-b921-2f1708d9fa96", + "x-ms-ratelimit-remaining-subscription-deletes": "14987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T181610Z:f19d9cb9-65e5-47fb-b921-2f1708d9fa96" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_update_volume.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_update_volume.json index 76df1add13af..1905a9e4709a 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_update_volume.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_update_volume.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:03 GMT", + "Date": "Tue, 25 Oct 2022 17:18:06 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:03 GMT", + "Date": "Tue, 25 Oct 2022 17:18:06 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "d3b06750-73d2-46a0-bec9-dd46684988f2", + "client-request-id": "42084517-8bf7-432d-9203-3dd9b92411f0", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "d3b06750-73d2-46a0-bec9-dd46684988f2", + "client-request-id": "42084517-8bf7-432d-9203-3dd9b92411f0", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:06 GMT", + "Date": "Tue, 25 Oct 2022 17:18:06 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c9db3a53-3adc-4acc-ad19-3a01cb2d8ad9?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0bcc96e5-31d5-4171-ba20-219a4a17112d?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "750", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:13 GMT", + "Date": "Tue, 25 Oct 2022 17:18:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "13930084-1a5c-428f-b90c-e9d4de327c43", - "x-ms-correlation-request-id": "7b1197fb-0193-4e66-a62a-fb3828d2a40d", + "x-ms-arm-service-request-id": "92c107c1-3d6e-4163-8481-8b36d51a3cc6", + "x-ms-correlation-request-id": "aed6ba5a-5298-440b-83e8-25ed6ce0fd8c", "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123114Z:7b1197fb-0193-4e66-a62a-fb3828d2a40d" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171816Z:aed6ba5a-5298-440b-83e8-25ed6ce0fd8c" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-c6cd2434", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434", - "etag": "W/\u0022b5bef198-b3a5-4c19-87fb-f70fa1178223\u0022", + "etag": "W/\u002273054d2e-d5bf-4bea-baaf-0f71ac96b456\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:31:07.8269580Z" + "CreatedOnDate": "2022-10-25T17:18:09.8377613Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "eef8e155-5c8a-4540-84b4-44cffd0f88d6", + "resourceGuid": "b99d82cd-795d-4d35-8e99-56a1f9f632a2", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c9db3a53-3adc-4acc-ad19-3a01cb2d8ad9?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/0bcc96e5-31d5-4171-ba20-219a4a17112d?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,7 +293,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:16 GMT", + "Date": "Tue, 25 Oct 2022 17:18:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -304,23 +304,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "78d2d7d7-ee65-44dd-8cc2-2942fb2e629e", - "x-ms-correlation-request-id": "6e81fa74-cff1-4bd7-8f60-eb826e6906f9", + "x-ms-arm-service-request-id": "3b1fe6bd-e7ac-4f9f-8592-36689003c49a", + "x-ms-correlation-request-id": "1e59e05a-b3a2-449b-a7e7-27b5e321303d", "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123117Z:6e81fa74-cff1-4bd7-8f60-eb826e6906f9" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171816Z:1e59e05a-b3a2-449b-a7e7-27b5e321303d" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +328,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:16 GMT", - "ETag": "W/\u0022bf21c712-758c-405f-b96e-c1a898e8e075\u0022", + "Date": "Tue, 25 Oct 2022 17:18:16 GMT", + "ETag": "W/\u0022ef68f788-a068-4e16-9aa9-a5be8622cb01\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +340,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "4b91c2dd-c6ac-4489-8a7b-b17203ef5f06", - "x-ms-correlation-request-id": "c9ce0c66-95a0-4dc2-bbb1-d7cf64031ebf", + "x-ms-arm-service-request-id": "49a779bf-97e3-43b7-9b18-642418f6b805", + "x-ms-correlation-request-id": "20238955-c601-4b20-8639-63829883360f", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123117Z:c9ce0c66-95a0-4dc2-bbb1-d7cf64031ebf" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171816Z:20238955-c601-4b20-8639-63829883360f" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-c6cd2434", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434", - "etag": "W/\u0022bf21c712-758c-405f-b96e-c1a898e8e075\u0022", + "etag": "W/\u0022ef68f788-a068-4e16-9aa9-a5be8622cb01\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:31:07.8269580Z" + "CreatedOnDate": "2022-10-25T17:18:09.8377613Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "eef8e155-5c8a-4540-84b4-44cffd0f88d6", + "resourceGuid": "b99d82cd-795d-4d35-8e99-56a1f9f632a2", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +377,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +394,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/80b8c07c-284c-4cd9-8b89-bd61163ff8a7?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6a48cf82-9b25-43f3-b227-0a9cf0544cbc?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1326", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:17 GMT", + "Date": "Tue, 25 Oct 2022 17:18:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +409,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "11736a70-5928-4efa-9b4f-68653fe23e83", - "x-ms-correlation-request-id": "6a2b7c19-f83b-4f37-8e37-61c33a703887", + "x-ms-arm-service-request-id": "12b6057a-abbd-41fa-b7af-f8556dbbfc7d", + "x-ms-correlation-request-id": "18e5d634-796f-4f07-98e7-f22e3383fcf9", "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123118Z:6a2b7c19-f83b-4f37-8e37-61c33a703887" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171817Z:18e5d634-796f-4f07-98e7-f22e3383fcf9" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default", - "etag": "W/\u0022b9958866-e5e1-4dcb-95cb-5db3ba921c43\u0022", + "etag": "W/\u0022c61b4daf-64e1-4eed-82fb-08d608ffce6f\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +425,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022b9958866-e5e1-4dcb-95cb-5db3ba921c43\u0022", + "etag": "W/\u0022c61b4daf-64e1-4eed-82fb-08d608ffce6f\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/80b8c07c-284c-4cd9-8b89-bd61163ff8a7?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6a48cf82-9b25-43f3-b227-0a9cf0544cbc?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:20 GMT", + "Date": "Tue, 25 Oct 2022 17:18:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +470,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "fbcd41cd-ba54-4bff-b3d4-005104326cf1", - "x-ms-correlation-request-id": "c6232e55-9416-49be-a324-6ff69458467c", + "x-ms-arm-service-request-id": "0f33a5d3-37e5-4f66-a84c-fbec65fccf5c", + "x-ms-correlation-request-id": "1306afcd-4f0a-4f5b-9b99-2a3c8247ae6b", "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123121Z:c6232e55-9416-49be-a324-6ff69458467c" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171817Z:1306afcd-4f0a-4f5b-9b99-2a3c8247ae6b" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +494,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:21 GMT", - "ETag": "W/\u0022977f3478-e268-4a10-9026-42d9ee51c395\u0022", + "Date": "Tue, 25 Oct 2022 17:18:17 GMT", + "ETag": "W/\u0022734c1797-2e87-40ac-9ec0-8a387898c76a\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +506,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "767bd528-1f5c-40f4-878f-227cb7dd370d", - "x-ms-correlation-request-id": "bd0608fb-bccb-40c0-866e-ed947a1d547e", + "x-ms-arm-service-request-id": "8df753a4-016f-4e77-b85a-6cb6e80dd02c", + "x-ms-correlation-request-id": "5adb3f45-4baa-42fa-8c9d-d597b6deb059", "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123122Z:bd0608fb-bccb-40c0-866e-ed947a1d547e" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171818Z:5adb3f45-4baa-42fa-8c9d-d597b6deb059" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default", - "etag": "W/\u0022977f3478-e268-4a10-9026-42d9ee51c395\u0022", + "etag": "W/\u0022734c1797-2e87-40ac-9ec0-8a387898c76a\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +522,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022977f3478-e268-4a10-9026-42d9ee51c395\u0022", + "etag": "W/\u0022734c1797-2e87-40ac-9ec0-8a387898c76a\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -547,7 +548,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -557,12 +558,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:21 GMT", + "Date": "Tue, 25 Oct 2022 17:18:17 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -641,7 +642,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -651,12 +652,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:21 GMT", + "Date": "Tue, 25 Oct 2022 17:18:17 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR1 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -712,28 +713,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "49d8e66a-ad6a-4450-af8e-b81b5a260f52", + "client-request-id": "0f40b36a-614e-4700-94b2-804983150227", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "49d8e66a-ad6a-4450-af8e-b81b5a260f52", + "client-request-id": "0f40b36a-614e-4700-94b2-804983150227", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:22 GMT", + "Date": "Tue, 25 Oct 2022 17:18:17 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -741,7 +742,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -761,59 +762,79 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80102a00-5cf5-4d14-9933-79adeb98075f?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9293fad8-d292-4964-9cf2-e67e2264007a?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "706", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:26 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A31%3A25.5868257Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:18:21 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A18%3A20.7022687Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20b94f0e-f96a-4bc7-b206-978a9f591b23", + "x-ms-correlation-request-id": "c34ed492-9db6-4c06-8c8b-d0bace3a5083", "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123127Z:20b94f0e-f96a-4bc7-b206-978a9f591b23", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171821Z:c34ed492-9db6-4c06-8c8b-d0bace3a5083", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434", "name": "sdk-py-tests-acc-1-c6cd2434", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A31%3A25.5868257Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A18%3A20.7022687Z\u0027\u0022", "location": "westus2", - "tags": { - "CreatedOnDate": "2022-09-19T12:31:23.5794679Z" - }, "properties": { - "provisioningState": "Creating" + "provisioningState": "Updating", + "activeDirectories": [ + { + "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b", + "username": "sdkuser", + "password": "****************", + "domain": "sdkdomain", + "dns": "192.0.2.2", + "status": "Created", + "smbServerName": "SDKSMBSeNa", + "organizationalUnit": "CN=Computers", + "aesEncryption": false, + "ldapSigning": false, + "ldapOverTLS": false, + "allowLocalNfsUsersWithLdap": false, + "encryptDCConnections": false, + "ldapSearchScope": {} + } + ], + "encryption": { + "keySource": "Microsoft.NetApp" + } }, "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:31:24.5435634Z", + "createdAt": "2022-10-21T12:39:31.9750554Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:31:24.5435634Z" + "lastModifiedAt": "2022-10-23T12:49:44.8645107Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80102a00-5cf5-4d14-9933-79adeb98075f?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9293fad8-d292-4964-9cf2-e67e2264007a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,7 +842,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:57 GMT", + "Date": "Tue, 25 Oct 2022 17:18:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -829,17 +850,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "404eed5b-5b6e-4e80-9b76-e7266b9da387", + "x-ms-correlation-request-id": "2f060cdd-c166-461b-b0f6-1a7395a9b6b6", "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123157Z:404eed5b-5b6e-4e80-9b76-e7266b9da387", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171822Z:2f060cdd-c166-461b-b0f6-1a7395a9b6b6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9293fad8-d292-4964-9cf2-e67e2264007a", + "name": "9293fad8-d292-4964-9cf2-e67e2264007a", + "status": "Updating", + "startTime": "2022-10-25T17:18:20.7233863Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9293fad8-d292-4964-9cf2-e67e2264007a?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:18:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "498e67e9-abf6-43eb-8837-156fc4c5cbe2", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171852Z:498e67e9-abf6-43eb-8837-156fc4c5cbe2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/80102a00-5cf5-4d14-9933-79adeb98075f", - "name": "80102a00-5cf5-4d14-9933-79adeb98075f", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9293fad8-d292-4964-9cf2-e67e2264007a", + "name": "9293fad8-d292-4964-9cf2-e67e2264007a", "status": "Succeeded", - "startTime": "2022-09-19T12:31:25.5818685Z", - "endTime": "2022-09-19T12:31:25.6444678Z", + "startTime": "2022-10-25T17:18:20.7233863Z", + "endTime": "2022-10-25T17:18:22.2234465Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434" @@ -853,7 +914,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -861,8 +922,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:31:57 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A31%3A25.6506813Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:18:52 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A18%3A22.2224036Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -870,21 +931,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1d33bae-eb01-4597-aae0-5d84d8b57902", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123157Z:f1d33bae-eb01-4597-aae0-5d84d8b57902", + "x-ms-correlation-request-id": "65be7677-32dd-4f39-a714-059fe292b832", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171852Z:65be7677-32dd-4f39-a714-059fe292b832", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434", "name": "sdk-py-tests-acc-1-c6cd2434", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A31%3A25.6506813Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A18%3A22.2224036Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:31:23.5794679Z" + "CreatedOnDate": "2022-10-25T17:18:19.6385940Z" }, "properties": { + "provisioningState": "Succeeded", "activeDirectories": [ { "activeDirectoryId": "503d38f9-f17c-f92d-ef26-b0d46374534b", @@ -905,16 +967,15 @@ ], "encryption": { "keySource": "Microsoft.NetApp" - }, - "provisioningState": "Succeeded" + } }, "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:31:24.5435634Z", + "createdAt": "2022-10-21T12:39:31.9750554Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:31:24.5435634Z" + "lastModifiedAt": "2022-10-25T17:18:19.8068595Z" } } }, @@ -927,7 +988,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -938,60 +999,61 @@ "encryptionType": "Single" } }, - "StatusCode": 201, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b6c6cd9-b61c-47de-ba41-b572e1be5734?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54c12f67-c181-4628-abe2-0a1a7c50d361?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "922", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:32:00 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A31%3A59.6153169Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:18:53 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A18%3A53.498539Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af2efab5-f4c9-4ace-8bec-e5feb9021511", + "x-ms-correlation-request-id": "f0d0cff4-4392-49f0-991f-74253ec6e3e8", "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123200Z:af2efab5-f4c9-4ace-8bec-e5feb9021511", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171854Z:f0d0cff4-4392-49f0-991f-74253ec6e3e8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-c6cd2434/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A31%3A59.6153169Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A18%3A53.498539Z\u0027\u0022", "location": "westus2", - "tags": { - "CreatedOnDate": "2022-09-19T12:31:58.1067737Z" - }, "properties": { + "provisioningState": "Updating", + "poolId": "0b03ddca-7962-97b0-b0d0-56d201f296fa", "serviceLevel": "Premium", "size": 4398046511104, - "totalThroughputMibps": 0.0, + "qosType": "Auto", + "totalThroughputMibps": 256.0, "utilizedThroughputMibps": 0.0, "encryptionType": "Single", - "coolAccess": false, - "provisioningState": "Creating" + "coolAccess": false }, "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:31:59.4158539Z", + "createdAt": "2022-10-21T12:39:36.586709Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:31:59.4158539Z" + "lastModifiedAt": "2022-10-23T12:50:18.2255226Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b6c6cd9-b61c-47de-ba41-b572e1be5734?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54c12f67-c181-4628-abe2-0a1a7c50d361?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -999,7 +1061,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:32:30 GMT", + "Date": "Tue, 25 Oct 2022 17:18:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1007,17 +1069,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8f08773-c0cc-4dce-9931-b55e6a35ac50", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123230Z:c8f08773-c0cc-4dce-9931-b55e6a35ac50", + "x-ms-correlation-request-id": "06ad8b2d-9d67-4011-a04c-02feb77efb29", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171854Z:06ad8b2d-9d67-4011-a04c-02feb77efb29", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b6c6cd9-b61c-47de-ba41-b572e1be5734", - "name": "8b6c6cd9-b61c-47de-ba41-b572e1be5734", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54c12f67-c181-4628-abe2-0a1a7c50d361", + "name": "54c12f67-c181-4628-abe2-0a1a7c50d361", "status": "Succeeded", - "startTime": "2022-09-19T12:31:59.6108275Z", - "endTime": "2022-09-19T12:32:00.6734219Z", + "startTime": "2022-10-25T17:18:53.4980808Z", + "endTime": "2022-10-25T17:18:53.7949203Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1" @@ -1031,7 +1093,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1039,8 +1101,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:32:30 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A32%3A00.6696795Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:18:54 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A18%3A53.7873735Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1048,22 +1110,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04271bd1-6f55-4087-b43a-324523af2a97", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123231Z:04271bd1-6f55-4087-b43a-324523af2a97", + "x-ms-correlation-request-id": "88c8aa68-4df9-4193-b144-abceb4818320", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171855Z:88c8aa68-4df9-4193-b144-abceb4818320", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-c6cd2434/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A32%3A00.6696795Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A18%3A53.7873735Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:31:58.1067737Z" + "CreatedOnDate": "2022-10-25T17:18:53.1135619Z" }, "properties": { - "poolId": "a62d3230-cf6d-758d-943f-c921d4e54591", + "poolId": "0b03ddca-7962-97b0-b0d0-56d201f296fa", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1076,10 +1138,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:31:59.4158539Z", + "createdAt": "2022-10-21T12:39:36.586709Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:31:59.4158539Z" + "lastModifiedAt": "2022-10-25T17:18:53.3600226Z" } } }, @@ -1092,7 +1154,7 @@ "Connection": "keep-alive", "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1122,30 +1184,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1585", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:32:44 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A32%3A43.4601834Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:19:07 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A19%3A06.8077739Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "af43ddc4-364b-4511-82fd-ac233e3d2e2b", + "x-ms-correlation-request-id": "e552b9c3-ad62-4bb6-8a1e-2b4f82c485cd", "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123244Z:af43ddc4-364b-4511-82fd-ac233e3d2e2b", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171908Z:e552b9c3-ad62-4bb6-8a1e-2b4f82c485cd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434", "name": "sdk-py-tests-acc-1-c6cd2434/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c6cd2434", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A32%3A43.4601834Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A19%3A06.8077739Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:32:41.4640845Z" + "CreatedOnDate": "2022-10-25T17:19:05.3580921Z" }, "properties": { "serviceLevel": "Premium", @@ -1175,21 +1237,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:32:42.5722524Z", + "createdAt": "2022-10-25T17:19:06.4923998Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:32:42.5722524Z" + "lastModifiedAt": "2022-10-25T17:19:06.4923998Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1197,7 +1259,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:33:14 GMT", + "Date": "Tue, 25 Oct 2022 17:19:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1205,16 +1267,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38f880e4-9e48-4342-b4cb-73b70e0292f0", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123314Z:38f880e4-9e48-4342-b4cb-73b70e0292f0", + "x-ms-correlation-request-id": "12330b4f-5f82-4475-9978-42e9266683aa", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171908Z:12330b4f-5f82-4475-9978-42e9266683aa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf", - "name": "85381f9d-b53b-4b0b-a30e-b5658c5031cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", "status": "Creating", - "startTime": "2022-09-19T12:32:43.4542507Z", + "startTime": "2022-10-25T17:19:06.8065719Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1223,13 +1285,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1237,7 +1299,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:33:44 GMT", + "Date": "Tue, 25 Oct 2022 17:19:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1245,16 +1307,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb9c2642-0e30-4dd9-b882-bd6e6508801a", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123345Z:fb9c2642-0e30-4dd9-b882-bd6e6508801a", + "x-ms-correlation-request-id": "4377221c-424a-4fba-8a78-dbadde994b26", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T171938Z:4377221c-424a-4fba-8a78-dbadde994b26", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf", - "name": "85381f9d-b53b-4b0b-a30e-b5658c5031cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", "status": "Creating", - "startTime": "2022-09-19T12:32:43.4542507Z", + "startTime": "2022-10-25T17:19:06.8065719Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1263,13 +1325,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1277,7 +1339,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:34:15 GMT", + "Date": "Tue, 25 Oct 2022 17:20:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1285,16 +1347,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c41f9dbf-8118-4ff1-9616-9dbaeafae4d4", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123415Z:c41f9dbf-8118-4ff1-9616-9dbaeafae4d4", + "x-ms-correlation-request-id": "dd2e9286-fa2e-4c36-a913-669b026a6bf2", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172008Z:dd2e9286-fa2e-4c36-a913-669b026a6bf2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf", - "name": "85381f9d-b53b-4b0b-a30e-b5658c5031cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", "status": "Creating", - "startTime": "2022-09-19T12:32:43.4542507Z", + "startTime": "2022-10-25T17:19:06.8065719Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1303,13 +1365,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1317,7 +1379,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:34:45 GMT", + "Date": "Tue, 25 Oct 2022 17:20:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1325,16 +1387,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c77c3a27-1442-4d53-96f5-ae368830c856", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123445Z:c77c3a27-1442-4d53-96f5-ae368830c856", + "x-ms-correlation-request-id": "70a6be2a-58dd-4ff6-b9f3-64c3e683d941", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172039Z:70a6be2a-58dd-4ff6-b9f3-64c3e683d941", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf", - "name": "85381f9d-b53b-4b0b-a30e-b5658c5031cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", "status": "Creating", - "startTime": "2022-09-19T12:32:43.4542507Z", + "startTime": "2022-10-25T17:19:06.8065719Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1343,13 +1405,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1357,7 +1419,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:35:15 GMT", + "Date": "Tue, 25 Oct 2022 17:21:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1365,16 +1427,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e1c4053-5efc-4ac4-b1e7-dc38514eaf95", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123516Z:9e1c4053-5efc-4ac4-b1e7-dc38514eaf95", + "x-ms-correlation-request-id": "83aeba89-70bf-420e-b43f-7ea9046dbf7d", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172109Z:83aeba89-70bf-420e-b43f-7ea9046dbf7d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf", - "name": "85381f9d-b53b-4b0b-a30e-b5658c5031cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", "status": "Creating", - "startTime": "2022-09-19T12:32:43.4542507Z", + "startTime": "2022-10-25T17:19:06.8065719Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1383,13 +1445,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1397,7 +1459,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:35:46 GMT", + "Date": "Tue, 25 Oct 2022 17:21:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1405,16 +1467,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14b8f12d-c9f1-4932-9ac0-7519abc8a6c1", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123546Z:14b8f12d-c9f1-4932-9ac0-7519abc8a6c1", + "x-ms-correlation-request-id": "efe9f337-2812-4f52-93c1-2f4b70468c34", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172139Z:efe9f337-2812-4f52-93c1-2f4b70468c34", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf", - "name": "85381f9d-b53b-4b0b-a30e-b5658c5031cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", "status": "Creating", - "startTime": "2022-09-19T12:32:43.4542507Z", + "startTime": "2022-10-25T17:19:06.8065719Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1423,13 +1485,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1437,7 +1499,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:36:16 GMT", + "Date": "Tue, 25 Oct 2022 17:22:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1445,16 +1507,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4fe59274-a824-4711-a03e-9cfe81e9ce1f", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123616Z:4fe59274-a824-4711-a03e-9cfe81e9ce1f", + "x-ms-correlation-request-id": "d791ae1b-9c1c-40d9-9738-a575db6c3ba3", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172210Z:d791ae1b-9c1c-40d9-9738-a575db6c3ba3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf", - "name": "85381f9d-b53b-4b0b-a30e-b5658c5031cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", "status": "Creating", - "startTime": "2022-09-19T12:32:43.4542507Z", + "startTime": "2022-10-25T17:19:06.8065719Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1463,13 +1525,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1477,7 +1539,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:36:46 GMT", + "Date": "Tue, 25 Oct 2022 17:22:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1485,17 +1547,137 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14f9b2d2-bdee-41dd-95ee-03781642ec44", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123646Z:14f9b2d2-bdee-41dd-95ee-03781642ec44", + "x-ms-correlation-request-id": "013fbcff-7846-4bc5-85ef-cb097454d055", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172240Z:013fbcff-7846-4bc5-85ef-cb097454d055", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "status": "Creating", + "startTime": "2022-10-25T17:19:06.8065719Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:23:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "15ef9fa6-49d3-42e5-9d28-e556f5ccba9b", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172310Z:15ef9fa6-49d3-42e5-9d28-e556f5ccba9b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "status": "Creating", + "startTime": "2022-10-25T17:19:06.8065719Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:23:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4597693b-c619-4efd-ba28-c86989f90e16", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172340Z:4597693b-c619-4efd-ba28-c86989f90e16", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/85381f9d-b53b-4b0b-a30e-b5658c5031cf", - "name": "85381f9d-b53b-4b0b-a30e-b5658c5031cf", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "status": "Creating", + "startTime": "2022-10-25T17:19:06.8065719Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:24:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c7fb73d8-7b5a-4cbc-8dad-d54bf67deb3d", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172411Z:c7fb73d8-7b5a-4cbc-8dad-d54bf67deb3d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", + "name": "9ac4de3d-e9c7-4c5c-87bb-9e421231a9bf", "status": "Succeeded", - "startTime": "2022-09-19T12:32:43.4542507Z", - "endTime": "2022-09-19T12:36:32.8782879Z", + "startTime": "2022-10-25T17:19:06.8065719Z", + "endTime": "2022-10-25T17:23:44.2259873Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" @@ -1509,7 +1691,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1517,8 +1699,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:36:47 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A36%3A32.877929Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:24:11 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A23%3A44.2242299Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1526,22 +1708,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2dd82f3-09c5-405c-9f95-4231343b98cd", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123647Z:f2dd82f3-09c5-405c-9f95-4231343b98cd", + "x-ms-correlation-request-id": "b122df4f-3b6c-481e-8218-8eb35c8514f3", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172412Z:b122df4f-3b6c-481e-8218-8eb35c8514f3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434", "name": "sdk-py-tests-acc-1-c6cd2434/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c6cd2434", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A36%3A32.877929Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A23%3A44.2242299Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:32:41.4640845Z" + "CreatedOnDate": "2022-10-25T17:19:05.3580921Z" }, "properties": { - "fileSystemId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", + "fileSystemId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c6cd2434", "usageThreshold": 107374182400, @@ -1569,7 +1751,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6d3d56d2", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6f3b5bce", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1584,8 +1766,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", - "fileSystemId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", + "mountTargetId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", + "fileSystemId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", "ipAddress": "10.0.0.4" } ], @@ -1605,10 +1787,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:32:42.5722524Z", + "createdAt": "2022-10-25T17:19:06.4923998Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:32:42.5722524Z" + "lastModifiedAt": "2022-10-25T17:19:06.4923998Z" } } }, @@ -1621,7 +1803,7 @@ "Connection": "keep-alive", "Content-Length": "787", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1649,12 +1831,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ddb22653-1f2c-4bcf-9777-3bd3a76c7eb6?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d137019-bf70-495a-b2d2-d9f9b202667b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:36:49 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A36%3A48.4606095Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:24:14 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A24%3A12.8498698Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1662,23 +1844,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b431efca-26a5-458d-89a7-a4cd3ecc5dae", + "x-ms-correlation-request-id": "f8fe7902-3188-471e-a28e-4df19ceb6384", "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123650Z:b431efca-26a5-458d-89a7-a4cd3ecc5dae", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172414Z:f8fe7902-3188-471e-a28e-4df19ceb6384", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434", "name": "sdk-py-tests-acc-1-c6cd2434/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c6cd2434", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A36%3A48.4606095Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A24%3A12.8498698Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:32:41.4640845Z" + "CreatedOnDate": "2022-10-25T17:19:05.3580921Z" }, "properties": { "provisioningState": "Updating", - "fileSystemId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", + "fileSystemId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c6cd2434", "usageThreshold": 107374182400, @@ -1706,7 +1888,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6d3d56d2", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6f3b5bce", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1721,8 +1903,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", - "fileSystemId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", + "mountTargetId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", + "fileSystemId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", "ipAddress": "10.0.0.4" } ], @@ -1741,21 +1923,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:32:42.5722524Z", + "createdAt": "2022-10-25T17:19:06.4923998Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:32:42.5722524Z" + "lastModifiedAt": "2022-10-25T17:19:06.4923998Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ddb22653-1f2c-4bcf-9777-3bd3a76c7eb6?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d137019-bf70-495a-b2d2-d9f9b202667b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1763,7 +1945,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:37:19 GMT", + "Date": "Tue, 25 Oct 2022 17:24:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1771,17 +1953,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd20573d-faae-4e2e-a7c6-87981956e316", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123720Z:bd20573d-faae-4e2e-a7c6-87981956e316", + "x-ms-correlation-request-id": "7ad6d47d-b144-46a8-b718-b3cf2bd749e4", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172415Z:7ad6d47d-b144-46a8-b718-b3cf2bd749e4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ddb22653-1f2c-4bcf-9777-3bd3a76c7eb6", - "name": "ddb22653-1f2c-4bcf-9777-3bd3a76c7eb6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d137019-bf70-495a-b2d2-d9f9b202667b", + "name": "0d137019-bf70-495a-b2d2-d9f9b202667b", + "status": "Updating", + "startTime": "2022-10-25T17:24:12.8619544Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d137019-bf70-495a-b2d2-d9f9b202667b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:24:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d79f5736-ef40-40ba-95d6-f3f8b40b6b82", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172445Z:d79f5736-ef40-40ba-95d6-f3f8b40b6b82", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d137019-bf70-495a-b2d2-d9f9b202667b", + "name": "0d137019-bf70-495a-b2d2-d9f9b202667b", "status": "Succeeded", - "startTime": "2022-09-19T12:36:48.465788Z", - "endTime": "2022-09-19T12:36:55.3681165Z", + "startTime": "2022-10-25T17:24:12.8619544Z", + "endTime": "2022-10-25T17:24:15.7562751Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" @@ -1795,7 +2017,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1803,8 +2025,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:37:20 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T12%3A36%3A55.3744756Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 17:24:45 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T17%3A24%3A15.7462147Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1812,30 +2034,30 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0be5e208-892c-43b5-a8c6-a6f4cf484740", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123721Z:0be5e208-892c-43b5-a8c6-a6f4cf484740", + "x-ms-correlation-request-id": "4d45606f-7902-42ae-b5b5-fa2d3a9e8088", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172445Z:4d45606f-7902-42ae-b5b5-fa2d3a9e8088", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434", "name": "sdk-py-tests-acc-1-c6cd2434/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c6cd2434", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A36%3A55.3744756Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A24%3A15.7462147Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:36:48.0804276Z" + "CreatedOnDate": "2022-10-25T17:24:12.4888262Z" }, "properties": { "provisioningState": "Succeeded", - "fileSystemId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", + "fileSystemId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c6cd2434", "usageThreshold": 214748364800, "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6d3d56d2", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6f3b5bce", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default", "networkFeatures": "Basic", "snapshotDirectoryVisible": true, @@ -1848,8 +2070,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", - "fileSystemId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", + "mountTargetId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", + "fileSystemId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", "ipAddress": "10.0.0.4" } ], @@ -1867,10 +2089,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:32:42.5722524Z", + "createdAt": "2022-10-25T17:19:06.4923998Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:36:48.2515159Z" + "lastModifiedAt": "2022-10-25T17:24:12.6654237Z" } } }, @@ -1882,36 +2104,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43fbb95e-8380-4285-9f20-222ef732fe73?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:37:21 GMT", + "Date": "Tue, 25 Oct 2022 17:24:46 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43fbb95e-8380-4285-9f20-222ef732fe73?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d53e1dc8-1bf0-4024-a8cb-1093982efe11", + "x-ms-correlation-request-id": "ca6a4aac-7c6e-4d44-bd4e-c004ff7ff0da", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123721Z:d53e1dc8-1bf0-4024-a8cb-1093982efe11", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172446Z:ca6a4aac-7c6e-4d44-bd4e-c004ff7ff0da", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43fbb95e-8380-4285-9f20-222ef732fe73?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1919,7 +2141,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:37:51 GMT", + "Date": "Tue, 25 Oct 2022 17:24:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1927,16 +2149,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83943de3-9dc7-4ac7-8f32-c9384c84c491", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123751Z:83943de3-9dc7-4ac7-8f32-c9384c84c491", + "x-ms-correlation-request-id": "30de71cd-efbd-49ea-9718-5037c1a63bc8", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172446Z:30de71cd-efbd-49ea-9718-5037c1a63bc8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43fbb95e-8380-4285-9f20-222ef732fe73", - "name": "43fbb95e-8380-4285-9f20-222ef732fe73", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb", + "name": "c51929fb-560c-44b8-818f-13f80e3e2acb", "status": "Deleting", - "startTime": "2022-09-19T12:37:21.5779605Z", + "startTime": "2022-10-25T17:24:46.4185055Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1945,13 +2167,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43fbb95e-8380-4285-9f20-222ef732fe73?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1959,7 +2181,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:38:22 GMT", + "Date": "Tue, 25 Oct 2022 17:25:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1967,17 +2189,217 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e64cd100-8ffd-4018-a3d7-d90d24cba465", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123822Z:e64cd100-8ffd-4018-a3d7-d90d24cba465", + "x-ms-correlation-request-id": "cf0e1ed1-537b-4412-8cfe-08580e56a811", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172517Z:cf0e1ed1-537b-4412-8cfe-08580e56a811", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb", + "name": "c51929fb-560c-44b8-818f-13f80e3e2acb", + "status": "Deleting", + "startTime": "2022-10-25T17:24:46.4185055Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:25:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8d89787a-c477-4710-a9ab-9b8dc7c99c0d", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172547Z:8d89787a-c477-4710-a9ab-9b8dc7c99c0d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43fbb95e-8380-4285-9f20-222ef732fe73", - "name": "43fbb95e-8380-4285-9f20-222ef732fe73", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb", + "name": "c51929fb-560c-44b8-818f-13f80e3e2acb", + "status": "Deleting", + "startTime": "2022-10-25T17:24:46.4185055Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:26:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0d6bc19d-725b-4487-8bd7-99799485231f", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172617Z:0d6bc19d-725b-4487-8bd7-99799485231f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb", + "name": "c51929fb-560c-44b8-818f-13f80e3e2acb", + "status": "Deleting", + "startTime": "2022-10-25T17:24:46.4185055Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:26:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bb8c8651-e615-4add-9f0e-99661c48851d", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172647Z:bb8c8651-e615-4add-9f0e-99661c48851d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb", + "name": "c51929fb-560c-44b8-818f-13f80e3e2acb", + "status": "Deleting", + "startTime": "2022-10-25T17:24:46.4185055Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:27:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e33f346d-8117-47d6-ac44-3e4229c0cca7", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172718Z:e33f346d-8117-47d6-ac44-3e4229c0cca7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb", + "name": "c51929fb-560c-44b8-818f-13f80e3e2acb", + "status": "Deleting", + "startTime": "2022-10-25T17:24:46.4185055Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 17:27:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "daa25bb7-aeb0-48f3-808a-cd1c87e54451", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172748Z:daa25bb7-aeb0-48f3-808a-cd1c87e54451", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb", + "name": "c51929fb-560c-44b8-818f-13f80e3e2acb", "status": "Succeeded", - "startTime": "2022-09-19T12:37:21.5779605Z", - "endTime": "2022-09-19T12:38:08.9502293Z", + "startTime": "2022-10-25T17:24:46.4185055Z", + "endTime": "2022-10-25T17:27:42.5145062Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434" @@ -1985,13 +2407,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/43fbb95e-8380-4285-9f20-222ef732fe73?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c51929fb-560c-44b8-818f-13f80e3e2acb?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1999,7 +2421,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:38:22 GMT", + "Date": "Tue, 25 Oct 2022 17:27:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2007,22 +2429,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "669a39e9-c072-4792-977b-1b799141b186", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T123822Z:669a39e9-c072-4792-977b-1b799141b186", + "x-ms-correlation-request-id": "37fd03cd-d8de-4357-bfdd-63e97bbbceac", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T172748Z:37fd03cd-d8de-4357-bfdd-63e97bbbceac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434", "name": "sdk-py-tests-acc-1-c6cd2434/sdk-py-tests-pool-1/sdk-py-tests-vol-3-c6cd2434", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A37%3A59.8469521Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T17%3A27%3A25.429907Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T12:36:48.0804276Z" + "CreatedOnDate": "2022-10-25T17:24:12.4888262Z" }, "properties": { - "fileSystemId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", + "fileSystemId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-c6cd2434", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -2030,17 +2452,17 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6d3d56d2", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_6f3b5bce", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434/subnets/default", "networkFeatures": "Basic", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-c6cd2434/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-c6cd2434", - "poolId": "a62d3230-cf6d-758d-943f-c921d4e54591", + "poolId": "0b03ddca-7962-97b0-b0d0-56d201f296fa", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", - "fileSystemId": "ca2bd3bc-bc0a-3f69-9891-703e29c93c9e", + "mountTargetId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", + "fileSystemId": "359314ab-2c5c-9cd1-ede1-2f51618a10ab", "startIp": "", "endIp": "", "gateway": "", @@ -2071,10 +2493,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T12:32:42.5722524Z", + "createdAt": "2022-10-25T17:19:06.4923998Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T12:36:48.2515159Z" + "lastModifiedAt": "2022-10-25T17:24:12.6654237Z" } } }, @@ -2085,7 +2507,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2093,14 +2515,14 @@ "Cache-Control": "no-cache", "Content-Length": "324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:41:43 GMT", + "Date": "Tue, 25 Oct 2022 17:31:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03fa48d0-d2ef-4210-a12d-d1a9d55c7de4", + "x-ms-correlation-request-id": "f671e7f9-956f-428b-b4bb-7d32636099ba", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T124144Z:03fa48d0-d2ef-4210-a12d-d1a9d55c7de4" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173111Z:f671e7f9-956f-428b-b4bb-7d32636099ba" }, "ResponseBody": { "error": { @@ -2117,20 +2539,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:41:54 GMT", + "Date": "Tue, 25 Oct 2022 17:31:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4582b628-b205-4e5c-b22b-d3f6d21a88a2", + "x-ms-correlation-request-id": "db9a6075-b297-4ca6-8cb4-cf09c288ef10", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T124155Z:4582b628-b205-4e5c-b22b-d3f6d21a88a2" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173123Z:db9a6075-b297-4ca6-8cb4-cf09c288ef10" }, "ResponseBody": null }, @@ -2142,20 +2564,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:42:04 GMT", + "Date": "Tue, 25 Oct 2022 17:31:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1ad92ed-c284-4d1d-ae69-8e12f1555a3a", + "x-ms-correlation-request-id": "647191aa-a290-445b-8742-715886b0d2d4", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T124205Z:d1ad92ed-c284-4d1d-ae69-8e12f1555a3a" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173133Z:647191aa-a290-445b-8742-715886b0d2d4" }, "ResponseBody": null }, @@ -2167,20 +2589,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:42:15 GMT", + "Date": "Tue, 25 Oct 2022 17:31:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e2ad833-cc32-417e-8fac-31ee2c8ad329", + "x-ms-correlation-request-id": "739638a0-d1ac-4c59-8feb-5f0f7144a157", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T124216Z:9e2ad833-cc32-417e-8fac-31ee2c8ad329" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173143Z:739638a0-d1ac-4c59-8feb-5f0f7144a157" }, "ResponseBody": null }, @@ -2192,20 +2614,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:42:25 GMT", + "Date": "Tue, 25 Oct 2022 17:31:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48c6442e-4945-47b7-b554-a1c7f95b12e6", + "x-ms-correlation-request-id": "254056fc-e2e9-4d8d-add1-06715f6d5c65", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T124226Z:48c6442e-4945-47b7-b554-a1c7f95b12e6" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173154Z:254056fc-e2e9-4d8d-add1-06715f6d5c65" }, "ResponseBody": null }, @@ -2217,20 +2639,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:42:35 GMT", + "Date": "Tue, 25 Oct 2022 17:32:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee7652d3-b415-4400-836e-bb42f2c53255", + "x-ms-correlation-request-id": "46cebef1-ec44-4727-8d2b-3c327996e0e4", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T124236Z:ee7652d3-b415-4400-836e-bb42f2c53255" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173204Z:46cebef1-ec44-4727-8d2b-3c327996e0e4" }, "ResponseBody": null }, @@ -2241,7 +2663,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2249,14 +2671,14 @@ "Cache-Control": "no-cache", "Content-Length": "288", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:42:47 GMT", + "Date": "Tue, 25 Oct 2022 17:32:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "076895b2-3998-4cfe-845a-98980c8b54fd", + "x-ms-correlation-request-id": "34871324-478c-41d6-9081-10a5c3349724", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T124247Z:076895b2-3998-4cfe-845a-98980c8b54fd" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173214Z:34871324-478c-41d6-9081-10a5c3349724" }, "ResponseBody": { "error": { @@ -2273,20 +2695,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:42:47 GMT", + "Date": "Tue, 25 Oct 2022 17:32:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82532115-0733-4c76-a4a9-4b746e70bcda", + "x-ms-correlation-request-id": "32789bc8-5bac-4246-840c-62b8a191cd1a", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T124247Z:82532115-0733-4c76-a4a9-4b746e70bcda" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173214Z:32789bc8-5bac-4246-840c-62b8a191cd1a" }, "ResponseBody": null }, @@ -2297,7 +2719,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -2305,14 +2727,14 @@ "Cache-Control": "no-cache", "Content-Length": "254", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:42:47 GMT", + "Date": "Tue, 25 Oct 2022 17:32:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02cc83d4-aa67-43f4-8f49-3cbb5b752067", + "x-ms-correlation-request-id": "d8589f0b-42a4-4578-97b1-5fab5c5b43f6", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T124247Z:02cc83d4-aa67-43f4-8f49-3cbb5b752067" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173215Z:d8589f0b-42a4-4578-97b1-5fab5c5b43f6" }, "ResponseBody": { "error": { @@ -2322,25 +2744,25 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-c6cd2434?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6676672b-d6e8-4f10-bb33-b9379173b135?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/2d7d7752-c829-4349-be73-e0fe090a8fc6?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:42:48 GMT", + "Date": "Tue, 25 Oct 2022 17:32:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/6676672b-d6e8-4f10-bb33-b9379173b135?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/2d7d7752-c829-4349-be73-e0fe090a8fc6?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -2349,10 +2771,10 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "5e09e19b-9b51-4310-b6f1-6281edaa7c5a", - "x-ms-correlation-request-id": "c18f9dc4-7ce1-42be-881d-320775cabe14", + "x-ms-arm-service-request-id": "c600527d-8217-4604-9237-794904555bb2", + "x-ms-correlation-request-id": "18df763b-cbf4-4ba8-9a3c-1c09249452fc", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T124248Z:c18f9dc4-7ce1-42be-881d-320775cabe14" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T173216Z:18df763b-cbf4-4ba8-9a3c-1c09249452fc" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_volume_replication.json b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_volume_replication.json index 87d6c0f005da..9d06787851e9 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_volume_replication.json +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.pyTestNetAppVolumetest_volume_replication.json @@ -7,7 +7,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17,12 +17,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:23 GMT", + "Date": "Tue, 25 Oct 2022 22:32:05 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -101,7 +101,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -111,12 +111,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:23 GMT", + "Date": "Tue, 25 Oct 2022 22:32:05 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR2 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -172,28 +172,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "9115e267-2468-49ec-a496-3b2135301298", + "client-request-id": "337c715f-16ee-4ab6-952a-65e20a54c18b", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "9115e267-2468-49ec-a496-3b2135301298", + "client-request-id": "337c715f-16ee-4ab6-952a-65e20a54c18b", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:23 GMT", + "Date": "Tue, 25 Oct 2022 22:32:05 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -201,7 +201,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -221,7 +221,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -236,11 +236,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/85139346-9a2e-41e4-b835-2f3ad4df2904?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7a70c397-eaab-4860-afa9-3a8bb0e56410?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "756", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:29 GMT", + "Date": "Tue, 25 Oct 2022 22:32:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -250,23 +250,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "b642c2a3-f25a-4115-ab47-595acd7333d4", - "x-ms-correlation-request-id": "877b1afb-42fe-42e5-8f69-31a33b06f93a", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113930Z:877b1afb-42fe-42e5-8f69-31a33b06f93a" + "x-ms-arm-service-request-id": "5a41c6ad-9e84-4881-9648-9c30f3cae6d8", + "x-ms-correlation-request-id": "6463e03c-1e4e-4af3-896f-68139a952ba7", + "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223213Z:6463e03c-1e4e-4af3-896f-68139a952ba7" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-b2-86eb264b", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b", - "etag": "W/\u0022e40fe909-96b7-4de5-83e4-9685dac0d898\u0022", + "etag": "W/\u002260ddfb40-dceb-4926-b904-197202534271\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:39:25.7057704Z" + "CreatedOnDate": "2022-10-25T22:32:08.0775776Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "511e0e25-2af6-44cb-a27b-89aaff412d1d", + "resourceGuid": "a92adb29-fe3e-45cd-b364-97421ab578de", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -279,13 +279,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/85139346-9a2e-41e4-b835-2f3ad4df2904?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7a70c397-eaab-4860-afa9-3a8bb0e56410?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,9 +293,10 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:33 GMT", + "Date": "Tue, 25 Oct 2022 22:32:13 GMT", "Expires": "-1", "Pragma": "no-cache", + "Retry-After": "10", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -304,23 +305,58 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f6932831-ed4d-4bc0-bbde-64b9fc5a350b", - "x-ms-correlation-request-id": "65574bbf-c2cb-4d1e-ab0a-2c5afcdcfc12", - "x-ms-ratelimit-remaining-subscription-reads": "11999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113933Z:65574bbf-c2cb-4d1e-ab0a-2c5afcdcfc12" + "x-ms-arm-service-request-id": "e6661f65-3a8a-4899-bc89-2313aeda8531", + "x-ms-correlation-request-id": "1e2e9e62-ee90-4120-bea0-5c89b5f87cbb", + "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223213Z:1e2e9e62-ee90-4120-bea0-5c89b5f87cbb" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7a70c397-eaab-4860-afa9-3a8bb0e56410?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:32:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "2621eea7-349e-411f-909e-fa8e648bdbb9", + "x-ms-correlation-request-id": "17454131-5bce-43ba-8522-da927b110ed9", + "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223223Z:17454131-5bce-43ba-8522-da927b110ed9" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,8 +364,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:33 GMT", - "ETag": "W/\u002213da2a15-b656-4d31-93b7-1ac24facf1cb\u0022", + "Date": "Tue, 25 Oct 2022 22:32:24 GMT", + "ETag": "W/\u0022e0039bcb-87ce-4fd8-ad82-41d159fe37a4\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -340,23 +376,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f8c73cda-e57f-4b3f-ad39-21490dc25628", - "x-ms-correlation-request-id": "f35b12fa-cb26-4abf-98e0-de18280af289", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113933Z:f35b12fa-cb26-4abf-98e0-de18280af289" + "x-ms-arm-service-request-id": "2059ede6-09a4-4f9b-a225-3894ca10769f", + "x-ms-correlation-request-id": "ff45df5f-423b-4d5f-a955-1fd37d88b765", + "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223224Z:ff45df5f-423b-4d5f-a955-1fd37d88b765" }, "ResponseBody": { "name": "sdk-python-tests-vnet-westus2-b2-86eb264b", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b", - "etag": "W/\u002213da2a15-b656-4d31-93b7-1ac24facf1cb\u0022", + "etag": "W/\u0022e0039bcb-87ce-4fd8-ad82-41d159fe37a4\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:39:25.7057704Z" + "CreatedOnDate": "2022-10-25T22:32:08.0775776Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "511e0e25-2af6-44cb-a27b-89aaff412d1d", + "resourceGuid": "a92adb29-fe3e-45cd-b364-97421ab578de", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -369,7 +405,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -377,7 +413,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -394,11 +430,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9c88d049-0d5b-4516-9b67-a87d2f321899?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4f605de5-c200-417f-8968-abe351a158d0?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1332", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:34 GMT", + "Date": "Tue, 25 Oct 2022 22:32:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -408,15 +445,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "3e37fffd-3441-4cf6-a706-f80594de5ee8", - "x-ms-correlation-request-id": "4dabb3ff-353b-443e-b65e-ab441ce68823", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113934Z:4dabb3ff-353b-443e-b65e-ab441ce68823" + "x-ms-arm-service-request-id": "e8e7fec2-5f0c-4f23-99e0-6498bbdaa20c", + "x-ms-correlation-request-id": "d51cf500-4eec-4029-934f-7d3d48732a24", + "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223225Z:d51cf500-4eec-4029-934f-7d3d48732a24" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", - "etag": "W/\u0022603686dd-1259-40f1-9b39-a0a64754dc92\u0022", + "etag": "W/\u002286a4c3a9-8511-472e-a4b8-f525967c5a92\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -424,7 +461,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022603686dd-1259-40f1-9b39-a0a64754dc92\u0022", + "etag": "W/\u002286a4c3a9-8511-472e-a4b8-f525967c5a92\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -444,13 +481,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9c88d049-0d5b-4516-9b67-a87d2f321899?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4f605de5-c200-417f-8968-abe351a158d0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -458,7 +495,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:37 GMT", + "Date": "Tue, 25 Oct 2022 22:32:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -469,23 +506,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "a06aefbf-96dc-465b-97a6-464ef47b1981", - "x-ms-correlation-request-id": "d02a248e-2e68-4706-a2c0-70e651322eef", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113937Z:d02a248e-2e68-4706-a2c0-70e651322eef" + "x-ms-arm-service-request-id": "e25727fc-83d5-4caf-868d-a3b091239e66", + "x-ms-correlation-request-id": "a596eede-32cb-4c3f-9bf1-a8ce6370a48d", + "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223225Z:a596eede-32cb-4c3f-9bf1-a8ce6370a48d" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -493,8 +530,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:37 GMT", - "ETag": "W/\u00226db524d1-50e9-4ed9-8345-3f459b5e6453\u0022", + "Date": "Tue, 25 Oct 2022 22:32:25 GMT", + "ETag": "W/\u0022910cf299-1973-4a84-bd3a-2aaccafcd0bc\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -505,15 +542,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "26c8afeb-ce7d-4f58-998f-4cdc76e6ea36", - "x-ms-correlation-request-id": "38840713-4c88-42f4-92a0-222a5f842a2e", - "x-ms-ratelimit-remaining-subscription-reads": "11996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113938Z:38840713-4c88-42f4-92a0-222a5f842a2e" + "x-ms-arm-service-request-id": "add30238-696d-4da7-88f5-e39c7dfa54d9", + "x-ms-correlation-request-id": "0b7ec703-6c19-4b18-acec-4b4e7072ee0b", + "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223226Z:0b7ec703-6c19-4b18-acec-4b4e7072ee0b" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", - "etag": "W/\u00226db524d1-50e9-4ed9-8345-3f459b5e6453\u0022", + "etag": "W/\u0022910cf299-1973-4a84-bd3a-2aaccafcd0bc\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -521,7 +558,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00226db524d1-50e9-4ed9-8345-3f459b5e6453\u0022", + "etag": "W/\u0022910cf299-1973-4a84-bd3a-2aaccafcd0bc\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -541,7 +578,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -549,7 +586,7 @@ "Connection": "keep-alive", "Content-Length": "93", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "eastus2", @@ -564,11 +601,11 @@ "StatusCode": 201, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/f31b2184-f279-4fc8-a622-bc65819043bf?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3d9399b6-b879-44e3-8222-da740caf8024?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "746", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:43 GMT", + "Date": "Tue, 25 Oct 2022 22:32:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -578,23 +615,23 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "8da7de9d-42a4-4466-9bc7-cc8c4c472428", - "x-ms-correlation-request-id": "ec10f00d-04de-4eb1-b071-a91c7c3b4e3b", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113943Z:ec10f00d-04de-4eb1-b071-a91c7c3b4e3b" + "x-ms-arm-service-request-id": "c078d397-4a0b-4287-9450-cd6f7e72029c", + "x-ms-correlation-request-id": "59ed7994-6bcf-42fc-806a-38f88dcc5e9c", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223230Z:59ed7994-6bcf-42fc-806a-38f88dcc5e9c" }, "ResponseBody": { "name": "sdk-python-tests-vnet-R-b2-86eb264b", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b", - "etag": "W/\u002256be4e92-c19f-4866-831e-5f5cf402d096\u0022", + "etag": "W/\u00227105d0c0-c191-40e9-a445-5fa3d08ab76b\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:39:38.2913573Z" + "CreatedOnDate": "2022-10-25T22:32:26.4342728Z" }, "properties": { "provisioningState": "Updating", - "resourceGuid": "1ef22c14-2773-4a99-be8a-349f64007572", + "resourceGuid": "47aa83f5-c933-43aa-9bfc-f6329f1b3256", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -607,13 +644,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/f31b2184-f279-4fc8-a622-bc65819043bf?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3d9399b6-b879-44e3-8222-da740caf8024?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -621,9 +658,10 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:46 GMT", + "Date": "Tue, 25 Oct 2022 22:32:30 GMT", "Expires": "-1", "Pragma": "no-cache", + "Retry-After": "10", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -632,23 +670,58 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "f203dad6-9fda-4828-988d-2b30ca0e2218", - "x-ms-correlation-request-id": "0dfa174d-af36-4911-9d31-7e801c8af15c", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113946Z:0dfa174d-af36-4911-9d31-7e801c8af15c" + "x-ms-arm-service-request-id": "fefca2cd-6f4b-41f2-a87f-950acbe7b9bc", + "x-ms-correlation-request-id": "7e69d5f1-d4e7-4139-a271-b42c53b6f751", + "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223230Z:7e69d5f1-d4e7-4139-a271-b42c53b6f751" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3d9399b6-b879-44e3-8222-da740caf8024?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:32:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "914d492f-cdaa-4f73-9dd2-1b9d2a946d40", + "x-ms-correlation-request-id": "95c07409-34ef-4428-bc19-3168a3c74960", + "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223240Z:95c07409-34ef-4428-bc19-3168a3c74960" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -656,8 +729,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:46 GMT", - "ETag": "W/\u0022b045ef11-7e8e-4dd7-a778-63e4e4238eaf\u0022", + "Date": "Tue, 25 Oct 2022 22:32:40 GMT", + "ETag": "W/\u0022a4f75ed1-ae2d-418f-bcfe-382d65a2af6d\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -668,23 +741,23 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "429f7278-93a3-4bde-86b5-f4946ffbe85d", - "x-ms-correlation-request-id": "772bfefe-e69f-4b74-bbe6-3b703caf099d", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113947Z:772bfefe-e69f-4b74-bbe6-3b703caf099d" + "x-ms-arm-service-request-id": "f7c3637d-5809-42aa-8c4c-616f41f41201", + "x-ms-correlation-request-id": "ae308e49-d237-45cc-bde1-812b7cd11868", + "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223240Z:ae308e49-d237-45cc-bde1-812b7cd11868" }, "ResponseBody": { "name": "sdk-python-tests-vnet-R-b2-86eb264b", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b", - "etag": "W/\u0022b045ef11-7e8e-4dd7-a778-63e4e4238eaf\u0022", + "etag": "W/\u0022a4f75ed1-ae2d-418f-bcfe-382d65a2af6d\u0022", "type": "Microsoft.Network/virtualNetworks", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:39:38.2913573Z" + "CreatedOnDate": "2022-10-25T22:32:26.4342728Z" }, "properties": { "provisioningState": "Succeeded", - "resourceGuid": "1ef22c14-2773-4a99-be8a-349f64007572", + "resourceGuid": "47aa83f5-c933-43aa-9bfc-f6329f1b3256", "addressSpace": { "addressPrefixes": [ "10.0.0.0/16" @@ -697,7 +770,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -705,7 +778,7 @@ "Connection": "keep-alive", "Content-Length": "151", "Content-Type": "application/json", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "properties": { @@ -722,11 +795,12 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/5506ad5c-f21b-48f3-a415-4abbe8cbc7a5?api-version=2022-01-01", + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/36cc11dd-6e70-4a2e-afd5-cad1537c6ec7?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "1324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:47 GMT", + "Date": "Tue, 25 Oct 2022 22:32:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Retry-After": "3", @@ -736,15 +810,15 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "95e9163c-56bc-4b19-b942-0fb85ef65888", - "x-ms-correlation-request-id": "babb0e9d-2dc4-46f8-9526-6798e850f076", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113947Z:babb0e9d-2dc4-46f8-9526-6798e850f076" + "x-ms-arm-service-request-id": "93e01a6f-359d-4841-aaf4-e6b5b9010b09", + "x-ms-correlation-request-id": "a31df475-5aa0-4551-8444-f9a318e93ce3", + "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223241Z:a31df475-5aa0-4551-8444-f9a318e93ce3" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", - "etag": "W/\u0022528f00e8-4353-4df0-bbd9-129fde8b42af\u0022", + "etag": "W/\u002268e2ce93-af5f-40ff-b2c2-c23c0a12ed40\u0022", "properties": { "provisioningState": "Updating", "addressPrefix": "10.0.0.0/24", @@ -752,7 +826,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default/delegations/netAppVolumes", - "etag": "W/\u0022528f00e8-4353-4df0-bbd9-129fde8b42af\u0022", + "etag": "W/\u002268e2ce93-af5f-40ff-b2c2-c23c0a12ed40\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -772,13 +846,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/5506ad5c-f21b-48f3-a415-4abbe8cbc7a5?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/36cc11dd-6e70-4a2e-afd5-cad1537c6ec7?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -786,9 +860,10 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:50 GMT", + "Date": "Tue, 25 Oct 2022 22:32:41 GMT", "Expires": "-1", "Pragma": "no-cache", + "Retry-After": "10", "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" @@ -797,23 +872,58 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "2b84bab7-6273-4f9a-acd7-03534680f52c", - "x-ms-correlation-request-id": "c04f3d57-7801-4d06-ba63-68c1433248d0", - "x-ms-ratelimit-remaining-subscription-reads": "11993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113950Z:c04f3d57-7801-4d06-ba63-68c1433248d0" + "x-ms-arm-service-request-id": "8a4a95d7-d430-43bc-9efe-5ec16245236c", + "x-ms-correlation-request-id": "347758a7-aa5f-4b5b-bb71-8a490d9454bc", + "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223241Z:347758a7-aa5f-4b5b-bb71-8a490d9454bc" + }, + "ResponseBody": { + "status": "InProgress" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/36cc11dd-6e70-4a2e-afd5-cad1537c6ec7?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:32:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "8a1f359a-d8c2-4523-9a8e-00c9698f6f40", + "x-ms-correlation-request-id": "93437c04-2042-4c4b-9116-cf2004fa64ab", + "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223251Z:93437c04-2042-4c4b-9116-cf2004fa64ab" }, "ResponseBody": { "status": "Succeeded" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -821,8 +931,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:50 GMT", - "ETag": "W/\u00227f721cc4-8890-4248-8f4c-b411fde184f8\u0022", + "Date": "Tue, 25 Oct 2022 22:32:51 GMT", + "ETag": "W/\u0022d53cc2cb-0214-4295-b063-995d2ab7391a\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": [ @@ -833,15 +943,15 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "9de32f3c-c34d-4816-8b1a-1c5e12883a47", - "x-ms-correlation-request-id": "f588881c-6523-49c3-8653-a0db916682ce", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113951Z:f588881c-6523-49c3-8653-a0db916682ce" + "x-ms-arm-service-request-id": "ff5dd6e9-64d5-4311-ba64-de42663be658", + "x-ms-correlation-request-id": "cc0ceab9-2604-4e6e-a2ef-f7d6614272f1", + "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223252Z:cc0ceab9-2604-4e6e-a2ef-f7d6614272f1" }, "ResponseBody": { "name": "default", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", - "etag": "W/\u00227f721cc4-8890-4248-8f4c-b411fde184f8\u0022", + "etag": "W/\u0022d53cc2cb-0214-4295-b063-995d2ab7391a\u0022", "properties": { "provisioningState": "Succeeded", "addressPrefix": "10.0.0.0/24", @@ -849,7 +959,7 @@ { "name": "netAppVolumes", "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default/delegations/netAppVolumes", - "etag": "W/\u00227f721cc4-8890-4248-8f4c-b411fde184f8\u0022", + "etag": "W/\u0022d53cc2cb-0214-4295-b063-995d2ab7391a\u0022", "properties": { "provisioningState": "Succeeded", "serviceName": "Microsoft.Netapp/volumes", @@ -875,7 +985,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -885,12 +995,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "1753", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:51 GMT", + "Date": "Tue, 25 Oct 2022 22:32:52 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13672.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - WEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -969,7 +1079,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -979,12 +1089,12 @@ "Cache-Control": "max-age=86400, private", "Content-Length": "945", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:51 GMT", + "Date": "Tue, 25 Oct 2022 22:32:52 GMT", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Set-Cookie": "[set-cookie;]", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-ests-server": "2.1.13622.7 - WEULR2 ProdSlices", + "x-ms-ests-server": "2.1.13943.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -1040,28 +1150,28 @@ "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", - "client-request-id": "e30e188b-b24d-4eef-9fe1-11176b51ff12", + "client-request-id": "8691dbf1-c714-4fb4-bb39-e9ec18776b03", "Connection": "keep-alive", - "Content-Length": "281", + "Content-Length": "288", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "cookie;", - "User-Agent": "azsdk-python-identity/1.11.0b4 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)", + "User-Agent": "azsdk-python-identity/1.12.0b3 Python/3.9.5 (Windows-10-10.0.19044-SP0)", "x-client-cpu": "x64", "x-client-current-telemetry": "4|730,0|", "x-client-last-telemetry": "4|0|||", - "x-client-os": "darwin", + "x-client-os": "win32", "x-client-sku": "MSAL.Python", - "x-client-ver": "1.18.0", + "x-client-ver": "1.20.0", "x-ms-lib-capability": "retry-after, h429" }, "RequestBody": "client_id=00000000-0000-0000-0000-000000000000\u0026grant_type=client_credentials\u0026client_info=1\u0026client_secret=00000000-0000-0000-0000-000000000000\u0026claims=%7B%22access_token%22%3A\u002B%7B%22xms_cc%22%3A\u002B%7B%22values%22%3A\u002B%5B%22CP1%22%5D%7D%7D%7D\u0026scope=https%3A%2F%2Fmanagement.azure.com%2F.default", "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-store, no-cache", - "client-request-id": "e30e188b-b24d-4eef-9fe1-11176b51ff12", + "client-request-id": "8691dbf1-c714-4fb4-bb39-e9ec18776b03", "Content-Length": "114", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:51 GMT", + "Date": "Tue, 25 Oct 2022 22:32:52 GMT", "Expires": "-1", "P3P": "CP=\u0022DSP CUR OTPi IND OTRi ONL FIN\u0022", "Pragma": "no-cache", @@ -1069,7 +1179,7 @@ "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", "x-ms-clitelem": "1,0,0,,", - "x-ms-ests-server": "2.1.13672.7 - NEULR1 ProdSlices", + "x-ms-ests-server": "2.1.14006.8 - NEULR1 ProdSlices", "X-XSS-Protection": "0" }, "ResponseBody": { @@ -1089,37 +1199,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcc89b76-52c1-4018-900a-5c6f694b955c?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e774bb6-5ce6-483a-99b9-808590dec0ea?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "710", + "Content-Length": "712", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:39:56 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A39%3A55.2861622Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:32:56 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A32%3A55.4483041Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "492214b9-7643-4174-a43c-1beae2087ca6", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T113956Z:492214b9-7643-4174-a43c-1beae2087ca6", + "x-ms-correlation-request-id": "be996362-a14d-4561-b865-a68808c30d52", + "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223256Z:be996362-a14d-4561-b865-a68808c30d52", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A39%3A55.2861622Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A32%3A55.4483041Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:39:53.2039976Z" + "CreatedOnDate": "2022-10-25T22:32:53.6501295Z" }, "properties": { "provisioningState": "Creating" @@ -1127,21 +1237,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:39:54.384695Z", + "createdAt": "2022-10-25T22:32:54.4809308Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:39:54.384695Z" + "lastModifiedAt": "2022-10-25T22:32:54.4809308Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcc89b76-52c1-4018-900a-5c6f694b955c?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e774bb6-5ce6-483a-99b9-808590dec0ea?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1149,7 +1259,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:40:26 GMT", + "Date": "Tue, 25 Oct 2022 22:32:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1157,17 +1267,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2269cb46-a26c-4c77-a304-4c0da4722276", - "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114027Z:2269cb46-a26c-4c77-a304-4c0da4722276", + "x-ms-correlation-request-id": "51734d72-6046-4edd-b5d8-73ea1377f037", + "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223257Z:51734d72-6046-4edd-b5d8-73ea1377f037", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fcc89b76-52c1-4018-900a-5c6f694b955c", - "name": "fcc89b76-52c1-4018-900a-5c6f694b955c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6e774bb6-5ce6-483a-99b9-808590dec0ea", + "name": "6e774bb6-5ce6-483a-99b9-808590dec0ea", "status": "Succeeded", - "startTime": "2022-09-19T11:39:55.2895439Z", - "endTime": "2022-09-19T11:39:55.3363919Z", + "startTime": "2022-10-25T22:32:55.4468353Z", + "endTime": "2022-10-25T22:32:55.5092814Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b" @@ -1181,7 +1291,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1189,8 +1299,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:40:26 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A39%3A55.3420628Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:32:57 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A32%3A55.5135031Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1198,19 +1308,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ed430fa-85ba-469f-a74d-57d5c75d5278", - "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114027Z:0ed430fa-85ba-469f-a74d-57d5c75d5278", + "x-ms-correlation-request-id": "5d071c99-8409-490c-88d3-f182cdd19753", + "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223257Z:5d071c99-8409-490c-88d3-f182cdd19753", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A39%3A55.3420628Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A32%3A55.5135031Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:39:53.2039976Z" + "CreatedOnDate": "2022-10-25T22:32:53.6501295Z" }, "properties": { "activeDirectories": [ @@ -1239,10 +1349,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:39:54.384695Z", + "createdAt": "2022-10-25T22:32:54.4809308Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:39:54.384695Z" + "lastModifiedAt": "2022-10-25T22:32:54.4809308Z" } } }, @@ -1255,7 +1365,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1268,30 +1378,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77afcc6b-256c-402b-8684-8be8cdb23b76?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/db3918f7-82c9-479c-bf47-cfa33486abbb?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "928", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:40:29 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A40%3A29.5346992Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:32:59 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A32%3A59.3671073Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e401e1c9-57d3-4cc2-a578-46b80cda121f", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114030Z:e401e1c9-57d3-4cc2-a578-46b80cda121f", + "x-ms-correlation-request-id": "4bf264c1-928e-4a16-9962-638f1d8db891", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223300Z:4bf264c1-928e-4a16-9962-638f1d8db891", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A40%3A29.5346992Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A32%3A59.3671073Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:40:28.1532692Z" + "CreatedOnDate": "2022-10-25T22:32:58.1703180Z" }, "properties": { "serviceLevel": "Premium", @@ -1305,21 +1415,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:40:29.3403523Z", + "createdAt": "2022-10-25T22:32:59.1392759Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:40:29.3403523Z" + "lastModifiedAt": "2022-10-25T22:32:59.1392759Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77afcc6b-256c-402b-8684-8be8cdb23b76?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/db3918f7-82c9-479c-bf47-cfa33486abbb?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1327,7 +1437,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:41:00 GMT", + "Date": "Tue, 25 Oct 2022 22:32:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1335,17 +1445,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fb98e17-94d1-4723-8dfa-75d8d75ca2dd", - "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114100Z:6fb98e17-94d1-4723-8dfa-75d8d75ca2dd", + "x-ms-correlation-request-id": "fc20f047-86c1-47ac-8bf7-5455f5e2923d", + "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223300Z:fc20f047-86c1-47ac-8bf7-5455f5e2923d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77afcc6b-256c-402b-8684-8be8cdb23b76", - "name": "77afcc6b-256c-402b-8684-8be8cdb23b76", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/db3918f7-82c9-479c-bf47-cfa33486abbb", + "name": "db3918f7-82c9-479c-bf47-cfa33486abbb", "status": "Succeeded", - "startTime": "2022-09-19T11:40:29.5419552Z", - "endTime": "2022-09-19T11:40:32.84747Z", + "startTime": "2022-10-25T22:32:59.3689324Z", + "endTime": "2022-10-25T22:33:00.1346333Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1" @@ -1359,7 +1469,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1367,8 +1477,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:41:01 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A40%3A32.8424503Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:32:59 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A33%3A00.1278781Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1376,22 +1486,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3167c669-b006-4e36-95a8-8fc9f965b09b", - "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114101Z:3167c669-b006-4e36-95a8-8fc9f965b09b", + "x-ms-correlation-request-id": "655b919d-7f69-4710-83a0-cee9a27bb7bf", + "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223300Z:655b919d-7f69-4710-83a0-cee9a27bb7bf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A40%3A32.8424503Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A33%3A00.1278781Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:40:28.1532692Z" + "CreatedOnDate": "2022-10-25T22:32:58.1703180Z" }, "properties": { - "poolId": "6df5feb3-c1da-ac0d-f471-e20b9b4c9a21", + "poolId": "991b8608-5139-9f8b-67da-a062eae36741", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -1404,10 +1514,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:40:29.3403523Z", + "createdAt": "2022-10-25T22:32:59.1392759Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:40:29.3403523Z" + "lastModifiedAt": "2022-10-25T22:32:59.1392759Z" } } }, @@ -1420,7 +1530,7 @@ "Connection": "keep-alive", "Content-Length": "789", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "westus2", @@ -1450,30 +1560,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "1602", + "Content-Length": "1603", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:41:13 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A41%3A12.824094Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:33:13 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A33%3A12.4247866Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c03c893-8dd5-462a-af77-2fa0289b3f92", - "x-ms-ratelimit-remaining-subscription-writes": "1193", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114113Z:7c03c893-8dd5-462a-af77-2fa0289b3f92", + "x-ms-correlation-request-id": "c9868116-c491-4a7d-a99e-23a45b1827cc", + "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223313Z:c9868116-c491-4a7d-a99e-23a45b1827cc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A41%3A12.824094Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A33%3A12.4247866Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { "serviceLevel": "Premium", @@ -1503,21 +1613,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1525,7 +1635,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:41:43 GMT", + "Date": "Tue, 25 Oct 2022 22:33:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1533,16 +1643,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "200dd2ff-0e70-4879-8d93-4cfc6c4ad4cb", - "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114143Z:200dd2ff-0e70-4879-8d93-4cfc6c4ad4cb", + "x-ms-correlation-request-id": "02c7a610-6c8a-4adb-b044-bf8206a3fc48", + "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223313Z:02c7a610-6c8a-4adb-b044-bf8206a3fc48", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb", - "name": "6ebd2873-0d4c-4e85-90c2-4b6544269cdb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", "status": "Creating", - "startTime": "2022-09-19T11:41:12.8210903Z", + "startTime": "2022-10-25T22:33:12.4235679Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1551,13 +1661,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1565,7 +1675,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:42:13 GMT", + "Date": "Tue, 25 Oct 2022 22:33:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1573,16 +1683,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "394c660c-05e3-4b10-a505-d86bd7fb049b", - "x-ms-ratelimit-remaining-subscription-reads": "11986", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114214Z:394c660c-05e3-4b10-a505-d86bd7fb049b", + "x-ms-correlation-request-id": "df41d602-58c4-47dd-9363-6c8ea3302fcb", + "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223343Z:df41d602-58c4-47dd-9363-6c8ea3302fcb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb", - "name": "6ebd2873-0d4c-4e85-90c2-4b6544269cdb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", "status": "Creating", - "startTime": "2022-09-19T11:41:12.8210903Z", + "startTime": "2022-10-25T22:33:12.4235679Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1591,13 +1701,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1605,7 +1715,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:42:44 GMT", + "Date": "Tue, 25 Oct 2022 22:34:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1613,16 +1723,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a0d606e-f43d-4915-a6c7-5d251a9cf323", - "x-ms-ratelimit-remaining-subscription-reads": "11985", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114244Z:1a0d606e-f43d-4915-a6c7-5d251a9cf323", + "x-ms-correlation-request-id": "f2780f72-97d3-450a-a8fe-a6ebc65e82b4", + "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223414Z:f2780f72-97d3-450a-a8fe-a6ebc65e82b4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb", - "name": "6ebd2873-0d4c-4e85-90c2-4b6544269cdb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", "status": "Creating", - "startTime": "2022-09-19T11:41:12.8210903Z", + "startTime": "2022-10-25T22:33:12.4235679Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1631,13 +1741,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1645,7 +1755,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:43:14 GMT", + "Date": "Tue, 25 Oct 2022 22:34:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1653,16 +1763,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a455a0d-791a-4b66-b52f-c5b64b19fbe2", - "x-ms-ratelimit-remaining-subscription-reads": "11984", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114314Z:9a455a0d-791a-4b66-b52f-c5b64b19fbe2", + "x-ms-correlation-request-id": "fb43474e-2c1d-4eca-a5df-f893a1abf657", + "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223444Z:fb43474e-2c1d-4eca-a5df-f893a1abf657", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb", - "name": "6ebd2873-0d4c-4e85-90c2-4b6544269cdb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", "status": "Creating", - "startTime": "2022-09-19T11:41:12.8210903Z", + "startTime": "2022-10-25T22:33:12.4235679Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1671,13 +1781,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1685,7 +1795,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:43:44 GMT", + "Date": "Tue, 25 Oct 2022 22:35:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1693,16 +1803,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7bf35067-91d1-4821-aefe-2ba201b4a00e", - "x-ms-ratelimit-remaining-subscription-reads": "11983", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114344Z:7bf35067-91d1-4821-aefe-2ba201b4a00e", + "x-ms-correlation-request-id": "63c6c457-0101-4461-a406-5d2c2091acc6", + "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223514Z:63c6c457-0101-4461-a406-5d2c2091acc6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb", - "name": "6ebd2873-0d4c-4e85-90c2-4b6544269cdb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", "status": "Creating", - "startTime": "2022-09-19T11:41:12.8210903Z", + "startTime": "2022-10-25T22:33:12.4235679Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1711,13 +1821,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1725,7 +1835,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:44:14 GMT", + "Date": "Tue, 25 Oct 2022 22:35:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1733,16 +1843,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "482f2ba7-28fe-46d3-8261-0929374c686f", - "x-ms-ratelimit-remaining-subscription-reads": "11982", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114415Z:482f2ba7-28fe-46d3-8261-0929374c686f", + "x-ms-correlation-request-id": "3e4c5b46-3382-4069-be74-cf12eca102ba", + "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223544Z:3e4c5b46-3382-4069-be74-cf12eca102ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb", - "name": "6ebd2873-0d4c-4e85-90c2-4b6544269cdb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", "status": "Creating", - "startTime": "2022-09-19T11:41:12.8210903Z", + "startTime": "2022-10-25T22:33:12.4235679Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1751,13 +1861,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1765,7 +1875,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:44:44 GMT", + "Date": "Tue, 25 Oct 2022 22:36:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1773,16 +1883,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfa51a99-aae6-47a5-83bd-504ccb9530fa", - "x-ms-ratelimit-remaining-subscription-reads": "11981", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114445Z:dfa51a99-aae6-47a5-83bd-504ccb9530fa", + "x-ms-correlation-request-id": "1c3a4d3e-c7d1-4f1f-a14c-c4247199879d", + "x-ms-ratelimit-remaining-subscription-reads": "11921", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223615Z:1c3a4d3e-c7d1-4f1f-a14c-c4247199879d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb", - "name": "6ebd2873-0d4c-4e85-90c2-4b6544269cdb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", "status": "Creating", - "startTime": "2022-09-19T11:41:12.8210903Z", + "startTime": "2022-10-25T22:33:12.4235679Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1791,13 +1901,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1805,7 +1915,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:45:15 GMT", + "Date": "Tue, 25 Oct 2022 22:36:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1813,16 +1923,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2aac9f0-29b7-4b83-a000-bd61681c60a1", - "x-ms-ratelimit-remaining-subscription-reads": "11980", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114515Z:e2aac9f0-29b7-4b83-a000-bd61681c60a1", + "x-ms-correlation-request-id": "d9ce5137-84fd-4b26-80f6-b28f4f6a09e2", + "x-ms-ratelimit-remaining-subscription-reads": "11920", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223645Z:d9ce5137-84fd-4b26-80f6-b28f4f6a09e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb", - "name": "6ebd2873-0d4c-4e85-90c2-4b6544269cdb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", "status": "Creating", - "startTime": "2022-09-19T11:41:12.8210903Z", + "startTime": "2022-10-25T22:33:12.4235679Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -1831,13 +1941,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1845,7 +1955,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:45:45 GMT", + "Date": "Tue, 25 Oct 2022 22:37:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1853,17 +1963,97 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea1ebeac-0bcb-4466-a1cd-0e0253bc6722", - "x-ms-ratelimit-remaining-subscription-reads": "11979", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114545Z:ea1ebeac-0bcb-4466-a1cd-0e0253bc6722", + "x-ms-correlation-request-id": "3390d4be-d672-45f6-adfb-ce5946a1ecdf", + "x-ms-ratelimit-remaining-subscription-reads": "11919", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223715Z:3390d4be-d672-45f6-adfb-ce5946a1ecdf", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", + "status": "Creating", + "startTime": "2022-10-25T22:33:12.4235679Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:37:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d265cabc-64de-46bc-992d-6999c30c1156", + "x-ms-ratelimit-remaining-subscription-reads": "11918", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223746Z:d265cabc-64de-46bc-992d-6999c30c1156", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", + "status": "Creating", + "startTime": "2022-10-25T22:33:12.4235679Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:38:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "63b0a7d5-adfa-4c07-b294-f096d9509f2f", + "x-ms-ratelimit-remaining-subscription-reads": "11917", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223816Z:63b0a7d5-adfa-4c07-b294-f096d9509f2f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6ebd2873-0d4c-4e85-90c2-4b6544269cdb", - "name": "6ebd2873-0d4c-4e85-90c2-4b6544269cdb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc71152e-b968-41c8-a7e2-570d526b00fd", + "name": "dc71152e-b968-41c8-a7e2-570d526b00fd", "status": "Succeeded", - "startTime": "2022-09-19T11:41:12.8210903Z", - "endTime": "2022-09-19T11:45:19.8202549Z", + "startTime": "2022-10-25T22:33:12.4235679Z", + "endTime": "2022-10-25T22:37:58.426886Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" @@ -1877,7 +2067,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1885,8 +2075,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:45:45 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A45%3A19.813405Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:38:17 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A37%3A58.4159225Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -1894,22 +2084,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68ce98e7-66e8-490b-b210-bdb4881f0ca5", - "x-ms-ratelimit-remaining-subscription-reads": "11978", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114546Z:68ce98e7-66e8-490b-b210-bdb4881f0ca5", + "x-ms-correlation-request-id": "e91c428c-f377-491c-a3f0-e270bff68fa8", + "x-ms-ratelimit-remaining-subscription-reads": "11916", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223817Z:e91c428c-f377-491c-a3f0-e270bff68fa8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A45%3A19.813405Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A37%3A58.4159225Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -1937,7 +2127,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -1952,8 +2142,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -1973,10 +2163,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -1989,37 +2179,37 @@ "Connection": "keep-alive", "Content-Length": "23", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "eastus2" }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/be13d436-ff1b-4fd2-8ce8-28e584d2f238?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/d647338a-a492-420b-8ff1-1d1be39f9d3f?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "714", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:45:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A45%3A48.2511009Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:38:20 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A38%3A19.8026047Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "351c2c9b-f55b-4d63-8e0b-91fff8cc450d", - "x-ms-ratelimit-remaining-subscription-writes": "1192", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114549Z:351c2c9b-f55b-4d63-8e0b-91fff8cc450d", + "x-ms-correlation-request-id": "be1115e7-bd89-4bd4-afb7-a6f43a30ae16", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223820Z:be1115e7-bd89-4bd4-afb7-a6f43a30ae16", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A45%3A48.2511009Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A38%3A19.8026047Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:45:46.6251215Z" + "CreatedOnDate": "2022-10-25T22:38:17.7135428Z" }, "properties": { "provisioningState": "Creating" @@ -2027,21 +2217,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:45:47.6471062Z", + "createdAt": "2022-10-25T22:38:19.1421279Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:45:47.6471062Z" + "lastModifiedAt": "2022-10-25T22:38:19.1421279Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/be13d436-ff1b-4fd2-8ce8-28e584d2f238?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/d647338a-a492-420b-8ff1-1d1be39f9d3f?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2049,7 +2239,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:46:18 GMT", + "Date": "Tue, 25 Oct 2022 22:38:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2057,17 +2247,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9edfc98e-b4ff-4ad8-98b4-4fe438ea298b", - "x-ms-ratelimit-remaining-subscription-reads": "11977", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114619Z:9edfc98e-b4ff-4ad8-98b4-4fe438ea298b", + "x-ms-correlation-request-id": "86883541-5516-48f4-8edd-aab05e4917c7", + "x-ms-ratelimit-remaining-subscription-reads": "11915", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223820Z:86883541-5516-48f4-8edd-aab05e4917c7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/be13d436-ff1b-4fd2-8ce8-28e584d2f238", - "name": "be13d436-ff1b-4fd2-8ce8-28e584d2f238", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/d647338a-a492-420b-8ff1-1d1be39f9d3f", + "name": "d647338a-a492-420b-8ff1-1d1be39f9d3f", "status": "Succeeded", - "startTime": "2022-09-19T11:45:48.2565009Z", - "endTime": "2022-09-19T11:45:48.3190394Z", + "startTime": "2022-10-25T22:38:19.8082879Z", + "endTime": "2022-10-25T22:38:19.8552193Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b" @@ -2081,7 +2271,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2089,8 +2279,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:46:18 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A45%3A48.3208667Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:38:20 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A38%3A19.8523437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2098,19 +2288,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6603f85-e643-4854-bdc0-871d1139f6de", - "x-ms-ratelimit-remaining-subscription-reads": "11976", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114619Z:a6603f85-e643-4854-bdc0-871d1139f6de", + "x-ms-correlation-request-id": "ee9d20b0-22ab-4987-9674-7a6b4f19627a", + "x-ms-ratelimit-remaining-subscription-reads": "11914", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223821Z:ee9d20b0-22ab-4987-9674-7a6b4f19627a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A45%3A48.3208667Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A38%3A19.8523437Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:45:46.6251215Z" + "CreatedOnDate": "2022-10-25T22:38:17.7135428Z" }, "properties": { "activeDirectories": [ @@ -2139,10 +2329,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:45:47.6471062Z", + "createdAt": "2022-10-25T22:38:19.1421279Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:45:47.6471062Z" + "lastModifiedAt": "2022-10-25T22:38:19.1421279Z" } } }, @@ -2155,7 +2345,7 @@ "Connection": "keep-alive", "Content-Length": "138", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "eastus2", @@ -2168,30 +2358,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/87445de6-5799-40d4-a861-ef841f9436c5?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/afbe0f2a-9152-490f-8a07-9f68e54e60dd?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "930", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:46:20 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A46%3A20.8579084Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:38:22 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A38%3A22.2698209Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93ab6c5f-682d-45c7-aab7-20f46b154054", - "x-ms-ratelimit-remaining-subscription-writes": "1191", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114621Z:93ab6c5f-682d-45c7-aab7-20f46b154054", + "x-ms-correlation-request-id": "46eebf75-671d-402b-ab8f-c879b9852600", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223822Z:46eebf75-671d-402b-ab8f-c879b9852600", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A46%3A20.8579084Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A38%3A22.2698209Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:46:19.9978489Z" + "CreatedOnDate": "2022-10-25T22:38:21.4661099Z" }, "properties": { "serviceLevel": "Premium", @@ -2205,21 +2395,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:46:20.6902839Z", + "createdAt": "2022-10-25T22:38:22.1435356Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:46:20.6902839Z" + "lastModifiedAt": "2022-10-25T22:38:22.1435356Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/87445de6-5799-40d4-a861-ef841f9436c5?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/afbe0f2a-9152-490f-8a07-9f68e54e60dd?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2227,7 +2417,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:46:50 GMT", + "Date": "Tue, 25 Oct 2022 22:38:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2235,17 +2425,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78486000-72d5-4346-be1b-1cb99da275ba", - "x-ms-ratelimit-remaining-subscription-reads": "11975", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114651Z:78486000-72d5-4346-be1b-1cb99da275ba", + "x-ms-correlation-request-id": "50b88c8d-1c84-47c3-9364-514361061384", + "x-ms-ratelimit-remaining-subscription-reads": "11913", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223823Z:50b88c8d-1c84-47c3-9364-514361061384", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/87445de6-5799-40d4-a861-ef841f9436c5", - "name": "87445de6-5799-40d4-a861-ef841f9436c5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/afbe0f2a-9152-490f-8a07-9f68e54e60dd", + "name": "afbe0f2a-9152-490f-8a07-9f68e54e60dd", "status": "Succeeded", - "startTime": "2022-09-19T11:46:20.8585986Z", - "endTime": "2022-09-19T11:46:21.717933Z", + "startTime": "2022-10-25T22:38:22.277199Z", + "endTime": "2022-10-25T22:38:22.8803825Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2" @@ -2259,7 +2449,7 @@ "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2267,8 +2457,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:46:50 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A46%3A21.7131283Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:38:22 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A38%3A22.8761065Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2276,22 +2466,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ca7e820-fcc6-4ce2-bbf8-d38d3ea1dd6f", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114651Z:9ca7e820-fcc6-4ce2-bbf8-d38d3ea1dd6f", + "x-ms-correlation-request-id": "7f3b9001-2989-4d0e-936a-00799025be2c", + "x-ms-ratelimit-remaining-subscription-reads": "11912", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223823Z:7f3b9001-2989-4d0e-936a-00799025be2c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A46%3A21.7131283Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A38%3A22.8761065Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:46:19.9978489Z" + "CreatedOnDate": "2022-10-25T22:38:21.4661099Z" }, "properties": { - "poolId": "a34fac4d-8c48-1ba1-30a0-b412ae03d210", + "poolId": "8905b6d9-5b7d-b789-987b-70bbe780ff92", "serviceLevel": "Premium", "size": 4398046511104, "qosType": "Auto", @@ -2304,10 +2494,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:46:20.6902839Z", + "createdAt": "2022-10-25T22:38:22.1435356Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:46:20.6902839Z" + "lastModifiedAt": "2022-10-25T22:38:22.1435356Z" } } }, @@ -2320,7 +2510,7 @@ "Connection": "keep-alive", "Content-Length": "1213", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "location": "eastus2", @@ -2359,30 +2549,30 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "2017", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:47:06 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A47%3A05.8005373Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:38:35 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A38%3A35.8872931Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65070696-67dd-48f2-8b2f-0e7b72f09bb5", - "x-ms-ratelimit-remaining-subscription-writes": "1190", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114706Z:65070696-67dd-48f2-8b2f-0e7b72f09bb5", + "x-ms-correlation-request-id": "37c8b683-56cb-41b7-ab5a-53516748c0d9", + "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223836Z:37c8b683-56cb-41b7-ab5a-53516748c0d9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A47%3A05.8005373Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A38%3A35.8872931Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", @@ -2421,21 +2611,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2443,7 +2633,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:47:36 GMT", + "Date": "Tue, 25 Oct 2022 22:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2451,16 +2641,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12b62653-6c4b-4201-b005-6ea538843719", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114736Z:12b62653-6c4b-4201-b005-6ea538843719", + "x-ms-correlation-request-id": "19a204b6-8aea-4c5b-939e-8a99acf8722a", + "x-ms-ratelimit-remaining-subscription-reads": "11911", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223837Z:19a204b6-8aea-4c5b-939e-8a99acf8722a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0", - "name": "58bbc283-33ac-470e-9af2-49ccbd7dd9a0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "name": "6ed15951-d540-41ef-9e3b-ec2b9d3e1584", "status": "Creating", - "startTime": "2022-09-19T11:47:05.8065264Z", + "startTime": "2022-10-25T22:38:35.9117049Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2469,13 +2659,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2483,7 +2673,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:48:06 GMT", + "Date": "Tue, 25 Oct 2022 22:39:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2491,16 +2681,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31bf3ad8-6e56-4710-a46e-19ca02ce2269", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114806Z:31bf3ad8-6e56-4710-a46e-19ca02ce2269", + "x-ms-correlation-request-id": "b7eb134f-81ba-49f4-96a7-1ba5091bb246", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223907Z:b7eb134f-81ba-49f4-96a7-1ba5091bb246", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0", - "name": "58bbc283-33ac-470e-9af2-49ccbd7dd9a0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "name": "6ed15951-d540-41ef-9e3b-ec2b9d3e1584", "status": "Creating", - "startTime": "2022-09-19T11:47:05.8065264Z", + "startTime": "2022-10-25T22:38:35.9117049Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2509,13 +2699,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2523,7 +2713,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:48:36 GMT", + "Date": "Tue, 25 Oct 2022 22:39:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2531,16 +2721,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ee10af0-8698-4834-9115-b17ba93c2fa3", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114837Z:7ee10af0-8698-4834-9115-b17ba93c2fa3", + "x-ms-correlation-request-id": "e2af4c8a-5215-4e64-9074-08680ce0ce98", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T223937Z:e2af4c8a-5215-4e64-9074-08680ce0ce98", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0", - "name": "58bbc283-33ac-470e-9af2-49ccbd7dd9a0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "name": "6ed15951-d540-41ef-9e3b-ec2b9d3e1584", "status": "Creating", - "startTime": "2022-09-19T11:47:05.8065264Z", + "startTime": "2022-10-25T22:38:35.9117049Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2549,13 +2739,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2563,7 +2753,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:49:07 GMT", + "Date": "Tue, 25 Oct 2022 22:40:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2571,16 +2761,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b9f5399-3d73-4b43-bb79-f7e1973c7223", - "x-ms-ratelimit-remaining-subscription-reads": "11970", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114907Z:7b9f5399-3d73-4b43-bb79-f7e1973c7223", + "x-ms-correlation-request-id": "4c9db8a9-1b9d-462d-8585-687195528c32", + "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224007Z:4c9db8a9-1b9d-462d-8585-687195528c32", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0", - "name": "58bbc283-33ac-470e-9af2-49ccbd7dd9a0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "name": "6ed15951-d540-41ef-9e3b-ec2b9d3e1584", "status": "Creating", - "startTime": "2022-09-19T11:47:05.8065264Z", + "startTime": "2022-10-25T22:38:35.9117049Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2589,13 +2779,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2603,7 +2793,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:49:37 GMT", + "Date": "Tue, 25 Oct 2022 22:40:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2611,16 +2801,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "909e14aa-3ee3-46dc-8133-d2bf77f26407", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-routing-request-id": "WESTEUROPE:20220919T114937Z:909e14aa-3ee3-46dc-8133-d2bf77f26407", + "x-ms-correlation-request-id": "a822aecb-9ffa-4126-a5d5-f9755622954e", + "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224037Z:a822aecb-9ffa-4126-a5d5-f9755622954e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0", - "name": "58bbc283-33ac-470e-9af2-49ccbd7dd9a0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "name": "6ed15951-d540-41ef-9e3b-ec2b9d3e1584", "status": "Creating", - "startTime": "2022-09-19T11:47:05.8065264Z", + "startTime": "2022-10-25T22:38:35.9117049Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2629,13 +2819,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2643,7 +2833,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:50:07 GMT", + "Date": "Tue, 25 Oct 2022 22:41:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2651,16 +2841,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "721cfb64-c09c-46e0-9378-d1209c7e7116", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115007Z:721cfb64-c09c-46e0-9378-d1209c7e7116", + "x-ms-correlation-request-id": "70ac5ca7-8a38-4dde-8e68-d0358700cf68", + "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224108Z:70ac5ca7-8a38-4dde-8e68-d0358700cf68", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0", - "name": "58bbc283-33ac-470e-9af2-49ccbd7dd9a0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "name": "6ed15951-d540-41ef-9e3b-ec2b9d3e1584", "status": "Creating", - "startTime": "2022-09-19T11:47:05.8065264Z", + "startTime": "2022-10-25T22:38:35.9117049Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2669,13 +2859,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2683,7 +2873,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:50:38 GMT", + "Date": "Tue, 25 Oct 2022 22:41:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2691,16 +2881,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "301df056-808d-40f2-a77c-c08318b54f42", - "x-ms-ratelimit-remaining-subscription-reads": "11967", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115038Z:301df056-808d-40f2-a77c-c08318b54f42", + "x-ms-correlation-request-id": "15297623-b05d-4c22-a444-f3a39633ab8e", + "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224138Z:15297623-b05d-4c22-a444-f3a39633ab8e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0", - "name": "58bbc283-33ac-470e-9af2-49ccbd7dd9a0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "name": "6ed15951-d540-41ef-9e3b-ec2b9d3e1584", "status": "Creating", - "startTime": "2022-09-19T11:47:05.8065264Z", + "startTime": "2022-10-25T22:38:35.9117049Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -2709,13 +2899,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2723,7 +2913,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:08 GMT", + "Date": "Tue, 25 Oct 2022 22:42:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2731,31 +2921,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9fa925e9-0030-438e-97e4-0a8c787931b6", - "x-ms-ratelimit-remaining-subscription-reads": "11966", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115108Z:9fa925e9-0030-438e-97e4-0a8c787931b6", + "x-ms-correlation-request-id": "cf8195b1-ecaf-440c-950c-c3cd1b895ac0", + "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224208Z:cf8195b1-ecaf-440c-950c-c3cd1b895ac0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/58bbc283-33ac-470e-9af2-49ccbd7dd9a0", - "name": "58bbc283-33ac-470e-9af2-49ccbd7dd9a0", - "status": "Succeeded", - "startTime": "2022-09-19T11:47:05.8065264Z", - "endTime": "2022-09-19T11:50:58.5466517Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "name": "6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "status": "Creating", + "startTime": "2022-10-25T22:38:35.9117049Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2763,8 +2953,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:08 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A50%3A58.5459709Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:42:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2772,34 +2961,115 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76b5d7f3-9b2e-475a-a5b1-41c9edae0537", - "x-ms-ratelimit-remaining-subscription-reads": "11965", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115108Z:76b5d7f3-9b2e-475a-a5b1-41c9edae0537", + "x-ms-correlation-request-id": "f1cb016b-1619-4aca-b3c0-7db9f8a619a9", + "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224238Z:f1cb016b-1619-4aca-b3c0-7db9f8a619a9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A50%3A58.5459709Z\u0027\u0022", - "location": "eastus2", - "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" - }, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "name": "6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "status": "Creating", + "startTime": "2022-10-25T22:38:35.9117049Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, "properties": { - "volumeType": "DataProtection", - "dataProtection": { - "replication": { - "endpointType": "Dst", - "replicationSchedule": "_10minutely", - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" - } - }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "serviceLevel": "Premium", - "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", - "usageThreshold": 107374182400, - "exportPolicy": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:43:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "db5428f2-ce36-4e54-98f8-ea2de7654bef", + "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224308Z:db5428f2-ce36-4e54-98f8-ea2de7654bef", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "name": "6ed15951-d540-41ef-9e3b-ec2b9d3e1584", + "status": "Succeeded", + "startTime": "2022-10-25T22:38:35.9117049Z", + "endTime": "2022-10-25T22:43:08.2528341Z", + "percentComplete": 100.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:43:09 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A08.2457697Z\u0027\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1f131734-e47e-4fda-817d-c41318c5044b", + "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224309Z:1f131734-e47e-4fda-817d-c41318c5044b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A08.2457697Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "DataProtection", + "dataProtection": { + "replication": { + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { "rules": [ { "ruleIndex": 1, @@ -2823,7 +3093,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -2835,8 +3105,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -2851,10 +3121,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -2867,26 +3137,26 @@ "Connection": "keep-alive", "Content-Length": "268", "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": { "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" }, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0563f49-6b78-460b-a4c3-736bc005bb7f?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f416a36-956d-493c-8b7b-53c3db8d97ae?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:51:39 GMT", + "Date": "Tue, 25 Oct 2022 22:43:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0563f49-6b78-460b-a4c3-736bc005bb7f?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f416a36-956d-493c-8b7b-53c3db8d97ae?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03be0782-78ae-4649-84c5-a67931c999d9", - "x-ms-ratelimit-remaining-subscription-writes": "1199", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115140Z:03be0782-78ae-4649-84c5-a67931c999d9", + "x-ms-correlation-request-id": "f2cd9147-27de-400a-b169-0087486eb0ba", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224341Z:f2cd9147-27de-400a-b169-0087486eb0ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": null @@ -2898,7 +3168,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2906,8 +3176,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:40 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:41 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -2915,22 +3185,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fbd9aec4-4e0f-47f5-b84f-e58f417f572e", - "x-ms-ratelimit-remaining-subscription-reads": "11964", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115140Z:fbd9aec4-4e0f-47f5-b84f-e58f417f572e", + "x-ms-correlation-request-id": "3bdf3d8a-f20c-4d21-ac8c-2c21a660a03e", + "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224341Z:3bdf3d8a-f20c-4d21-ac8c-2c21a660a03e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -2958,7 +3228,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -2973,8 +3243,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -2994,10 +3264,50 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f416a36-956d-493c-8b7b-53c3db8d97ae?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:43:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c1b5d623-1d6c-4903-8098-bee00d1717ff", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224341Z:c1b5d623-1d6c-4903-8098-bee00d1717ff", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f416a36-956d-493c-8b7b-53c3db8d97ae", + "name": "0f416a36-956d-493c-8b7b-53c3db8d97ae", + "status": "AuthorizeReplication", + "startTime": "2022-10-25T22:43:40.951104Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" } } }, @@ -3008,7 +3318,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3016,8 +3326,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:40 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A50%3A58.5459709Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:41 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A08.2457697Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3025,19 +3335,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "638e76c3-87fa-4d7a-8d9f-24f652b92bc5", - "x-ms-ratelimit-remaining-subscription-reads": "11963", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115141Z:638e76c3-87fa-4d7a-8d9f-24f652b92bc5", + "x-ms-correlation-request-id": "d11520f6-7c52-451d-8b7b-496aa285def2", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224342Z:d11520f6-7c52-451d-8b7b-496aa285def2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A50%3A58.5459709Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A08.2457697Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", @@ -3048,7 +3358,7 @@ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -3076,7 +3386,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -3088,8 +3398,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -3104,10 +3414,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -3118,7 +3428,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3126,8 +3436,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:41 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:45 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3135,22 +3445,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa777de1-be83-4d47-a578-4aef402f70ba", - "x-ms-ratelimit-remaining-subscription-reads": "11962", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115142Z:fa777de1-be83-4d47-a578-4aef402f70ba", + "x-ms-correlation-request-id": "f683957f-e7c4-4cda-920f-0cd33e1ca478", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224345Z:f683957f-e7c4-4cda-920f-0cd33e1ca478", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -3178,7 +3488,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -3193,8 +3503,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -3214,10 +3524,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -3228,7 +3538,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3236,8 +3546,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:42 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A50%3A58.5459709Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:46 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A44.1999192Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3245,19 +3555,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c28d3b4b-e83e-43f0-b219-8abe13d24285", - "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115142Z:c28d3b4b-e83e-43f0-b219-8abe13d24285", + "x-ms-correlation-request-id": "e40a946a-51ec-4148-b9c8-e664ded734d4", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224347Z:e40a946a-51ec-4148-b9c8-e664ded734d4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A50%3A58.5459709Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A44.1999192Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", @@ -3268,7 +3578,7 @@ "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -3296,7 +3606,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -3308,8 +3618,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -3319,15 +3629,15 @@ "maximumNumberOfFiles": 100000000, "smbNonBrowsable": "Disabled", "smbAccessBasedEnumeration": "Disabled", - "provisioningState": "Succeeded" + "provisioningState": "ActivateReplication" }, "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -3338,7 +3648,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3346,8 +3656,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:43 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:48 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3355,22 +3665,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "303f8c63-6317-430f-b34d-15783c8de687", - "x-ms-ratelimit-remaining-subscription-reads": "11960", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115144Z:303f8c63-6317-430f-b34d-15783c8de687", + "x-ms-correlation-request-id": "e43f9ee3-4052-4f0b-885b-cac194c41244", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224348Z:e43f9ee3-4052-4f0b-885b-cac194c41244", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -3398,7 +3708,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -3413,8 +3723,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -3434,10 +3744,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -3448,7 +3758,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3456,8 +3766,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:43 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A44.0989556Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:49 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3465,30 +3775,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98b4b03a-4abe-40b2-8762-85e125c4b37f", - "x-ms-ratelimit-remaining-subscription-reads": "11959", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115144Z:98b4b03a-4abe-40b2-8762-85e125c4b37f", + "x-ms-correlation-request-id": "1562103e-dfe3-4fa3-bc76-8098681fdb10", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224349Z:1562103e-dfe3-4fa3-bc76-8098681fdb10", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A44.0989556Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -3516,7 +3828,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -3528,8 +3840,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -3539,15 +3851,15 @@ "maximumNumberOfFiles": 100000000, "smbNonBrowsable": "Disabled", "smbAccessBasedEnumeration": "Disabled", - "provisioningState": "ActivateReplication" + "provisioningState": "Succeeded" }, "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -3558,7 +3870,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3566,8 +3878,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:45 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:50 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3575,22 +3887,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e58cdfc-9501-4a15-8994-02d2adfb41ed", - "x-ms-ratelimit-remaining-subscription-reads": "11958", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115145Z:0e58cdfc-9501-4a15-8994-02d2adfb41ed", + "x-ms-correlation-request-id": "4c734e83-042f-446d-88b0-8cbc34e8834c", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224350Z:4c734e83-042f-446d-88b0-8cbc34e8834c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -3618,7 +3930,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -3633,8 +3945,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -3654,10 +3966,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -3668,7 +3980,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3676,8 +3988,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:45 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A44.0989556Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:50 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3685,30 +3997,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b225b180-6714-4f5b-88ff-bea589850a97", - "x-ms-ratelimit-remaining-subscription-reads": "11957", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115146Z:b225b180-6714-4f5b-88ff-bea589850a97", + "x-ms-correlation-request-id": "7a6269ca-6200-4af0-aa21-51b2d84206d5", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224351Z:7a6269ca-6200-4af0-aa21-51b2d84206d5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A44.0989556Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -3736,7 +4050,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -3748,8 +4062,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -3759,15 +4073,15 @@ "maximumNumberOfFiles": 100000000, "smbNonBrowsable": "Disabled", "smbAccessBasedEnumeration": "Disabled", - "provisioningState": "ActivateReplication" + "provisioningState": "Succeeded" }, "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -3778,7 +4092,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3786,8 +4100,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:47 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:52 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3795,22 +4109,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4477fe58-00de-4c35-8887-74b830333ae5", - "x-ms-ratelimit-remaining-subscription-reads": "11956", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115147Z:4477fe58-00de-4c35-8887-74b830333ae5", + "x-ms-correlation-request-id": "82409d8a-4326-4df5-b7e5-48ca719e7d1e", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224352Z:82409d8a-4326-4df5-b7e5-48ca719e7d1e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -3838,7 +4152,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -3853,8 +4167,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -3874,10 +4188,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -3888,7 +4202,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3896,8 +4210,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:47 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A44.0989556Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:52 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -3905,30 +4219,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2abc18d5-051f-49e3-9a63-cd872b9aef8d", - "x-ms-ratelimit-remaining-subscription-reads": "11955", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115147Z:2abc18d5-051f-49e3-9a63-cd872b9aef8d", + "x-ms-correlation-request-id": "d375865f-2694-4610-870e-11884ae35f80", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224352Z:d375865f-2694-4610-870e-11884ae35f80", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A44.0989556Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -3956,7 +4272,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -3968,8 +4284,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -3979,15 +4295,15 @@ "maximumNumberOfFiles": 100000000, "smbNonBrowsable": "Disabled", "smbAccessBasedEnumeration": "Disabled", - "provisioningState": "ActivateReplication" + "provisioningState": "Succeeded" }, "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -3998,7 +4314,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4006,8 +4322,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:53 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4015,22 +4331,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18bd3598-fae2-4526-8ce5-b3ba327e5b1e", - "x-ms-ratelimit-remaining-subscription-reads": "11954", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115149Z:18bd3598-fae2-4526-8ce5-b3ba327e5b1e", + "x-ms-correlation-request-id": "722f7e80-e3a8-4134-8b65-0e48ee2b2d90", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224354Z:722f7e80-e3a8-4134-8b65-0e48ee2b2d90", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -4058,7 +4374,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -4073,8 +4389,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -4094,10 +4410,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -4108,7 +4424,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4116,8 +4432,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:54 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4125,32 +4441,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1941b23-a14f-4c73-b133-245a13a7bba1", - "x-ms-ratelimit-remaining-subscription-reads": "11953", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115149Z:b1941b23-a14f-4c73-b133-245a13a7bba1", + "x-ms-correlation-request-id": "54d2d71e-4653-4471-8610-ff86339e6ed0", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224354Z:54d2d71e-4653-4471-8610-ff86339e6ed0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -4178,7 +4494,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -4190,8 +4506,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -4206,10 +4522,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -4220,7 +4536,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4228,8 +4544,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:50 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:55 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4237,22 +4553,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34dfbfca-a874-4c67-9abb-0e38aceeee9e", - "x-ms-ratelimit-remaining-subscription-reads": "11952", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115150Z:34dfbfca-a874-4c67-9abb-0e38aceeee9e", + "x-ms-correlation-request-id": "7503eaca-7251-4062-aa79-081dc2613f70", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224356Z:7503eaca-7251-4062-aa79-081dc2613f70", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -4280,7 +4596,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -4295,8 +4611,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -4316,10 +4632,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -4330,7 +4646,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4338,8 +4654,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:50 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:55 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4347,32 +4663,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88b9fbb4-e72d-4063-9ce9-616ef46a6a00", - "x-ms-ratelimit-remaining-subscription-reads": "11951", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115151Z:88b9fbb4-e72d-4063-9ce9-616ef46a6a00", + "x-ms-correlation-request-id": "dd69a8a0-38d8-4813-ac69-5edeb3723f4f", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224356Z:dd69a8a0-38d8-4813-ac69-5edeb3723f4f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -4400,7 +4716,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -4412,8 +4728,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -4428,10 +4744,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -4442,7 +4758,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4450,8 +4766,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:52 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:57 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4459,22 +4775,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4729dec-904e-4874-83b6-3b9247876d3f", - "x-ms-ratelimit-remaining-subscription-reads": "11950", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115152Z:e4729dec-904e-4874-83b6-3b9247876d3f", + "x-ms-correlation-request-id": "66125958-dcdf-4bfb-92c3-5f0657c98289", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224357Z:66125958-dcdf-4bfb-92c3-5f0657c98289", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -4502,7 +4818,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -4517,8 +4833,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -4538,10 +4854,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -4552,7 +4868,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4560,8 +4876,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:52 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:57 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4569,32 +4885,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "041230d2-a29a-44dd-96f2-f0c337bf033d", - "x-ms-ratelimit-remaining-subscription-reads": "11949", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115153Z:041230d2-a29a-44dd-96f2-f0c337bf033d", + "x-ms-correlation-request-id": "ad42bbfc-1e40-49ee-a9d9-6ce03037bccd", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224358Z:ad42bbfc-1e40-49ee-a9d9-6ce03037bccd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -4622,7 +4938,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -4634,8 +4950,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -4650,10 +4966,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -4664,7 +4980,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4672,8 +4988,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:53 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:58 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4681,22 +4997,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b2bb47e-60c7-433a-8ff3-36f9ceb66de8", - "x-ms-ratelimit-remaining-subscription-reads": "11948", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115154Z:7b2bb47e-60c7-433a-8ff3-36f9ceb66de8", + "x-ms-correlation-request-id": "0304dc93-792c-499c-a20e-c230373e124b", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224359Z:0304dc93-792c-499c-a20e-c230373e124b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -4724,7 +5040,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -4739,8 +5055,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -4760,10 +5076,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -4774,7 +5090,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4782,8 +5098,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:54 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:43:59 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4791,32 +5107,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b1adaea-c850-4e43-8c51-a90676264610", - "x-ms-ratelimit-remaining-subscription-reads": "11947", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115154Z:1b1adaea-c850-4e43-8c51-a90676264610", + "x-ms-correlation-request-id": "b4588bc7-dc62-445b-89bb-09275cdc483c", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224359Z:b4588bc7-dc62-445b-89bb-09275cdc483c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -4844,7 +5160,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -4856,8 +5172,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -4872,10 +5188,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -4886,7 +5202,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -4894,8 +5210,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:55 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:00 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -4903,22 +5219,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a6bb476-8d30-471c-b797-f5b9e2748752", - "x-ms-ratelimit-remaining-subscription-reads": "11946", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115156Z:4a6bb476-8d30-471c-b797-f5b9e2748752", + "x-ms-correlation-request-id": "6f3abd25-fe66-4f71-ad0d-1e6e4419075c", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224401Z:6f3abd25-fe66-4f71-ad0d-1e6e4419075c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -4946,7 +5262,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -4961,8 +5277,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -4982,10 +5298,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -4996,7 +5312,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5004,8 +5320,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:55 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:00 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5013,32 +5329,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45fd2229-7c36-4bc7-a706-10dc18909926", - "x-ms-ratelimit-remaining-subscription-reads": "11945", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115156Z:45fd2229-7c36-4bc7-a706-10dc18909926", + "x-ms-correlation-request-id": "8876a111-a536-4719-83a2-7beeafd14265", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224401Z:8876a111-a536-4719-83a2-7beeafd14265", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -5066,7 +5382,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -5078,8 +5394,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -5094,10 +5410,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -5108,7 +5424,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5116,8 +5432,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:57 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:02 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5125,22 +5441,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca3f14af-8208-4db1-9063-03af51975c02", - "x-ms-ratelimit-remaining-subscription-reads": "11944", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115157Z:ca3f14af-8208-4db1-9063-03af51975c02", + "x-ms-correlation-request-id": "62946b37-9601-4e40-a2c0-849899f399d2", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224402Z:62946b37-9601-4e40-a2c0-849899f399d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -5168,7 +5484,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -5183,8 +5499,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -5204,10 +5520,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -5218,7 +5534,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5226,8 +5542,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:58 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:02 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5235,32 +5551,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58f3dfb2-24f0-44fa-a9e5-e9bf4640f592", - "x-ms-ratelimit-remaining-subscription-reads": "11943", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115158Z:58f3dfb2-24f0-44fa-a9e5-e9bf4640f592", + "x-ms-correlation-request-id": "2603d7c7-ab17-4651-88de-6d24cdae787a", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224403Z:2603d7c7-ab17-4651-88de-6d24cdae787a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -5288,7 +5604,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -5300,8 +5616,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -5316,10 +5632,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -5330,7 +5646,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5338,8 +5654,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:59 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:03 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5347,22 +5663,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "301cd8f0-ece3-4536-86db-6ff65b4bed4a", - "x-ms-ratelimit-remaining-subscription-reads": "11942", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115200Z:301cd8f0-ece3-4536-86db-6ff65b4bed4a", + "x-ms-correlation-request-id": "c001ff41-646a-4b56-91ce-3b20f8764461", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224404Z:c001ff41-646a-4b56-91ce-3b20f8764461", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -5390,7 +5706,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -5405,8 +5721,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -5426,10 +5742,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -5440,7 +5756,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5448,8 +5764,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:51:59 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:04 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5457,32 +5773,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0327e4f5-96fe-4853-9c0a-c5e375a9f36a", - "x-ms-ratelimit-remaining-subscription-reads": "11941", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115200Z:0327e4f5-96fe-4853-9c0a-c5e375a9f36a", + "x-ms-correlation-request-id": "f3f11fbf-6480-4d3f-a0b7-937ad2e0a917", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224404Z:f3f11fbf-6480-4d3f-a0b7-937ad2e0a917", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -5510,7 +5826,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -5522,8 +5838,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -5538,10 +5854,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -5552,7 +5868,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5560,8 +5876,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:01 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:05 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5569,22 +5885,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a973c24-556d-496a-828c-12da0f6093d6", - "x-ms-ratelimit-remaining-subscription-reads": "11940", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115201Z:2a973c24-556d-496a-828c-12da0f6093d6", + "x-ms-correlation-request-id": "06cebe2e-98a6-42b3-9aec-512a47193ab8", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224406Z:06cebe2e-98a6-42b3-9aec-512a47193ab8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -5612,7 +5928,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -5627,8 +5943,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -5648,10 +5964,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -5662,7 +5978,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5670,8 +5986,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:01 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:05 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5679,32 +5995,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4278a71-c4df-4b7d-8559-63e6900476a2", - "x-ms-ratelimit-remaining-subscription-reads": "11939", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115202Z:e4278a71-c4df-4b7d-8559-63e6900476a2", + "x-ms-correlation-request-id": "1db46f18-f71e-41f0-a527-e8cb6798aa79", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224406Z:1db46f18-f71e-41f0-a527-e8cb6798aa79", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -5732,7 +6048,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -5744,8 +6060,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -5760,10 +6076,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -5774,7 +6090,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5782,8 +6098,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:02 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:07 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5791,22 +6107,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eac587fe-b523-4ae1-bc1f-384fa4096a16", - "x-ms-ratelimit-remaining-subscription-reads": "11938", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115203Z:eac587fe-b523-4ae1-bc1f-384fa4096a16", + "x-ms-correlation-request-id": "94ef9ad5-c2c7-4049-955d-02178a677d59", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224408Z:94ef9ad5-c2c7-4049-955d-02178a677d59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -5834,7 +6150,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -5849,8 +6165,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -5870,10 +6186,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -5884,7 +6200,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -5892,8 +6208,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:03 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:07 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -5901,32 +6217,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed836ba6-b09d-4aa5-a364-f2268bceb998", - "x-ms-ratelimit-remaining-subscription-reads": "11937", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115203Z:ed836ba6-b09d-4aa5-a364-f2268bceb998", + "x-ms-correlation-request-id": "5281111a-cbef-46c3-aa9d-687dc1206965", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224408Z:5281111a-cbef-46c3-aa9d-687dc1206965", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -5954,7 +6270,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -5966,8 +6282,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -5982,10 +6298,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -5996,7 +6312,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6004,8 +6320,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:04 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:09 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6013,22 +6329,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb538e4d-d1ff-4d5a-a296-11803e9244cd", - "x-ms-ratelimit-remaining-subscription-reads": "11936", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115205Z:cb538e4d-d1ff-4d5a-a296-11803e9244cd", + "x-ms-correlation-request-id": "a1840903-b229-4bf9-9cf9-d6cb1d6da66f", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224409Z:a1840903-b229-4bf9-9cf9-d6cb1d6da66f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -6056,7 +6372,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -6071,8 +6387,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -6092,10 +6408,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -6106,7 +6422,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6114,8 +6430,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:04 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:09 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6123,32 +6439,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d115c0f6-be86-4db4-b41c-d443630765e7", - "x-ms-ratelimit-remaining-subscription-reads": "11935", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115205Z:d115c0f6-be86-4db4-b41c-d443630765e7", + "x-ms-correlation-request-id": "106e7cf9-5fdf-4197-9771-4af7c43d1b63", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224410Z:106e7cf9-5fdf-4197-9771-4af7c43d1b63", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -6176,7 +6492,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -6188,8 +6504,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -6204,10 +6520,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -6218,7 +6534,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6226,8 +6542,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:06 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:10 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6235,22 +6551,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6ded36a-e8b3-4e35-8b9d-e984cca317ae", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115206Z:b6ded36a-e8b3-4e35-8b9d-e984cca317ae", + "x-ms-correlation-request-id": "cab1886a-5801-4524-93fa-bd866e6a4694", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224411Z:cab1886a-5801-4524-93fa-bd866e6a4694", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A40.0903205Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -6278,7 +6594,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -6293,8 +6609,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -6314,10 +6630,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -6328,7 +6644,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6336,8 +6652,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:06 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:11 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6345,32 +6661,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a63cb8b-0b50-4084-abda-43e1f0a8c480", - "x-ms-ratelimit-remaining-subscription-reads": "11933", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115207Z:9a63cb8b-0b50-4084-abda-43e1f0a8c480", + "x-ms-correlation-request-id": "98e1110f-fc3c-415b-8578-a19f9bc65883", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224411Z:98e1110f-fc3c-415b-8578-a19f9bc65883", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -6398,7 +6714,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -6410,8 +6726,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -6426,10 +6742,50 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f416a36-956d-493c-8b7b-53c3db8d97ae?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3acf7ea1-337a-4310-a80d-2c26137a0cb9", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224412Z:3acf7ea1-337a-4310-a80d-2c26137a0cb9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f416a36-956d-493c-8b7b-53c3db8d97ae", + "name": "0f416a36-956d-493c-8b7b-53c3db8d97ae", + "status": "AuthorizeReplication", + "startTime": "2022-10-25T22:43:40.951104Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" } } }, @@ -6440,7 +6796,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6448,8 +6804,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:08 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A52%3A07.4110393Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:13 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6457,29 +6813,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ead7ab5-3c47-4831-a7d7-7e0fcfe4d95c", - "x-ms-ratelimit-remaining-subscription-reads": "11932", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115208Z:1ead7ab5-3c47-4831-a7d7-7e0fcfe4d95c", + "x-ms-correlation-request-id": "e5c917c2-9c06-46e9-b735-e1eae4f22c61", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224413Z:e5c917c2-9c06-46e9-b735-e1eae4f22c61", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A52%3A07.4110393Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { - "dataProtection": { - "replication": { - "endpointType": "Src", - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "remoteVolumeRegion": "eastus2" - } - }, - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -6507,7 +6856,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -6522,8 +6871,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -6538,15 +6887,15 @@ "maximumNumberOfFiles": 100000000, "smbNonBrowsable": "Disabled", "smbAccessBasedEnumeration": "Disabled", - "provisioningState": "Succeeded" + "provisioningState": "AuthorizeReplication" }, "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -6557,7 +6906,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6565,8 +6914,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:08 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:44:13 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6574,32 +6923,32 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b89d7bd-ba8f-464e-93b4-e2534bc9f439", - "x-ms-ratelimit-remaining-subscription-reads": "11931", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115208Z:9b89d7bd-ba8f-464e-93b4-e2534bc9f439", + "x-ms-correlation-request-id": "580aeabc-3d75-4da3-b2a4-b1882aa8bab1", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224413Z:580aeabc-3d75-4da3-b2a4-b1882aa8bab1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A51%3A49.2592948Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "DataProtection", "dataProtection": { "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", "endpointType": "Dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "remoteVolumeRegion": "westus2" } }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -6627,7 +6976,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -6639,8 +6988,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], @@ -6655,21 +7004,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0563f49-6b78-460b-a4c3-736bc005bb7f?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6677,7 +7026,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:09 GMT", + "Date": "Tue, 25 Oct 2022 22:44:14 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6685,80 +7035,25 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "784eba4f-b41d-40bb-88ac-7a83638c7f55", - "x-ms-ratelimit-remaining-subscription-reads": "11930", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115210Z:784eba4f-b41d-40bb-88ac-7a83638c7f55", + "x-ms-correlation-request-id": "3290e94e-b489-41be-8e8b-1c20f009f6b6", + "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224415Z:3290e94e-b489-41be-8e8b-1c20f009f6b6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0563f49-6b78-460b-a4c3-736bc005bb7f", - "name": "a0563f49-6b78-460b-a4c3-736bc005bb7f", - "status": "Succeeded", - "startTime": "2022-09-19T11:51:40.0931893Z", - "endTime": "2022-09-19T11:52:07.4129268Z", - "percentComplete": 100.0, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" + }, "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a0563f49-6b78-460b-a4c3-736bc005bb7f?api-version=2022-05-01\u0026operationResultResponseType=Location", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "476b26af-cdae-473e-8866-ededfcb4dfd2", - "x-ms-ratelimit-remaining-subscription-reads": "11929", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115210Z:476b26af-cdae-473e-8866-ededfcb4dfd2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", - "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A52%3A07.4110393Z\u0027\u0022", - "location": "westus2", - "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" - }, - "properties": { - "dataProtection": { - "replication": { - "endpointType": "Src", - "replicationStatus": "", - "remotePath": { - "externalHostName": "az-bn1-f01c10-af1016-sto", - "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", - "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_1fd92a" - }, - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "remoteVolumeRegion": "eastus2" - } - }, - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", - "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", "usageThreshold": 107374182400, - "usedBytes": 0, "exportPolicy": { "rules": [ { @@ -6767,7 +7062,6 @@ "unixReadWrite": true, "cifs": false, "nfsv3": true, - "nfsv4": false, "nfsv41": false, "allowedClients": "0.0.0.0/0", "kerberos5ReadOnly": false, @@ -6784,35 +7078,27 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, - "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", - "poolId": "6df5feb3-c1da-ac0d-f471-e20b9b4c9a21", - "mountTargets": [ - { - "provisioningState": "", - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "startIp": "", - "endIp": "", - "gateway": "", - "netmask": "", - "subnet": "", - "ipAddress": "10.0.0.4" - } - ], - "throughputMibps": 6.25, "kerberosEnabled": false, "securityStyle": "Unix", "smbEncryption": false, "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", "ldapEnabled": false, "unixPermissions": "0770", - "encryptionKeySource": "Microsoft.NetApp", + "mountTargets": [ + { + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, "volumeSpecName": "generic", "coolAccess": false, "avsDataStore": "Disabled", @@ -6820,65 +7106,29 @@ "defaultUserQuotaInKiBs": 0, "defaultGroupQuotaInKiBs": 0, "enableSubvolumes": "Disabled", - "encrypted": true, - "smbAccessBasedEnumeration": "Disabled", + "maximumNumberOfFiles": 100000000, "smbNonBrowsable": "Disabled", - "provisioningState": "Succeeded" + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "AuthorizeReplication" }, "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3601645-d1c4-4c80-bcd0-a07922a916d7", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115240Z:b3601645-d1c4-4c80-bcd0-a07922a916d7", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Uninitialized", - "totalProgress": "0", - "errorMessage": "" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6886,7 +7136,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:40 GMT", + "Date": "Tue, 25 Oct 2022 22:44:15 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6894,27 +7145,102 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9aef5b1a-f33f-43e3-a783-eaad051686d5", - "x-ms-ratelimit-remaining-subscription-reads": "11927", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115241Z:9aef5b1a-f33f-43e3-a783-eaad051686d5", + "x-ms-correlation-request-id": "31b42e92-2c9d-4ef2-a2cb-b25a22f957ff", + "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224415Z:31b42e92-2c9d-4ef2-a2cb-b25a22f957ff", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Uninitialized", - "totalProgress": "0", - "errorMessage": "" + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "DataProtection", + "dataProtection": { + "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "storageToNetworkProximity": "Default", + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "coolAccess": false, + "avsDataStore": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:38:34.3076433Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6922,7 +7248,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:42 GMT", + "Date": "Tue, 25 Oct 2022 22:44:16 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6930,27 +7257,100 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04e26332-d5db-4623-ab2a-f33fca920b56", - "x-ms-ratelimit-remaining-subscription-reads": "11926", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115243Z:04e26332-d5db-4623-ab2a-f33fca920b56", + "x-ms-correlation-request-id": "f65c8fa6-1011-4e89-abfc-f672d36e4820", + "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224416Z:f65c8fa6-1011-4e89-abfc-f672d36e4820", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Uninitialized", - "totalProgress": "0", - "errorMessage": "" + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" + }, + "properties": { + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "AuthorizeReplication" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:33:12.1169593Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" + } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6958,7 +7358,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:43 GMT", + "Date": "Tue, 25 Oct 2022 22:44:17 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -6966,16 +7367,1843 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be5f2b11-f70c-4010-b89c-ac2a86a75da7", - "x-ms-ratelimit-remaining-subscription-reads": "11925", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115244Z:be5f2b11-f70c-4010-b89c-ac2a86a75da7", + "x-ms-correlation-request-id": "1d4d130c-b0b4-403a-b1f6-e7327bb956a6", + "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224417Z:1d4d130c-b0b4-403a-b1f6-e7327bb956a6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Uninitialized", - "totalProgress": "0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "DataProtection", + "dataProtection": { + "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "storageToNetworkProximity": "Default", + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "coolAccess": false, + "avsDataStore": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:38:34.3076433Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:18 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ceb7253e-7678-4139-a050-44e0eddc2c6f", + "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224418Z:ceb7253e-7678-4139-a050-44e0eddc2c6f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" + }, + "properties": { + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "AuthorizeReplication" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:33:12.1169593Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:18 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f5990a1b-ed66-4d8f-b36c-3cea05189d18", + "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224418Z:f5990a1b-ed66-4d8f-b36c-3cea05189d18", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "DataProtection", + "dataProtection": { + "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "storageToNetworkProximity": "Default", + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "coolAccess": false, + "avsDataStore": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:38:34.3076433Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:20 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "636b6173-3e20-4ab8-b395-43d239b9391b", + "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224420Z:636b6173-3e20-4ab8-b395-43d239b9391b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" + }, + "properties": { + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "AuthorizeReplication" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:33:12.1169593Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:20 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c01c4931-25b1-443f-a165-65b8d2fea152", + "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224420Z:c01c4931-25b1-443f-a165-65b8d2fea152", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "DataProtection", + "dataProtection": { + "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "storageToNetworkProximity": "Default", + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "coolAccess": false, + "avsDataStore": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:38:34.3076433Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:21 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a6d2453d-d2f9-483e-b1f9-d187eec23dd4", + "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224421Z:a6d2453d-d2f9-483e-b1f9-d187eec23dd4", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A40.9588437Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" + }, + "properties": { + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "AuthorizeReplication" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:33:12.1169593Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:22 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "45e673ee-417a-4798-8f49-2e367de7f0f3", + "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224422Z:45e673ee-417a-4798-8f49-2e367de7f0f3", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "DataProtection", + "dataProtection": { + "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "storageToNetworkProximity": "Default", + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "coolAccess": false, + "avsDataStore": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:38:34.3076433Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:23 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A44%3A22.1074426Z\u0027\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0765fc7f-c095-4f37-b447-bcbecb2b9c7f", + "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224423Z:0765fc7f-c095-4f37-b447-bcbecb2b9c7f", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A44%3A22.1074426Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" + }, + "properties": { + "dataProtection": { + "replication": { + "endpointType": "Src", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "remoteVolumeRegion": "eastus2" + } + }, + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:33:12.1169593Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:23 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "44e74560-d237-4353-a7ae-db39c237e291", + "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224424Z:44e74560-d237-4353-a7ae-db39c237e291", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A43%3A47.165896Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "DataProtection", + "dataProtection": { + "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "storageToNetworkProximity": "Default", + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "coolAccess": false, + "avsDataStore": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:38:34.3076433Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f416a36-956d-493c-8b7b-53c3db8d97ae?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "812b2b8a-b479-4eba-923c-7e00e5c56746", + "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224442Z:812b2b8a-b479-4eba-923c-7e00e5c56746", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f416a36-956d-493c-8b7b-53c3db8d97ae", + "name": "0f416a36-956d-493c-8b7b-53c3db8d97ae", + "status": "Succeeded", + "startTime": "2022-10-25T22:43:40.951104Z", + "endTime": "2022-10-25T22:44:22.1103143Z", + "percentComplete": 100.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f416a36-956d-493c-8b7b-53c3db8d97ae?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "3d83847e-8394-4af4-806a-ecdc31cd1885", + "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224442Z:3d83847e-8394-4af4-806a-ecdc31cd1885", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A44%3A22.1074426Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" + }, + "properties": { + "dataProtection": { + "replication": { + "endpointType": "Src", + "replicationStatus": "", + "remotePath": { + "externalHostName": "az-bn13-f01c01-bs118-sto", + "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_45c6cd" + }, + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "remoteVolumeRegion": "eastus2" + } + }, + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", + "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", + "usageThreshold": 107374182400, + "usedBytes": 0, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv4": false, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "poolId": "991b8608-5139-9f8b-67da-a062eae36741", + "mountTargets": [ + { + "provisioningState": "", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "startIp": "", + "endIp": "", + "gateway": "", + "netmask": "", + "subnet": "", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "encryptionKeySource": "Microsoft.NetApp", + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "encrypted": true, + "smbAccessBasedEnumeration": "Disabled", + "smbNonBrowsable": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:33:12.1169593Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "667f1f7d-2f77-48e7-bcd4-dbfeee762d74", + "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224454Z:667f1f7d-2f77-48e7-bcd4-dbfeee762d74", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7d3a8c52-994d-45dd-aaf8-cd28d6301066", + "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224456Z:7d3a8c52-994d-45dd-aaf8-cd28d6301066", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:56 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ba25917e-4637-46dd-95cb-9a7fa954067a", + "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224457Z:ba25917e-4637-46dd-95cb-9a7fa954067a", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a342aedd-1257-4a51-aca2-54f2fb784f67", + "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224459Z:a342aedd-1257-4a51-aca2-54f2fb784f67", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:44:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c523a69a-9bfe-4843-971c-1e1d3a64cf34", + "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224500Z:c523a69a-9bfe-4843-971c-1e1d3a64cf34", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bed15da4-90eb-44b5-97ec-2414e6559815", + "x-ms-ratelimit-remaining-subscription-reads": "11877", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224501Z:bed15da4-90eb-44b5-97ec-2414e6559815", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:02 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8af80efe-dfc2-402f-9de5-dd4c8aae995c", + "x-ms-ratelimit-remaining-subscription-reads": "11876", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224503Z:8af80efe-dfc2-402f-9de5-dd4c8aae995c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:03 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f61a305b-8f22-41ce-8f0e-18d842c1593b", + "x-ms-ratelimit-remaining-subscription-reads": "11875", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224504Z:f61a305b-8f22-41ce-8f0e-18d842c1593b", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b13ea0e4-6a7b-4e15-b43d-d697948d18b6", + "x-ms-ratelimit-remaining-subscription-reads": "11874", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224505Z:b13ea0e4-6a7b-4e15-b43d-d697948d18b6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "fdb6a35a-9c52-40af-8b94-6612e636a5c7", + "x-ms-ratelimit-remaining-subscription-reads": "11873", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224507Z:fdb6a35a-9c52-40af-8b94-6612e636a5c7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "de214aee-b998-41f6-8927-e9ebf9bf8536", + "x-ms-ratelimit-remaining-subscription-reads": "11872", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224508Z:de214aee-b998-41f6-8927-e9ebf9bf8536", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ba8377de-f4aa-4be2-baa1-702234fedbdb", + "x-ms-ratelimit-remaining-subscription-reads": "11871", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224510Z:ba8377de-f4aa-4be2-baa1-702234fedbdb", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ac10c714-b361-4095-b655-d4c52669b4d9", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224511Z:ac10c714-b361-4095-b655-d4c52669b4d9", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d8bc1f6a-43c5-41cc-921e-09cab0c4ad96", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224512Z:d8bc1f6a-43c5-41cc-921e-09cab0c4ad96", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "283c84e8-95c6-447a-bbe3-775fb2c14064", + "x-ms-ratelimit-remaining-subscription-reads": "11868", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224514Z:283c84e8-95c6-447a-bbe3-775fb2c14064", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "80d91550-6d1c-499a-9149-cef95433f5a6", + "x-ms-ratelimit-remaining-subscription-reads": "11867", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224515Z:80d91550-6d1c-499a-9149-cef95433f5a6", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "557e0a11-9823-43b5-b1c7-1408bb3fc512", + "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224516Z:557e0a11-9823-43b5-b1c7-1408bb3fc512", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cc9ae4bc-f52e-4ba4-823f-c8b370d66973", + "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224518Z:cc9ae4bc-f52e-4ba4-823f-c8b370d66973", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:19 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2bff12c4-9060-4fae-9bf2-f50480735dde", + "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224519Z:2bff12c4-9060-4fae-9bf2-f50480735dde", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", "errorMessage": "" } }, @@ -6986,7 +9214,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -6994,7 +9222,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:45 GMT", + "Date": "Tue, 25 Oct 2022 22:45:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7002,9 +9230,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd6af9f8-6b78-4c57-81c4-ba6b76610399", - "x-ms-ratelimit-remaining-subscription-reads": "11924", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115245Z:dd6af9f8-6b78-4c57-81c4-ba6b76610399", + "x-ms-correlation-request-id": "df1d4356-b28c-4f17-9c17-78e4fdc98f59", + "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224521Z:df1d4356-b28c-4f17-9c17-78e4fdc98f59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7022,7 +9250,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7030,7 +9258,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:46 GMT", + "Date": "Tue, 25 Oct 2022 22:45:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7038,9 +9266,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7f12e29-0756-4e77-97ee-f8d1bb7c1aef", - "x-ms-ratelimit-remaining-subscription-reads": "11923", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115247Z:b7f12e29-0756-4e77-97ee-f8d1bb7c1aef", + "x-ms-correlation-request-id": "1af33630-4095-4fb8-8d70-6f9918b6db46", + "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224522Z:1af33630-4095-4fb8-8d70-6f9918b6db46", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7058,7 +9286,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7066,7 +9294,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:47 GMT", + "Date": "Tue, 25 Oct 2022 22:45:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7074,9 +9302,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0b4b19c-77e7-44f1-9032-25dbbbdb0841", - "x-ms-ratelimit-remaining-subscription-reads": "11922", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115248Z:a0b4b19c-77e7-44f1-9032-25dbbbdb0841", + "x-ms-correlation-request-id": "bd149f9c-f0c6-4707-b16e-00970275fd75", + "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224523Z:bd149f9c-f0c6-4707-b16e-00970275fd75", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7094,7 +9322,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7102,7 +9330,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:49 GMT", + "Date": "Tue, 25 Oct 2022 22:45:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7110,9 +9338,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d056bdbd-db63-4864-9c32-c405168a282f", - "x-ms-ratelimit-remaining-subscription-reads": "11921", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115250Z:d056bdbd-db63-4864-9c32-c405168a282f", + "x-ms-correlation-request-id": "dcf1aad5-8a3e-432b-b3a5-313072a829e9", + "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224525Z:dcf1aad5-8a3e-432b-b3a5-313072a829e9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7130,7 +9358,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7138,7 +9366,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:50 GMT", + "Date": "Tue, 25 Oct 2022 22:45:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7146,9 +9374,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16d61e30-60a8-4ab1-a665-17ddfcec4f1c", - "x-ms-ratelimit-remaining-subscription-reads": "11920", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115251Z:16d61e30-60a8-4ab1-a665-17ddfcec4f1c", + "x-ms-correlation-request-id": "add37ec3-0599-4b85-9a49-66f302e120df", + "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224526Z:add37ec3-0599-4b85-9a49-66f302e120df", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7166,7 +9394,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7174,7 +9402,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:51 GMT", + "Date": "Tue, 25 Oct 2022 22:45:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7182,9 +9410,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96b1ec2c-56c3-4459-9123-9dfc0cc9f45e", - "x-ms-ratelimit-remaining-subscription-reads": "11919", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115252Z:96b1ec2c-56c3-4459-9123-9dfc0cc9f45e", + "x-ms-correlation-request-id": "a1fb0237-b3c0-4127-aa55-06b3222dbac5", + "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224527Z:a1fb0237-b3c0-4127-aa55-06b3222dbac5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7202,7 +9430,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7210,7 +9438,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:53 GMT", + "Date": "Tue, 25 Oct 2022 22:45:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7218,9 +9446,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f2fa776-0884-45af-8275-cceea5bab143", - "x-ms-ratelimit-remaining-subscription-reads": "11918", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115254Z:6f2fa776-0884-45af-8275-cceea5bab143", + "x-ms-correlation-request-id": "368d87d5-a612-4fa4-84b1-5d90f00aba0e", + "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224529Z:368d87d5-a612-4fa4-84b1-5d90f00aba0e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7238,7 +9466,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7246,7 +9474,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:54 GMT", + "Date": "Tue, 25 Oct 2022 22:45:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7254,9 +9482,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2263407e-f485-4019-ae63-aabc1ccf5c4e", - "x-ms-ratelimit-remaining-subscription-reads": "11917", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115255Z:2263407e-f485-4019-ae63-aabc1ccf5c4e", + "x-ms-correlation-request-id": "57e6f27b-7c56-46f0-8c8c-0ca384327f7a", + "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224530Z:57e6f27b-7c56-46f0-8c8c-0ca384327f7a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7274,7 +9502,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7282,7 +9510,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:55 GMT", + "Date": "Tue, 25 Oct 2022 22:45:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7290,9 +9518,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a9c2897-eab8-4f85-9f3c-35eb78297979", - "x-ms-ratelimit-remaining-subscription-reads": "11916", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115256Z:9a9c2897-eab8-4f85-9f3c-35eb78297979", + "x-ms-correlation-request-id": "c82b89fc-11b0-48f0-8c1f-babdda11147b", + "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224532Z:c82b89fc-11b0-48f0-8c1f-babdda11147b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7310,7 +9538,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7318,7 +9546,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:57 GMT", + "Date": "Tue, 25 Oct 2022 22:45:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7326,9 +9554,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc66d86c-b7f4-443a-ab3b-01fa03de33a1", - "x-ms-ratelimit-remaining-subscription-reads": "11915", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115258Z:fc66d86c-b7f4-443a-ab3b-01fa03de33a1", + "x-ms-correlation-request-id": "3bb4d203-06dc-4894-a37e-14f64bb3b347", + "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224533Z:3bb4d203-06dc-4894-a37e-14f64bb3b347", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7346,7 +9574,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7354,7 +9582,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:58 GMT", + "Date": "Tue, 25 Oct 2022 22:45:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7362,9 +9590,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58c4c5b3-455c-463d-8d21-6c1e5ffa81b4", - "x-ms-ratelimit-remaining-subscription-reads": "11914", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115259Z:58c4c5b3-455c-463d-8d21-6c1e5ffa81b4", + "x-ms-correlation-request-id": "a4a08ad0-eefc-466a-9e7b-3da76a2c9bc9", + "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224534Z:a4a08ad0-eefc-466a-9e7b-3da76a2c9bc9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7382,7 +9610,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7390,7 +9618,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:52:59 GMT", + "Date": "Tue, 25 Oct 2022 22:45:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7398,9 +9626,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5fb4fc2f-07d2-41ca-881a-d22cdbd0a9dd", - "x-ms-ratelimit-remaining-subscription-reads": "11913", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115300Z:5fb4fc2f-07d2-41ca-881a-d22cdbd0a9dd", + "x-ms-correlation-request-id": "7fbe205e-6af7-4579-a10e-f571d1ea1f02", + "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224536Z:7fbe205e-6af7-4579-a10e-f571d1ea1f02", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7418,7 +9646,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7426,7 +9654,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:01 GMT", + "Date": "Tue, 25 Oct 2022 22:45:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7434,9 +9662,261 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf41b6f2-d130-4826-9d3e-79521e77e9c3", - "x-ms-ratelimit-remaining-subscription-reads": "11912", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115302Z:cf41b6f2-d130-4826-9d3e-79521e77e9c3", + "x-ms-correlation-request-id": "a28da06f-4680-497f-8c97-549bb343e3a1", + "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224537Z:a28da06f-4680-497f-8c97-549bb343e3a1", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:38 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6fad3c61-944e-4769-886c-c0796a38d69c", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224539Z:6fad3c61-944e-4769-886c-c0796a38d69c", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ea1a1afd-6c51-4400-b456-6a71e1e8e69d", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224540Z:ea1a1afd-6c51-4400-b456-6a71e1e8e69d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5f8f8ebc-00e2-4331-a1b8-9fa281c1dae0", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224542Z:5f8f8ebc-00e2-4331-a1b8-9fa281c1dae0", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:42 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "166cd0ca-a070-4213-b999-d46d15abad50", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224543Z:166cd0ca-a070-4213-b999-d46d15abad50", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d485d158-804e-4cdd-8f45-d5d6ac113f0d", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224544Z:d485d158-804e-4cdd-8f45-d5d6ac113f0d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:45 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "76df5866-39b1-41c3-9880-27f8b8e8a07e", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224546Z:76df5866-39b1-41c3-9880-27f8b8e8a07e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:45:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "61cfae99-0df3-444e-ba6a-b2dbdfcd5ef2", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224547Z:61cfae99-0df3-444e-ba6a-b2dbdfcd5ef2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7454,7 +9934,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7462,7 +9942,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:02 GMT", + "Date": "Tue, 25 Oct 2022 22:45:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7470,9 +9950,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b5906f6-d9bc-4006-8ee0-f4ca154a9ff3", - "x-ms-ratelimit-remaining-subscription-reads": "11911", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115303Z:0b5906f6-d9bc-4006-8ee0-f4ca154a9ff3", + "x-ms-correlation-request-id": "8cb5c81e-c351-4f27-b12c-be7e88c06580", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224549Z:8cb5c81e-c351-4f27-b12c-be7e88c06580", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7490,7 +9970,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7498,7 +9978,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:03 GMT", + "Date": "Tue, 25 Oct 2022 22:45:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7506,9 +9986,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c731a818-edb8-4a38-90f7-0880e3014461", - "x-ms-ratelimit-remaining-subscription-reads": "11910", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115304Z:c731a818-edb8-4a38-90f7-0880e3014461", + "x-ms-correlation-request-id": "54ac62e9-41b1-4945-a8bf-abdb3ad3b86f", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224550Z:54ac62e9-41b1-4945-a8bf-abdb3ad3b86f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7526,7 +10006,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7534,7 +10014,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:06 GMT", + "Date": "Tue, 25 Oct 2022 22:45:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7542,9 +10022,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5930cb7-df65-444c-9a79-098b063e7677", - "x-ms-ratelimit-remaining-subscription-reads": "11909", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115306Z:a5930cb7-df65-444c-9a79-098b063e7677", + "x-ms-correlation-request-id": "4c0ad30c-1c59-4e58-a7bf-49e8668fcb20", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224551Z:4c0ad30c-1c59-4e58-a7bf-49e8668fcb20", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7562,7 +10042,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7570,7 +10050,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:07 GMT", + "Date": "Tue, 25 Oct 2022 22:45:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7578,9 +10058,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb06f382-62ee-45dd-83dc-fdadc7397039", - "x-ms-ratelimit-remaining-subscription-reads": "11908", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115307Z:cb06f382-62ee-45dd-83dc-fdadc7397039", + "x-ms-correlation-request-id": "cd51c8dd-3335-408c-8148-0fc3976f5d12", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224553Z:cd51c8dd-3335-408c-8148-0fc3976f5d12", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7598,7 +10078,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7606,7 +10086,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:08 GMT", + "Date": "Tue, 25 Oct 2022 22:45:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7614,9 +10094,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6491b955-8cf3-4ea7-b8e9-403ca4b12c0c", - "x-ms-ratelimit-remaining-subscription-reads": "11907", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115308Z:6491b955-8cf3-4ea7-b8e9-403ca4b12c0c", + "x-ms-correlation-request-id": "56c59c80-e2bb-4927-af2a-6d3bee235192", + "x-ms-ratelimit-remaining-subscription-reads": "11839", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224554Z:56c59c80-e2bb-4927-af2a-6d3bee235192", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7634,7 +10114,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7642,7 +10122,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:10 GMT", + "Date": "Tue, 25 Oct 2022 22:45:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7650,9 +10130,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9688abd7-f438-4498-b643-a8fc8a3757e1", - "x-ms-ratelimit-remaining-subscription-reads": "11906", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115310Z:9688abd7-f438-4498-b643-a8fc8a3757e1", + "x-ms-correlation-request-id": "15080a1b-9698-452c-99db-5e57715b57fc", + "x-ms-ratelimit-remaining-subscription-reads": "11838", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224556Z:15080a1b-9698-452c-99db-5e57715b57fc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7670,7 +10150,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7678,7 +10158,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:11 GMT", + "Date": "Tue, 25 Oct 2022 22:45:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7686,9 +10166,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8cffc0ec-b898-4896-a8b4-290dceabfb2c", - "x-ms-ratelimit-remaining-subscription-reads": "11905", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115311Z:8cffc0ec-b898-4896-a8b4-290dceabfb2c", + "x-ms-correlation-request-id": "f89e833e-3717-4cb8-9b33-7e6516dfedd1", + "x-ms-ratelimit-remaining-subscription-reads": "11837", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224557Z:f89e833e-3717-4cb8-9b33-7e6516dfedd1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7706,7 +10186,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7714,7 +10194,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:12 GMT", + "Date": "Tue, 25 Oct 2022 22:45:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7722,9 +10202,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92db204f-286f-4dfd-b464-335c1c4ac5c7", - "x-ms-ratelimit-remaining-subscription-reads": "11904", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115312Z:92db204f-286f-4dfd-b464-335c1c4ac5c7", + "x-ms-correlation-request-id": "232aa2bd-4062-4f9d-99c0-1f65cc0c6e67", + "x-ms-ratelimit-remaining-subscription-reads": "11836", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224558Z:232aa2bd-4062-4f9d-99c0-1f65cc0c6e67", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7742,7 +10222,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7750,7 +10230,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:13 GMT", + "Date": "Tue, 25 Oct 2022 22:46:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7758,9 +10238,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cac38c8d-606d-47b2-b0e2-238c8d4f40b3", - "x-ms-ratelimit-remaining-subscription-reads": "11903", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115314Z:cac38c8d-606d-47b2-b0e2-238c8d4f40b3", + "x-ms-correlation-request-id": "46be595f-a58a-426c-bae7-9689ac8483f8", + "x-ms-ratelimit-remaining-subscription-reads": "11835", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224600Z:46be595f-a58a-426c-bae7-9689ac8483f8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7778,7 +10258,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7786,7 +10266,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:15 GMT", + "Date": "Tue, 25 Oct 2022 22:46:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7794,9 +10274,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c744c1b-f400-4729-8745-0ce8bade527b", - "x-ms-ratelimit-remaining-subscription-reads": "11902", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115315Z:0c744c1b-f400-4729-8745-0ce8bade527b", + "x-ms-correlation-request-id": "393f0c5b-41d8-4f6a-ae3d-55c5b160f0e1", + "x-ms-ratelimit-remaining-subscription-reads": "11834", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224601Z:393f0c5b-41d8-4f6a-ae3d-55c5b160f0e1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7814,7 +10294,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7822,7 +10302,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:16 GMT", + "Date": "Tue, 25 Oct 2022 22:46:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7830,9 +10310,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf21186c-f454-4feb-bbb0-b62f85bebe8b", - "x-ms-ratelimit-remaining-subscription-reads": "11901", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115316Z:cf21186c-f454-4feb-bbb0-b62f85bebe8b", + "x-ms-correlation-request-id": "09ff3202-2f16-41ab-8553-5a5f16a058e5", + "x-ms-ratelimit-remaining-subscription-reads": "11833", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224602Z:09ff3202-2f16-41ab-8553-5a5f16a058e5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7850,7 +10330,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7858,7 +10338,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:17 GMT", + "Date": "Tue, 25 Oct 2022 22:46:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7866,9 +10346,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3113d1a1-db0b-4b1a-9d8f-ab2ff8a26fad", - "x-ms-ratelimit-remaining-subscription-reads": "11900", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115318Z:3113d1a1-db0b-4b1a-9d8f-ab2ff8a26fad", + "x-ms-correlation-request-id": "67ab5c26-bc23-461e-9194-0e30d3e4d8c0", + "x-ms-ratelimit-remaining-subscription-reads": "11832", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224604Z:67ab5c26-bc23-461e-9194-0e30d3e4d8c0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7886,7 +10366,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7894,7 +10374,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:19 GMT", + "Date": "Tue, 25 Oct 2022 22:46:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7902,9 +10382,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee5e28cd-f660-4cf5-bb8d-d644adacc248", - "x-ms-ratelimit-remaining-subscription-reads": "11899", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115319Z:ee5e28cd-f660-4cf5-bb8d-d644adacc248", + "x-ms-correlation-request-id": "848397ed-f0e0-4f25-a609-d84ec0dc3252", + "x-ms-ratelimit-remaining-subscription-reads": "11831", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224605Z:848397ed-f0e0-4f25-a609-d84ec0dc3252", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7922,7 +10402,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7930,7 +10410,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:20 GMT", + "Date": "Tue, 25 Oct 2022 22:46:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7938,9 +10418,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "451cc7cd-1f15-49de-bfc2-d3b96d901c2c", - "x-ms-ratelimit-remaining-subscription-reads": "11898", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115320Z:451cc7cd-1f15-49de-bfc2-d3b96d901c2c", + "x-ms-correlation-request-id": "b5987bd5-befe-4da3-8999-4e42ed57e48f", + "x-ms-ratelimit-remaining-subscription-reads": "11830", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224607Z:b5987bd5-befe-4da3-8999-4e42ed57e48f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7958,7 +10438,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -7966,7 +10446,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:21 GMT", + "Date": "Tue, 25 Oct 2022 22:46:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -7974,9 +10454,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b6139a7-74ee-4441-9e53-63f9f41a480d", - "x-ms-ratelimit-remaining-subscription-reads": "11897", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115322Z:8b6139a7-74ee-4441-9e53-63f9f41a480d", + "x-ms-correlation-request-id": "b753d9dc-1d36-4f0d-ab59-649560d267dc", + "x-ms-ratelimit-remaining-subscription-reads": "11829", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224608Z:b753d9dc-1d36-4f0d-ab59-649560d267dc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -7994,7 +10474,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8002,7 +10482,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:23 GMT", + "Date": "Tue, 25 Oct 2022 22:46:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8010,9 +10490,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62f70ed0-7c46-41b7-81dd-7431bac3e70f", - "x-ms-ratelimit-remaining-subscription-reads": "11896", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115323Z:62f70ed0-7c46-41b7-81dd-7431bac3e70f", + "x-ms-correlation-request-id": "1a6f74b9-9dfa-44d8-a8af-66bc5ac8da62", + "x-ms-ratelimit-remaining-subscription-reads": "11828", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224609Z:1a6f74b9-9dfa-44d8-a8af-66bc5ac8da62", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8030,7 +10510,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8038,7 +10518,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:24 GMT", + "Date": "Tue, 25 Oct 2022 22:46:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8046,9 +10526,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "059cfa0d-9b03-4306-8c38-10844d0b7842", - "x-ms-ratelimit-remaining-subscription-reads": "11895", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115324Z:059cfa0d-9b03-4306-8c38-10844d0b7842", + "x-ms-correlation-request-id": "b9b01ceb-bd50-4fa4-a9c6-3af68930e6fc", + "x-ms-ratelimit-remaining-subscription-reads": "11827", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224611Z:b9b01ceb-bd50-4fa4-a9c6-3af68930e6fc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8066,7 +10546,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8074,7 +10554,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:25 GMT", + "Date": "Tue, 25 Oct 2022 22:46:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8082,9 +10562,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c8b3aff-d977-4788-ba43-f58ed11e72df", - "x-ms-ratelimit-remaining-subscription-reads": "11894", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115326Z:2c8b3aff-d977-4788-ba43-f58ed11e72df", + "x-ms-correlation-request-id": "058d802d-9c16-4a57-a449-0223024564ac", + "x-ms-ratelimit-remaining-subscription-reads": "11826", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224612Z:058d802d-9c16-4a57-a449-0223024564ac", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8102,7 +10582,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8110,7 +10590,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:27 GMT", + "Date": "Tue, 25 Oct 2022 22:46:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8118,9 +10598,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15ad934e-9331-4d25-93e0-58d8c9ac35b5", - "x-ms-ratelimit-remaining-subscription-reads": "11893", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115327Z:15ad934e-9331-4d25-93e0-58d8c9ac35b5", + "x-ms-correlation-request-id": "786efd18-40e2-465a-8608-cb8de13feda1", + "x-ms-ratelimit-remaining-subscription-reads": "11825", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224613Z:786efd18-40e2-465a-8608-cb8de13feda1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8138,7 +10618,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8146,7 +10626,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:28 GMT", + "Date": "Tue, 25 Oct 2022 22:46:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8154,9 +10634,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "391c894a-ba01-48e1-b98e-61b4094cfe86", - "x-ms-ratelimit-remaining-subscription-reads": "11892", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115328Z:391c894a-ba01-48e1-b98e-61b4094cfe86", + "x-ms-correlation-request-id": "a4f60c44-df21-4eda-9a00-6296362e87c1", + "x-ms-ratelimit-remaining-subscription-reads": "11824", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224615Z:a4f60c44-df21-4eda-9a00-6296362e87c1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8174,7 +10654,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8182,7 +10662,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:29 GMT", + "Date": "Tue, 25 Oct 2022 22:46:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8190,9 +10670,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f58c9c2c-aaaa-4724-9a00-a715c318f3ec", - "x-ms-ratelimit-remaining-subscription-reads": "11891", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115330Z:f58c9c2c-aaaa-4724-9a00-a715c318f3ec", + "x-ms-correlation-request-id": "3bab2ba4-71d1-4c7e-b5e0-dca19c207181", + "x-ms-ratelimit-remaining-subscription-reads": "11823", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224616Z:3bab2ba4-71d1-4c7e-b5e0-dca19c207181", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8210,7 +10690,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8218,7 +10698,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:31 GMT", + "Date": "Tue, 25 Oct 2022 22:46:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8226,9 +10706,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77cadf4b-5d7e-43c5-ab41-63fcc7355cfd", - "x-ms-ratelimit-remaining-subscription-reads": "11890", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115331Z:77cadf4b-5d7e-43c5-ab41-63fcc7355cfd", + "x-ms-correlation-request-id": "35318324-bfe8-482e-a567-85de925c9ed7", + "x-ms-ratelimit-remaining-subscription-reads": "11822", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224618Z:35318324-bfe8-482e-a567-85de925c9ed7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8246,7 +10726,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8254,7 +10734,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:32 GMT", + "Date": "Tue, 25 Oct 2022 22:46:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8262,9 +10742,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa7f5a10-699e-42ae-998e-d4bdf4f71904", - "x-ms-ratelimit-remaining-subscription-reads": "11889", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115332Z:aa7f5a10-699e-42ae-998e-d4bdf4f71904", + "x-ms-correlation-request-id": "160ba47b-5796-47af-b0d3-9cd117b7e93e", + "x-ms-ratelimit-remaining-subscription-reads": "11821", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224619Z:160ba47b-5796-47af-b0d3-9cd117b7e93e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8282,7 +10762,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8290,7 +10770,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:33 GMT", + "Date": "Tue, 25 Oct 2022 22:46:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8298,9 +10778,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7987e349-b916-48b0-9a78-d272f56149a6", - "x-ms-ratelimit-remaining-subscription-reads": "11888", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115334Z:7987e349-b916-48b0-9a78-d272f56149a6", + "x-ms-correlation-request-id": "7f1af626-5051-4163-9297-afffdbc9f878", + "x-ms-ratelimit-remaining-subscription-reads": "11820", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224620Z:7f1af626-5051-4163-9297-afffdbc9f878", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8318,7 +10798,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8326,7 +10806,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:35 GMT", + "Date": "Tue, 25 Oct 2022 22:46:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8334,9 +10814,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6985a0ca-6722-4a11-ad2b-29f814063a19", - "x-ms-ratelimit-remaining-subscription-reads": "11887", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115335Z:6985a0ca-6722-4a11-ad2b-29f814063a19", + "x-ms-correlation-request-id": "5e183ac4-1058-4231-94db-7983a7fbeb79", + "x-ms-ratelimit-remaining-subscription-reads": "11819", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224622Z:5e183ac4-1058-4231-94db-7983a7fbeb79", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8354,7 +10834,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8362,7 +10842,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:36 GMT", + "Date": "Tue, 25 Oct 2022 22:46:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8370,9 +10850,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3aa2d855-96e5-44fa-88e6-dc4ff05d821d", - "x-ms-ratelimit-remaining-subscription-reads": "11886", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115336Z:3aa2d855-96e5-44fa-88e6-dc4ff05d821d", + "x-ms-correlation-request-id": "cc838577-9b9d-46e7-8363-1e23761863e2", + "x-ms-ratelimit-remaining-subscription-reads": "11818", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224623Z:cc838577-9b9d-46e7-8363-1e23761863e2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8390,7 +10870,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8398,7 +10878,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:37 GMT", + "Date": "Tue, 25 Oct 2022 22:46:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8406,9 +10886,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd3f86a9-71a1-4265-87d1-01c3cffead47", - "x-ms-ratelimit-remaining-subscription-reads": "11885", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115338Z:bd3f86a9-71a1-4265-87d1-01c3cffead47", + "x-ms-correlation-request-id": "e4c75004-d9bd-4faf-82f6-f844f4faa0f6", + "x-ms-ratelimit-remaining-subscription-reads": "11817", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224625Z:e4c75004-d9bd-4faf-82f6-f844f4faa0f6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8426,7 +10906,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8434,7 +10914,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:39 GMT", + "Date": "Tue, 25 Oct 2022 22:46:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8442,9 +10922,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16b32076-0fdb-425a-8357-b8955cb5d921", - "x-ms-ratelimit-remaining-subscription-reads": "11884", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115339Z:16b32076-0fdb-425a-8357-b8955cb5d921", + "x-ms-correlation-request-id": "88a25013-f640-429e-ac87-fcaeeef62968", + "x-ms-ratelimit-remaining-subscription-reads": "11816", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224626Z:88a25013-f640-429e-ac87-fcaeeef62968", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8462,7 +10942,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8470,7 +10950,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:41 GMT", + "Date": "Tue, 25 Oct 2022 22:46:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8478,9 +10958,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fad3370c-8326-4dcc-958b-e48b9a776410", - "x-ms-ratelimit-remaining-subscription-reads": "11883", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115341Z:fad3370c-8326-4dcc-958b-e48b9a776410", + "x-ms-correlation-request-id": "70ddb7b6-402a-41ac-92ce-7e53a7aea60e", + "x-ms-ratelimit-remaining-subscription-reads": "11815", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224627Z:70ddb7b6-402a-41ac-92ce-7e53a7aea60e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8498,7 +10978,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8506,7 +10986,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:42 GMT", + "Date": "Tue, 25 Oct 2022 22:46:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8514,9 +10994,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c8e895a-6f22-4e83-bb11-e26d6876fc28", - "x-ms-ratelimit-remaining-subscription-reads": "11882", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115342Z:7c8e895a-6f22-4e83-bb11-e26d6876fc28", + "x-ms-correlation-request-id": "6db8aadd-77ff-43b9-b61e-3739c267b1c4", + "x-ms-ratelimit-remaining-subscription-reads": "11814", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224629Z:6db8aadd-77ff-43b9-b61e-3739c267b1c4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8534,7 +11014,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8542,7 +11022,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:43 GMT", + "Date": "Tue, 25 Oct 2022 22:46:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8550,9 +11030,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "705cc2c7-8bcf-46cf-ad47-46752e73fa5e", - "x-ms-ratelimit-remaining-subscription-reads": "11881", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115344Z:705cc2c7-8bcf-46cf-ad47-46752e73fa5e", + "x-ms-correlation-request-id": "71adb7cd-0d28-433a-8576-8cd1c0eed86a", + "x-ms-ratelimit-remaining-subscription-reads": "11813", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224630Z:71adb7cd-0d28-433a-8576-8cd1c0eed86a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8570,7 +11050,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8578,7 +11058,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:45 GMT", + "Date": "Tue, 25 Oct 2022 22:46:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8586,9 +11066,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4681a95-aca5-467c-abd2-17aff6c01ffb", - "x-ms-ratelimit-remaining-subscription-reads": "11880", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115345Z:d4681a95-aca5-467c-abd2-17aff6c01ffb", + "x-ms-correlation-request-id": "00eb8a0a-8f04-4d82-b26e-33a1b1259394", + "x-ms-ratelimit-remaining-subscription-reads": "11812", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224631Z:00eb8a0a-8f04-4d82-b26e-33a1b1259394", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8606,7 +11086,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8614,7 +11094,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:46 GMT", + "Date": "Tue, 25 Oct 2022 22:46:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8622,9 +11102,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be180fcd-a0d2-46a3-ab8b-c57ad7575ba9", - "x-ms-ratelimit-remaining-subscription-reads": "11879", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115346Z:be180fcd-a0d2-46a3-ab8b-c57ad7575ba9", + "x-ms-correlation-request-id": "115a1e04-6e81-4f39-ad98-f960c9acd2d8", + "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224633Z:115a1e04-6e81-4f39-ad98-f960c9acd2d8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8642,7 +11122,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8650,7 +11130,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:47 GMT", + "Date": "Tue, 25 Oct 2022 22:46:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8658,9 +11138,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fc98294-a8f4-4023-ade1-8a5cd8430969", - "x-ms-ratelimit-remaining-subscription-reads": "11878", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115348Z:6fc98294-a8f4-4023-ade1-8a5cd8430969", + "x-ms-correlation-request-id": "b4c417b2-26e7-4e64-b83d-85f7b5495028", + "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224634Z:b4c417b2-26e7-4e64-b83d-85f7b5495028", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8678,7 +11158,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8686,7 +11166,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:49 GMT", + "Date": "Tue, 25 Oct 2022 22:46:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8694,9 +11174,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cc304b5-d5de-4790-a0ed-462a85cde740", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115349Z:3cc304b5-d5de-4790-a0ed-462a85cde740", + "x-ms-correlation-request-id": "523edf76-a9c6-4b92-8280-4340fa07a382", + "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224636Z:523edf76-a9c6-4b92-8280-4340fa07a382", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8714,7 +11194,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8722,7 +11202,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:50 GMT", + "Date": "Tue, 25 Oct 2022 22:46:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8730,9 +11210,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d123961-ee36-4ae0-b239-5e6513fb4310", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115350Z:5d123961-ee36-4ae0-b239-5e6513fb4310", + "x-ms-correlation-request-id": "7aa324f1-d229-405b-910b-8ad068f57dfc", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224637Z:7aa324f1-d229-405b-910b-8ad068f57dfc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8750,7 +11230,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8758,7 +11238,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:51 GMT", + "Date": "Tue, 25 Oct 2022 22:46:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8766,9 +11246,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1eccf7b-c144-4c12-be79-50a5513b9e70", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115352Z:a1eccf7b-c144-4c12-be79-50a5513b9e70", + "x-ms-correlation-request-id": "8fcc9976-e7e8-42b1-ac4d-317c3040ff54", + "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224638Z:8fcc9976-e7e8-42b1-ac4d-317c3040ff54", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8786,7 +11266,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8794,7 +11274,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:53 GMT", + "Date": "Tue, 25 Oct 2022 22:46:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8802,9 +11282,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f6e807b-8d69-4a95-a986-6aca732ef609", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115353Z:2f6e807b-8d69-4a95-a986-6aca732ef609", + "x-ms-correlation-request-id": "42ca9510-e0b2-4b63-9c02-4d8f8da6b4de", + "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224640Z:42ca9510-e0b2-4b63-9c02-4d8f8da6b4de", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8822,7 +11302,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8830,7 +11310,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:54 GMT", + "Date": "Tue, 25 Oct 2022 22:46:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8838,9 +11318,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "427343f6-30b2-4a06-b33e-715487ffcea3", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115354Z:427343f6-30b2-4a06-b33e-715487ffcea3", + "x-ms-correlation-request-id": "7ed252c9-7077-4c99-b050-2dda936d2be7", + "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224641Z:7ed252c9-7077-4c99-b050-2dda936d2be7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8858,7 +11338,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8866,7 +11346,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:55 GMT", + "Date": "Tue, 25 Oct 2022 22:46:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8874,9 +11354,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a8f394c-67c7-4d4f-b968-d608e0f9c31b", - "x-ms-ratelimit-remaining-subscription-reads": "11872", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115356Z:3a8f394c-67c7-4d4f-b968-d608e0f9c31b", + "x-ms-correlation-request-id": "1422bb6d-db6b-48d7-a50a-8245ea2cecb0", + "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224642Z:1422bb6d-db6b-48d7-a50a-8245ea2cecb0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8894,7 +11374,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8902,7 +11382,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:57 GMT", + "Date": "Tue, 25 Oct 2022 22:46:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8910,9 +11390,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b2b202e-e4a9-4806-b51c-cf3408b01bf9", - "x-ms-ratelimit-remaining-subscription-reads": "11871", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115357Z:7b2b202e-e4a9-4806-b51c-cf3408b01bf9", + "x-ms-correlation-request-id": "1f267b63-1929-49b6-89c1-1070e41283da", + "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224644Z:1f267b63-1929-49b6-89c1-1070e41283da", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8930,7 +11410,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8938,7 +11418,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:53:58 GMT", + "Date": "Tue, 25 Oct 2022 22:46:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8946,9 +11426,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae136329-050c-40c0-98a3-2ee614290828", - "x-ms-ratelimit-remaining-subscription-reads": "11870", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115359Z:ae136329-050c-40c0-98a3-2ee614290828", + "x-ms-correlation-request-id": "9b2f13e7-3c23-4a0d-a397-b5d7daf28068", + "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224645Z:9b2f13e7-3c23-4a0d-a397-b5d7daf28068", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -8966,7 +11446,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -8974,7 +11454,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:00 GMT", + "Date": "Tue, 25 Oct 2022 22:46:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -8982,9 +11462,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34ce6f19-a587-45d5-aeec-176b1b771974", - "x-ms-ratelimit-remaining-subscription-reads": "11869", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115400Z:34ce6f19-a587-45d5-aeec-176b1b771974", + "x-ms-correlation-request-id": "73a8bf73-682f-422b-8f08-3e86d245ece0", + "x-ms-ratelimit-remaining-subscription-reads": "11801", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224646Z:73a8bf73-682f-422b-8f08-3e86d245ece0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9002,7 +11482,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9010,7 +11490,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:01 GMT", + "Date": "Tue, 25 Oct 2022 22:46:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9018,9 +11498,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fe2ec56-11a7-4d6f-8cef-a1cbc529b377", - "x-ms-ratelimit-remaining-subscription-reads": "11868", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115401Z:0fe2ec56-11a7-4d6f-8cef-a1cbc529b377", + "x-ms-correlation-request-id": "ea216a2f-525f-4938-9db2-e7b6e8bf0b51", + "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224648Z:ea216a2f-525f-4938-9db2-e7b6e8bf0b51", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9038,7 +11518,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9046,7 +11526,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:02 GMT", + "Date": "Tue, 25 Oct 2022 22:46:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9054,9 +11534,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1855ca09-1231-4063-8b20-27472981aebe", - "x-ms-ratelimit-remaining-subscription-reads": "11867", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115403Z:1855ca09-1231-4063-8b20-27472981aebe", + "x-ms-correlation-request-id": "34ee1d80-7e86-40a7-a5b5-5dc233c97398", + "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224649Z:34ee1d80-7e86-40a7-a5b5-5dc233c97398", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9074,7 +11554,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9082,7 +11562,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:04 GMT", + "Date": "Tue, 25 Oct 2022 22:46:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9090,9 +11570,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68840393-d2d2-4097-a88f-7c6936ac4d17", - "x-ms-ratelimit-remaining-subscription-reads": "11866", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115404Z:68840393-d2d2-4097-a88f-7c6936ac4d17", + "x-ms-correlation-request-id": "d7974f45-fc2a-4aa8-8ad8-a36efc067922", + "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224650Z:d7974f45-fc2a-4aa8-8ad8-a36efc067922", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9110,7 +11590,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9118,7 +11598,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:05 GMT", + "Date": "Tue, 25 Oct 2022 22:46:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9126,9 +11606,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87d75d3b-77c8-49c3-8101-0050a975f9e5", - "x-ms-ratelimit-remaining-subscription-reads": "11865", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115405Z:87d75d3b-77c8-49c3-8101-0050a975f9e5", + "x-ms-correlation-request-id": "1eb69a31-7cb0-4d38-b232-9a4b6dd5d962", + "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224652Z:1eb69a31-7cb0-4d38-b232-9a4b6dd5d962", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9146,7 +11626,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9154,7 +11634,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:06 GMT", + "Date": "Tue, 25 Oct 2022 22:46:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9162,9 +11642,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a943a2b2-f1ce-4f13-bb18-b726604f8cd3", - "x-ms-ratelimit-remaining-subscription-reads": "11864", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115407Z:a943a2b2-f1ce-4f13-bb18-b726604f8cd3", + "x-ms-correlation-request-id": "41af3e3e-bc0b-44a1-b0be-5eed5cfb7b99", + "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224653Z:41af3e3e-bc0b-44a1-b0be-5eed5cfb7b99", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9182,7 +11662,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9190,7 +11670,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:08 GMT", + "Date": "Tue, 25 Oct 2022 22:46:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9198,9 +11678,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e11b8560-e895-414f-96af-a4b61b21e490", - "x-ms-ratelimit-remaining-subscription-reads": "11863", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115408Z:e11b8560-e895-414f-96af-a4b61b21e490", + "x-ms-correlation-request-id": "77b02f04-7851-4f80-a418-37a70a4de91f", + "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224655Z:77b02f04-7851-4f80-a418-37a70a4de91f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9218,7 +11698,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9226,7 +11706,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:09 GMT", + "Date": "Tue, 25 Oct 2022 22:46:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9234,9 +11714,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6403c7b6-7c47-47ed-9e6f-253fbac03b44", - "x-ms-ratelimit-remaining-subscription-reads": "11862", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115409Z:6403c7b6-7c47-47ed-9e6f-253fbac03b44", + "x-ms-correlation-request-id": "ad39378a-c16c-48e3-aa7b-512635a667f9", + "x-ms-ratelimit-remaining-subscription-reads": "11794", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224657Z:ad39378a-c16c-48e3-aa7b-512635a667f9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9254,7 +11734,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9262,7 +11742,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:10 GMT", + "Date": "Tue, 25 Oct 2022 22:46:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9270,9 +11750,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6de0f2eb-fc24-46fa-9e4e-bcd6f1d2d54b", - "x-ms-ratelimit-remaining-subscription-reads": "11861", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115411Z:6de0f2eb-fc24-46fa-9e4e-bcd6f1d2d54b", + "x-ms-correlation-request-id": "d7ad9749-eec9-4176-bcef-d29bfa522ec6", + "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224658Z:d7ad9749-eec9-4176-bcef-d29bfa522ec6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9290,7 +11770,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9298,7 +11778,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:12 GMT", + "Date": "Tue, 25 Oct 2022 22:46:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9306,9 +11786,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4fe886f-d69e-42ce-ae7c-9da393cf6976", - "x-ms-ratelimit-remaining-subscription-reads": "11860", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115412Z:e4fe886f-d69e-42ce-ae7c-9da393cf6976", + "x-ms-correlation-request-id": "4c955cd0-4490-42ff-a9a5-13ec7464f659", + "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224700Z:4c955cd0-4490-42ff-a9a5-13ec7464f659", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9326,7 +11806,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9334,7 +11814,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:13 GMT", + "Date": "Tue, 25 Oct 2022 22:47:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9342,9 +11822,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6b81e1d-411d-4036-bc20-6becb02325a5", - "x-ms-ratelimit-remaining-subscription-reads": "11859", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115413Z:c6b81e1d-411d-4036-bc20-6becb02325a5", + "x-ms-correlation-request-id": "66a11cca-8b30-4f35-8cbf-9a1f0951c5cf", + "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224701Z:66a11cca-8b30-4f35-8cbf-9a1f0951c5cf", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9362,7 +11842,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9370,7 +11850,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:14 GMT", + "Date": "Tue, 25 Oct 2022 22:47:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9378,9 +11858,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d35d7739-da40-49b0-89ac-fba5150dc307", - "x-ms-ratelimit-remaining-subscription-reads": "11858", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115415Z:d35d7739-da40-49b0-89ac-fba5150dc307", + "x-ms-correlation-request-id": "90e67e8f-2526-4440-8dda-52d601bec988", + "x-ms-ratelimit-remaining-subscription-reads": "11790", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224702Z:90e67e8f-2526-4440-8dda-52d601bec988", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9398,7 +11878,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9406,7 +11886,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:15 GMT", + "Date": "Tue, 25 Oct 2022 22:47:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9414,9 +11894,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ce235fa-8f64-4cef-9102-e747fe8c9e34", - "x-ms-ratelimit-remaining-subscription-reads": "11857", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115416Z:6ce235fa-8f64-4cef-9102-e747fe8c9e34", + "x-ms-correlation-request-id": "cb36d235-9078-47b9-9bba-2db5d7364d00", + "x-ms-ratelimit-remaining-subscription-reads": "11789", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224704Z:cb36d235-9078-47b9-9bba-2db5d7364d00", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9434,7 +11914,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9442,7 +11922,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:17 GMT", + "Date": "Tue, 25 Oct 2022 22:47:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9450,9 +11930,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "622c7f09-86f0-4d2a-a588-377d77358ee5", - "x-ms-ratelimit-remaining-subscription-reads": "11856", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115417Z:622c7f09-86f0-4d2a-a588-377d77358ee5", + "x-ms-correlation-request-id": "8a5f2dcb-0e61-4646-9e20-0402e4bef208", + "x-ms-ratelimit-remaining-subscription-reads": "11788", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224705Z:8a5f2dcb-0e61-4646-9e20-0402e4bef208", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9470,7 +11950,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9478,7 +11958,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:18 GMT", + "Date": "Tue, 25 Oct 2022 22:47:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9486,9 +11966,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ab804fd-38fd-4bf4-903f-991290cc0f96", - "x-ms-ratelimit-remaining-subscription-reads": "11855", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115419Z:3ab804fd-38fd-4bf4-903f-991290cc0f96", + "x-ms-correlation-request-id": "a7d3a5aa-787b-4323-8234-72f57b04cc40", + "x-ms-ratelimit-remaining-subscription-reads": "11787", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224707Z:a7d3a5aa-787b-4323-8234-72f57b04cc40", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9506,7 +11986,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9514,7 +11994,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:19 GMT", + "Date": "Tue, 25 Oct 2022 22:47:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9522,9 +12002,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79e51a80-fa57-4157-ad58-217cda6dd89c", - "x-ms-ratelimit-remaining-subscription-reads": "11854", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115420Z:79e51a80-fa57-4157-ad58-217cda6dd89c", + "x-ms-correlation-request-id": "6aa6dcc2-8015-447f-8f79-1e997483c684", + "x-ms-ratelimit-remaining-subscription-reads": "11786", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224708Z:6aa6dcc2-8015-447f-8f79-1e997483c684", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9542,7 +12022,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9550,7 +12030,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:21 GMT", + "Date": "Tue, 25 Oct 2022 22:47:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9558,9 +12038,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41c7c013-92dc-4be0-a3c8-a3dba75db02c", - "x-ms-ratelimit-remaining-subscription-reads": "11853", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115421Z:41c7c013-92dc-4be0-a3c8-a3dba75db02c", + "x-ms-correlation-request-id": "1f0b86b0-75d8-40f7-9337-955b631ce7fc", + "x-ms-ratelimit-remaining-subscription-reads": "11785", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224710Z:1f0b86b0-75d8-40f7-9337-955b631ce7fc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9578,7 +12058,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9586,7 +12066,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:22 GMT", + "Date": "Tue, 25 Oct 2022 22:47:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9594,9 +12074,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59f6b9ec-60e6-406f-bf3e-86704d345cbd", - "x-ms-ratelimit-remaining-subscription-reads": "11852", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115423Z:59f6b9ec-60e6-406f-bf3e-86704d345cbd", + "x-ms-correlation-request-id": "60641c6f-9f50-4490-bc93-21194a7f6a77", + "x-ms-ratelimit-remaining-subscription-reads": "11784", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224711Z:60641c6f-9f50-4490-bc93-21194a7f6a77", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9614,7 +12094,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9622,7 +12102,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:23 GMT", + "Date": "Tue, 25 Oct 2022 22:47:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9630,9 +12110,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3aa59735-66e0-4cb8-acdc-433be9ff6010", - "x-ms-ratelimit-remaining-subscription-reads": "11851", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115424Z:3aa59735-66e0-4cb8-acdc-433be9ff6010", + "x-ms-correlation-request-id": "e53133eb-4dc1-4f65-9edf-79286ba5bd2a", + "x-ms-ratelimit-remaining-subscription-reads": "11783", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224713Z:e53133eb-4dc1-4f65-9edf-79286ba5bd2a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9650,7 +12130,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9658,7 +12138,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:25 GMT", + "Date": "Tue, 25 Oct 2022 22:47:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9666,9 +12146,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32c0eae9-17ca-4a85-a321-82b9dba02bf6", - "x-ms-ratelimit-remaining-subscription-reads": "11850", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115425Z:32c0eae9-17ca-4a85-a321-82b9dba02bf6", + "x-ms-correlation-request-id": "70e94bab-ee2e-4957-83f0-6496aeda166d", + "x-ms-ratelimit-remaining-subscription-reads": "11782", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224714Z:70e94bab-ee2e-4957-83f0-6496aeda166d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9686,7 +12166,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9694,7 +12174,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:26 GMT", + "Date": "Tue, 25 Oct 2022 22:47:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9702,9 +12182,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23a9ffa5-4e52-4fce-8a96-604135e1cfa7", - "x-ms-ratelimit-remaining-subscription-reads": "11849", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115427Z:23a9ffa5-4e52-4fce-8a96-604135e1cfa7", + "x-ms-correlation-request-id": "86fffc6b-c3b1-4b80-be7f-655b38fdf48d", + "x-ms-ratelimit-remaining-subscription-reads": "11781", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224715Z:86fffc6b-c3b1-4b80-be7f-655b38fdf48d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9722,7 +12202,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9730,7 +12210,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:27 GMT", + "Date": "Tue, 25 Oct 2022 22:47:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9738,9 +12218,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0d146a2-a027-497c-b092-5b8e6a2f2c5f", - "x-ms-ratelimit-remaining-subscription-reads": "11848", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115428Z:c0d146a2-a027-497c-b092-5b8e6a2f2c5f", + "x-ms-correlation-request-id": "73c32b8f-eb7c-4404-9b9a-dbc54876b137", + "x-ms-ratelimit-remaining-subscription-reads": "11780", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224717Z:73c32b8f-eb7c-4404-9b9a-dbc54876b137", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9758,7 +12238,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9766,7 +12246,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:29 GMT", + "Date": "Tue, 25 Oct 2022 22:47:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9774,9 +12254,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91688cc8-7401-4fbc-a208-1464442e5515", - "x-ms-ratelimit-remaining-subscription-reads": "11847", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115429Z:91688cc8-7401-4fbc-a208-1464442e5515", + "x-ms-correlation-request-id": "2f0e50c0-e28e-4057-ac57-c42cade63014", + "x-ms-ratelimit-remaining-subscription-reads": "11779", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224719Z:2f0e50c0-e28e-4057-ac57-c42cade63014", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9794,7 +12274,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9802,7 +12282,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:30 GMT", + "Date": "Tue, 25 Oct 2022 22:47:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9810,9 +12290,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "996af856-e24b-43bd-a71b-9bf55045f44b", - "x-ms-ratelimit-remaining-subscription-reads": "11846", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115431Z:996af856-e24b-43bd-a71b-9bf55045f44b", + "x-ms-correlation-request-id": "63dbce34-3a33-47d8-829b-838969b0c6a6", + "x-ms-ratelimit-remaining-subscription-reads": "11778", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224720Z:63dbce34-3a33-47d8-829b-838969b0c6a6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9830,7 +12310,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9838,7 +12318,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:31 GMT", + "Date": "Tue, 25 Oct 2022 22:47:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9846,9 +12326,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "694fca4a-e042-44f2-b49a-2136385f8cff", - "x-ms-ratelimit-remaining-subscription-reads": "11845", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115432Z:694fca4a-e042-44f2-b49a-2136385f8cff", + "x-ms-correlation-request-id": "c7d66983-ecab-4a55-926b-50b99c40a472", + "x-ms-ratelimit-remaining-subscription-reads": "11777", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224721Z:c7d66983-ecab-4a55-926b-50b99c40a472", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9866,7 +12346,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9874,7 +12354,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:33 GMT", + "Date": "Tue, 25 Oct 2022 22:47:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9882,9 +12362,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46d2239b-6f6b-4cd7-8a44-6275defb6add", - "x-ms-ratelimit-remaining-subscription-reads": "11844", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115433Z:46d2239b-6f6b-4cd7-8a44-6275defb6add", + "x-ms-correlation-request-id": "dcbd1f70-a15b-479c-931d-0b1ad51fb3a7", + "x-ms-ratelimit-remaining-subscription-reads": "11776", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224723Z:dcbd1f70-a15b-479c-931d-0b1ad51fb3a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9902,7 +12382,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9910,7 +12390,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:34 GMT", + "Date": "Tue, 25 Oct 2022 22:47:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9918,9 +12398,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9e25201-f027-4fea-832a-da038766feb8", - "x-ms-ratelimit-remaining-subscription-reads": "11843", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115435Z:d9e25201-f027-4fea-832a-da038766feb8", + "x-ms-correlation-request-id": "f18692a0-6039-4f84-8a15-4bbb7fc52473", + "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224724Z:f18692a0-6039-4f84-8a15-4bbb7fc52473", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9938,7 +12418,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9946,7 +12426,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:35 GMT", + "Date": "Tue, 25 Oct 2022 22:47:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9954,9 +12434,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7174b1f-79a4-4a74-b744-39e0e8d816f4", - "x-ms-ratelimit-remaining-subscription-reads": "11842", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115436Z:b7174b1f-79a4-4a74-b744-39e0e8d816f4", + "x-ms-correlation-request-id": "33c47ccf-de7e-4e07-bb7d-4a7532e46c2d", + "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224726Z:33c47ccf-de7e-4e07-bb7d-4a7532e46c2d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -9974,7 +12454,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -9982,7 +12462,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:37 GMT", + "Date": "Tue, 25 Oct 2022 22:47:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -9990,9 +12470,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa043e50-0479-46fe-8b58-39d29b4d5b3f", - "x-ms-ratelimit-remaining-subscription-reads": "11841", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115437Z:aa043e50-0479-46fe-8b58-39d29b4d5b3f", + "x-ms-correlation-request-id": "ab1f9648-762d-4d10-958f-3e266c372bd4", + "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224727Z:ab1f9648-762d-4d10-958f-3e266c372bd4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10010,7 +12490,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10018,7 +12498,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:38 GMT", + "Date": "Tue, 25 Oct 2022 22:47:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10026,9 +12506,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86324078-93d3-4a6f-8833-39507b08c2c5", - "x-ms-ratelimit-remaining-subscription-reads": "11840", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115439Z:86324078-93d3-4a6f-8833-39507b08c2c5", + "x-ms-correlation-request-id": "17a34bd2-dc00-46dd-8666-d47204697246", + "x-ms-ratelimit-remaining-subscription-reads": "11772", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224728Z:17a34bd2-dc00-46dd-8666-d47204697246", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10046,7 +12526,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10054,7 +12534,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:40 GMT", + "Date": "Tue, 25 Oct 2022 22:47:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10062,9 +12542,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22b66f0d-ef64-4e4f-9a4f-925a35d57710", - "x-ms-ratelimit-remaining-subscription-reads": "11839", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115440Z:22b66f0d-ef64-4e4f-9a4f-925a35d57710", + "x-ms-correlation-request-id": "52d8c55c-9b9f-4820-87d3-2642b143c4af", + "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224730Z:52d8c55c-9b9f-4820-87d3-2642b143c4af", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10082,7 +12562,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10090,7 +12570,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:42 GMT", + "Date": "Tue, 25 Oct 2022 22:47:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10098,9 +12578,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff09b17b-8561-46d9-bed7-63905e623222", - "x-ms-ratelimit-remaining-subscription-reads": "11838", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115442Z:ff09b17b-8561-46d9-bed7-63905e623222", + "x-ms-correlation-request-id": "25df96f7-86d5-4839-b344-4ba12fbee3ca", + "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224731Z:25df96f7-86d5-4839-b344-4ba12fbee3ca", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10118,7 +12598,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10126,7 +12606,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:43 GMT", + "Date": "Tue, 25 Oct 2022 22:47:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10134,9 +12614,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eea87393-5a00-4fe0-b4ea-a44fa61dc9a9", - "x-ms-ratelimit-remaining-subscription-reads": "11837", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115444Z:eea87393-5a00-4fe0-b4ea-a44fa61dc9a9", + "x-ms-correlation-request-id": "9e404dd8-0c28-434a-ab8f-db4779a086c6", + "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224733Z:9e404dd8-0c28-434a-ab8f-db4779a086c6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10154,7 +12634,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10162,7 +12642,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:44 GMT", + "Date": "Tue, 25 Oct 2022 22:47:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10170,9 +12650,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "521fbbbb-f385-4e94-85dc-cecc05bd9683", - "x-ms-ratelimit-remaining-subscription-reads": "11836", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115445Z:521fbbbb-f385-4e94-85dc-cecc05bd9683", + "x-ms-correlation-request-id": "cfe80dba-dd40-4e27-af93-f6888c9284f4", + "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224734Z:cfe80dba-dd40-4e27-af93-f6888c9284f4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10190,7 +12670,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10198,7 +12678,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:45 GMT", + "Date": "Tue, 25 Oct 2022 22:47:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10206,9 +12686,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5aaf83a4-8ed2-4731-aa7f-9aeb2d07fb55", - "x-ms-ratelimit-remaining-subscription-reads": "11835", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115446Z:5aaf83a4-8ed2-4731-aa7f-9aeb2d07fb55", + "x-ms-correlation-request-id": "ec9b6814-c04d-4145-87aa-10d57dcdd185", + "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224735Z:ec9b6814-c04d-4145-87aa-10d57dcdd185", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10226,7 +12706,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10234,7 +12714,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:47 GMT", + "Date": "Tue, 25 Oct 2022 22:47:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10242,9 +12722,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f24fd29-95dc-48c0-8639-7843a18e5603", - "x-ms-ratelimit-remaining-subscription-reads": "11834", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115448Z:8f24fd29-95dc-48c0-8639-7843a18e5603", + "x-ms-correlation-request-id": "c1815d15-d140-4017-bfef-395b2faf5fe3", + "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224737Z:c1815d15-d140-4017-bfef-395b2faf5fe3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10262,7 +12742,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10270,7 +12750,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:48 GMT", + "Date": "Tue, 25 Oct 2022 22:47:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10278,9 +12758,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df55e8ac-0b45-4761-be41-2c6be9520504", - "x-ms-ratelimit-remaining-subscription-reads": "11833", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115449Z:df55e8ac-0b45-4761-be41-2c6be9520504", + "x-ms-correlation-request-id": "6516efce-7487-4a5f-b024-5d601d0a565f", + "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224738Z:6516efce-7487-4a5f-b024-5d601d0a565f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10298,7 +12778,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10306,7 +12786,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:50 GMT", + "Date": "Tue, 25 Oct 2022 22:47:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10314,9 +12794,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91046823-232d-4cb8-b93f-986cdd73f4c4", - "x-ms-ratelimit-remaining-subscription-reads": "11832", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115451Z:91046823-232d-4cb8-b93f-986cdd73f4c4", + "x-ms-correlation-request-id": "0e7dbfb3-cc20-4806-92e5-e0f993889e03", + "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224739Z:0e7dbfb3-cc20-4806-92e5-e0f993889e03", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10334,7 +12814,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10342,7 +12822,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:51 GMT", + "Date": "Tue, 25 Oct 2022 22:47:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10350,9 +12830,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d908360-61ee-42fe-9690-f9954900d639", - "x-ms-ratelimit-remaining-subscription-reads": "11831", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115452Z:4d908360-61ee-42fe-9690-f9954900d639", + "x-ms-correlation-request-id": "39f4833c-2f57-46a6-b598-4ed4d4a9b6fa", + "x-ms-ratelimit-remaining-subscription-reads": "11763", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224741Z:39f4833c-2f57-46a6-b598-4ed4d4a9b6fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10370,7 +12850,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10378,7 +12858,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:52 GMT", + "Date": "Tue, 25 Oct 2022 22:47:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10386,9 +12866,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0069729-dff5-438a-b59a-297015d0160f", - "x-ms-ratelimit-remaining-subscription-reads": "11830", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115453Z:d0069729-dff5-438a-b59a-297015d0160f", + "x-ms-correlation-request-id": "e2c87540-3623-4ab8-b8d5-4da173839d32", + "x-ms-ratelimit-remaining-subscription-reads": "11762", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224742Z:e2c87540-3623-4ab8-b8d5-4da173839d32", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10406,7 +12886,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10414,7 +12894,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:54 GMT", + "Date": "Tue, 25 Oct 2022 22:47:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10422,9 +12902,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd28b99f-992d-498c-b0d8-8e0400531777", - "x-ms-ratelimit-remaining-subscription-reads": "11829", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115454Z:bd28b99f-992d-498c-b0d8-8e0400531777", + "x-ms-correlation-request-id": "62ad0969-8eca-4df1-88cf-4630eaf7eaf5", + "x-ms-ratelimit-remaining-subscription-reads": "11761", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224743Z:62ad0969-8eca-4df1-88cf-4630eaf7eaf5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10442,7 +12922,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10450,7 +12930,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:55 GMT", + "Date": "Tue, 25 Oct 2022 22:47:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10458,9 +12938,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ffef792-792f-4bc5-8986-d525a37bf432", - "x-ms-ratelimit-remaining-subscription-reads": "11828", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115456Z:9ffef792-792f-4bc5-8986-d525a37bf432", + "x-ms-correlation-request-id": "1e659267-c074-455a-bf06-69a2e1210406", + "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224745Z:1e659267-c074-455a-bf06-69a2e1210406", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10478,7 +12958,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10486,7 +12966,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:56 GMT", + "Date": "Tue, 25 Oct 2022 22:47:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10494,9 +12974,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d98ae269-f8b6-4e38-916d-d1dd2ea5ab5f", - "x-ms-ratelimit-remaining-subscription-reads": "11827", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115457Z:d98ae269-f8b6-4e38-916d-d1dd2ea5ab5f", + "x-ms-correlation-request-id": "32b5bb9a-f5e7-406e-a1df-e71cac7d1c0a", + "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224746Z:32b5bb9a-f5e7-406e-a1df-e71cac7d1c0a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10514,7 +12994,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10522,7 +13002,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:58 GMT", + "Date": "Tue, 25 Oct 2022 22:47:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10530,9 +13010,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "16175198-d2cc-4677-a431-594cc52cc277", - "x-ms-ratelimit-remaining-subscription-reads": "11826", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115459Z:16175198-d2cc-4677-a431-594cc52cc277", + "x-ms-correlation-request-id": "59bdc3c0-60b8-4bd7-8ee4-f1b9c989f89f", + "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224748Z:59bdc3c0-60b8-4bd7-8ee4-f1b9c989f89f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10550,7 +13030,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10558,7 +13038,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:54:59 GMT", + "Date": "Tue, 25 Oct 2022 22:47:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10566,9 +13046,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92b6b4ef-e03b-4e35-8fb0-898d771a9ede", - "x-ms-ratelimit-remaining-subscription-reads": "11825", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115500Z:92b6b4ef-e03b-4e35-8fb0-898d771a9ede", + "x-ms-correlation-request-id": "fe493557-29d0-45f1-b28f-f08aae69ebb1", + "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224749Z:fe493557-29d0-45f1-b28f-f08aae69ebb1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10586,7 +13066,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10594,7 +13074,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:00 GMT", + "Date": "Tue, 25 Oct 2022 22:47:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10602,9 +13082,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93f9b74f-3129-4628-bde9-04e358bfcb9e", - "x-ms-ratelimit-remaining-subscription-reads": "11824", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115501Z:93f9b74f-3129-4628-bde9-04e358bfcb9e", + "x-ms-correlation-request-id": "b415f91c-96b4-49c8-9b78-91b52b71bcf7", + "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224750Z:b415f91c-96b4-49c8-9b78-91b52b71bcf7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10622,7 +13102,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10630,7 +13110,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:02 GMT", + "Date": "Tue, 25 Oct 2022 22:47:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10638,9 +13118,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "491f634a-5110-4625-bd01-a0f881d56a5c", - "x-ms-ratelimit-remaining-subscription-reads": "11823", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115503Z:491f634a-5110-4625-bd01-a0f881d56a5c", + "x-ms-correlation-request-id": "4c49bee2-6962-417b-99b1-47c20c293942", + "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224752Z:4c49bee2-6962-417b-99b1-47c20c293942", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10658,7 +13138,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10666,7 +13146,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:03 GMT", + "Date": "Tue, 25 Oct 2022 22:47:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10674,9 +13154,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87bfe11e-4a9c-4598-9113-424355f633c9", - "x-ms-ratelimit-remaining-subscription-reads": "11822", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115504Z:87bfe11e-4a9c-4598-9113-424355f633c9", + "x-ms-correlation-request-id": "35143295-13d3-4748-ab01-a6ac2ecd104b", + "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224753Z:35143295-13d3-4748-ab01-a6ac2ecd104b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10694,7 +13174,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10702,7 +13182,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:04 GMT", + "Date": "Tue, 25 Oct 2022 22:47:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10710,9 +13190,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69692a03-ce67-4665-8ad7-d08f7bfff001", - "x-ms-ratelimit-remaining-subscription-reads": "11821", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115505Z:69692a03-ce67-4665-8ad7-d08f7bfff001", + "x-ms-correlation-request-id": "a72937e9-3e8a-42ac-a260-c2b2d55dac50", + "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224754Z:a72937e9-3e8a-42ac-a260-c2b2d55dac50", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10730,7 +13210,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10738,7 +13218,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:06 GMT", + "Date": "Tue, 25 Oct 2022 22:47:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10746,9 +13226,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e58b76a3-df15-46ce-97ad-39205b6f08eb", - "x-ms-ratelimit-remaining-subscription-reads": "11820", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115507Z:e58b76a3-df15-46ce-97ad-39205b6f08eb", + "x-ms-correlation-request-id": "92b5bb47-30f6-474a-a948-ff863e3c2511", + "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224757Z:92b5bb47-30f6-474a-a948-ff863e3c2511", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10766,7 +13246,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10774,7 +13254,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:07 GMT", + "Date": "Tue, 25 Oct 2022 22:47:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10782,9 +13262,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a0dff62-336a-46f2-90fd-53b2585a75c5", - "x-ms-ratelimit-remaining-subscription-reads": "11819", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115508Z:3a0dff62-336a-46f2-90fd-53b2585a75c5", + "x-ms-correlation-request-id": "1dd21e79-d8bf-48fb-9f3c-b4335ed2f919", + "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224758Z:1dd21e79-d8bf-48fb-9f3c-b4335ed2f919", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10802,7 +13282,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10810,7 +13290,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:08 GMT", + "Date": "Tue, 25 Oct 2022 22:47:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10818,9 +13298,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f07199ce-f9ae-473f-9d83-5f03274d894f", - "x-ms-ratelimit-remaining-subscription-reads": "11818", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115509Z:f07199ce-f9ae-473f-9d83-5f03274d894f", + "x-ms-correlation-request-id": "9047a4c6-6596-44d3-8b5a-723f264acd76", + "x-ms-ratelimit-remaining-subscription-reads": "11750", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224759Z:9047a4c6-6596-44d3-8b5a-723f264acd76", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10838,7 +13318,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10846,7 +13326,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:10 GMT", + "Date": "Tue, 25 Oct 2022 22:48:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10854,9 +13334,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5136c73-b9a7-4e05-83ba-e0729c626492", - "x-ms-ratelimit-remaining-subscription-reads": "11817", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115511Z:f5136c73-b9a7-4e05-83ba-e0729c626492", + "x-ms-correlation-request-id": "31c21b9f-6eb2-4705-8797-d14cc2f67874", + "x-ms-ratelimit-remaining-subscription-reads": "11749", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224801Z:31c21b9f-6eb2-4705-8797-d14cc2f67874", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10874,7 +13354,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10882,7 +13362,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:11 GMT", + "Date": "Tue, 25 Oct 2022 22:48:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10890,9 +13370,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c3488c86-6cfb-4c18-be00-68e748cc8950", - "x-ms-ratelimit-remaining-subscription-reads": "11816", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115512Z:c3488c86-6cfb-4c18-be00-68e748cc8950", + "x-ms-correlation-request-id": "6a63beee-0769-4f51-a301-faaa9fe2705e", + "x-ms-ratelimit-remaining-subscription-reads": "11748", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224803Z:6a63beee-0769-4f51-a301-faaa9fe2705e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10910,7 +13390,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10918,7 +13398,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:12 GMT", + "Date": "Tue, 25 Oct 2022 22:48:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10926,9 +13406,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6268b81a-c1cd-4e34-9fe5-1204b8a0cca7", - "x-ms-ratelimit-remaining-subscription-reads": "11815", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115513Z:6268b81a-c1cd-4e34-9fe5-1204b8a0cca7", + "x-ms-correlation-request-id": "34a57467-2a8d-42a4-97dd-66b46c82df34", + "x-ms-ratelimit-remaining-subscription-reads": "11747", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224804Z:34a57467-2a8d-42a4-97dd-66b46c82df34", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10946,7 +13426,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10954,7 +13434,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:14 GMT", + "Date": "Tue, 25 Oct 2022 22:48:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10962,9 +13442,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96f01a3e-6c44-462f-a661-98912093f67a", - "x-ms-ratelimit-remaining-subscription-reads": "11814", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115515Z:96f01a3e-6c44-462f-a661-98912093f67a", + "x-ms-correlation-request-id": "8a87b242-7da1-4e12-b865-930e859724f6", + "x-ms-ratelimit-remaining-subscription-reads": "11746", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224805Z:8a87b242-7da1-4e12-b865-930e859724f6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -10982,7 +13462,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -10990,7 +13470,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:15 GMT", + "Date": "Tue, 25 Oct 2022 22:48:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -10998,9 +13478,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53abd2c2-6ce6-4364-9696-d3c6fb712667", - "x-ms-ratelimit-remaining-subscription-reads": "11813", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115516Z:53abd2c2-6ce6-4364-9696-d3c6fb712667", + "x-ms-correlation-request-id": "7b30b8c9-169b-48b5-b5ea-609462b22b89", + "x-ms-ratelimit-remaining-subscription-reads": "11745", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224807Z:7b30b8c9-169b-48b5-b5ea-609462b22b89", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11018,7 +13498,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11026,7 +13506,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:16 GMT", + "Date": "Tue, 25 Oct 2022 22:48:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11034,9 +13514,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae7acdc7-18a9-4ff9-bd67-8a4e507aa276", - "x-ms-ratelimit-remaining-subscription-reads": "11812", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115517Z:ae7acdc7-18a9-4ff9-bd67-8a4e507aa276", + "x-ms-correlation-request-id": "f298056d-9ba1-43a9-a95b-896001c89b52", + "x-ms-ratelimit-remaining-subscription-reads": "11744", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224808Z:f298056d-9ba1-43a9-a95b-896001c89b52", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11054,7 +13534,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11062,7 +13542,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:19 GMT", + "Date": "Tue, 25 Oct 2022 22:48:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11070,9 +13550,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bb2407d-58f5-4df0-aded-753c77e15738", - "x-ms-ratelimit-remaining-subscription-reads": "11811", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115519Z:1bb2407d-58f5-4df0-aded-753c77e15738", + "x-ms-correlation-request-id": "75d6cab4-94a7-4feb-9d14-7ace64d6cbde", + "x-ms-ratelimit-remaining-subscription-reads": "11743", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224809Z:75d6cab4-94a7-4feb-9d14-7ace64d6cbde", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11090,7 +13570,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11098,7 +13578,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:20 GMT", + "Date": "Tue, 25 Oct 2022 22:48:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11106,9 +13586,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69a45eeb-07a0-4fb6-9bf6-18b1aa99f801", - "x-ms-ratelimit-remaining-subscription-reads": "11810", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115520Z:69a45eeb-07a0-4fb6-9bf6-18b1aa99f801", + "x-ms-correlation-request-id": "36b55ed6-e57a-49b1-baa0-a6c30a7a2ac9", + "x-ms-ratelimit-remaining-subscription-reads": "11742", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224811Z:36b55ed6-e57a-49b1-baa0-a6c30a7a2ac9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11126,7 +13606,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11134,7 +13614,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:21 GMT", + "Date": "Tue, 25 Oct 2022 22:48:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11142,9 +13622,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26b2d3d3-0815-4eab-9df2-6dd23d78c96c", - "x-ms-ratelimit-remaining-subscription-reads": "11809", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115521Z:26b2d3d3-0815-4eab-9df2-6dd23d78c96c", + "x-ms-correlation-request-id": "cdef1703-598e-480f-ab88-6a84ec111465", + "x-ms-ratelimit-remaining-subscription-reads": "11741", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224812Z:cdef1703-598e-480f-ab88-6a84ec111465", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11162,7 +13642,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11170,7 +13650,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:23 GMT", + "Date": "Tue, 25 Oct 2022 22:48:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11178,9 +13658,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f54de855-4f4d-4e0b-8c07-4b5df4dc9440", - "x-ms-ratelimit-remaining-subscription-reads": "11808", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115523Z:f54de855-4f4d-4e0b-8c07-4b5df4dc9440", + "x-ms-correlation-request-id": "65140192-3684-4491-aee3-d5c356ebb9ab", + "x-ms-ratelimit-remaining-subscription-reads": "11740", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224813Z:65140192-3684-4491-aee3-d5c356ebb9ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11198,7 +13678,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11206,7 +13686,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:24 GMT", + "Date": "Tue, 25 Oct 2022 22:48:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11214,9 +13694,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7111148-9e3c-4d0d-b48d-a65d94dfb33a", - "x-ms-ratelimit-remaining-subscription-reads": "11807", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115524Z:a7111148-9e3c-4d0d-b48d-a65d94dfb33a", + "x-ms-correlation-request-id": "2a71c541-4568-4195-9434-b4f369fd4357", + "x-ms-ratelimit-remaining-subscription-reads": "11739", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224816Z:2a71c541-4568-4195-9434-b4f369fd4357", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11234,7 +13714,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11242,7 +13722,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:25 GMT", + "Date": "Tue, 25 Oct 2022 22:48:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11250,9 +13730,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f13b6972-0ec7-4699-acc5-e604df69a465", - "x-ms-ratelimit-remaining-subscription-reads": "11806", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115525Z:f13b6972-0ec7-4699-acc5-e604df69a465", + "x-ms-correlation-request-id": "4e9240f5-b16f-4068-9bc6-f80e9e77b3d2", + "x-ms-ratelimit-remaining-subscription-reads": "11738", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224821Z:4e9240f5-b16f-4068-9bc6-f80e9e77b3d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11270,7 +13750,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11278,7 +13758,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:26 GMT", + "Date": "Tue, 25 Oct 2022 22:48:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11286,9 +13766,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5cef3e7b-af89-4190-8f0f-38e285e17788", - "x-ms-ratelimit-remaining-subscription-reads": "11805", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115526Z:5cef3e7b-af89-4190-8f0f-38e285e17788", + "x-ms-correlation-request-id": "2381bdc3-26bb-46c1-929f-2223334ada1a", + "x-ms-ratelimit-remaining-subscription-reads": "11737", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224824Z:2381bdc3-26bb-46c1-929f-2223334ada1a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11306,7 +13786,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11314,7 +13794,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:28 GMT", + "Date": "Tue, 25 Oct 2022 22:48:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11322,9 +13802,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "630e9be3-dc05-4588-b5d0-aa8f2f0135c5", - "x-ms-ratelimit-remaining-subscription-reads": "11804", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115528Z:630e9be3-dc05-4588-b5d0-aa8f2f0135c5", + "x-ms-correlation-request-id": "e95cdccf-1427-4548-9400-9c9071115ef9", + "x-ms-ratelimit-remaining-subscription-reads": "11736", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224826Z:e95cdccf-1427-4548-9400-9c9071115ef9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11342,7 +13822,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11350,7 +13830,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:29 GMT", + "Date": "Tue, 25 Oct 2022 22:48:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11358,9 +13838,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01d65d38-1e5c-4fe7-ad0f-5c8e872b30cb", - "x-ms-ratelimit-remaining-subscription-reads": "11803", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115529Z:01d65d38-1e5c-4fe7-ad0f-5c8e872b30cb", + "x-ms-correlation-request-id": "e112b261-ff94-4b48-aef0-12d667b37071", + "x-ms-ratelimit-remaining-subscription-reads": "11735", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224827Z:e112b261-ff94-4b48-aef0-12d667b37071", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11378,7 +13858,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11386,7 +13866,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:30 GMT", + "Date": "Tue, 25 Oct 2022 22:48:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11394,9 +13874,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db0ed11a-ac45-48f9-9c26-7aad3774b925", - "x-ms-ratelimit-remaining-subscription-reads": "11802", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115531Z:db0ed11a-ac45-48f9-9c26-7aad3774b925", + "x-ms-correlation-request-id": "2ed66345-5e50-4418-a2f6-b5318034a948", + "x-ms-ratelimit-remaining-subscription-reads": "11734", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224829Z:2ed66345-5e50-4418-a2f6-b5318034a948", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11414,7 +13894,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11422,7 +13902,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:32 GMT", + "Date": "Tue, 25 Oct 2022 22:48:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11430,9 +13910,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45443573-1209-4067-a061-16e2432d4e93", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115532Z:45443573-1209-4067-a061-16e2432d4e93", + "x-ms-correlation-request-id": "287d4df5-6429-41fc-be80-6f5055b101d2", + "x-ms-ratelimit-remaining-subscription-reads": "11733", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224830Z:287d4df5-6429-41fc-be80-6f5055b101d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11450,7 +13930,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11458,7 +13938,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:33 GMT", + "Date": "Tue, 25 Oct 2022 22:48:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11466,9 +13946,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9574ac0f-ffb8-452c-8a95-a57e776ff40e", - "x-ms-ratelimit-remaining-subscription-reads": "11800", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115533Z:9574ac0f-ffb8-452c-8a95-a57e776ff40e", + "x-ms-correlation-request-id": "cb03e08a-1d3a-4355-a068-53b1fd77f5ef", + "x-ms-ratelimit-remaining-subscription-reads": "11732", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224831Z:cb03e08a-1d3a-4355-a068-53b1fd77f5ef", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11486,7 +13966,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11494,7 +13974,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:34 GMT", + "Date": "Tue, 25 Oct 2022 22:48:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11502,9 +13982,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "941f9640-e3c5-4cd8-9cab-96e32ed1a47e", - "x-ms-ratelimit-remaining-subscription-reads": "11799", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115535Z:941f9640-e3c5-4cd8-9cab-96e32ed1a47e", + "x-ms-correlation-request-id": "48e1e839-2d9a-442b-b3ba-f8bbae8a9c59", + "x-ms-ratelimit-remaining-subscription-reads": "11731", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224833Z:48e1e839-2d9a-442b-b3ba-f8bbae8a9c59", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11522,7 +14002,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11530,7 +14010,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:36 GMT", + "Date": "Tue, 25 Oct 2022 22:48:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11538,9 +14018,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ecd6c5e0-feef-4d7f-8790-9776946fcd9d", - "x-ms-ratelimit-remaining-subscription-reads": "11798", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115536Z:ecd6c5e0-feef-4d7f-8790-9776946fcd9d", + "x-ms-correlation-request-id": "5107a0ce-fc6c-4b9d-9998-dafe4279b6ae", + "x-ms-ratelimit-remaining-subscription-reads": "11730", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224834Z:5107a0ce-fc6c-4b9d-9998-dafe4279b6ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11558,7 +14038,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11566,7 +14046,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:37 GMT", + "Date": "Tue, 25 Oct 2022 22:48:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11574,9 +14054,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14d40f6c-17c0-4e83-a2a8-34644270bd11", - "x-ms-ratelimit-remaining-subscription-reads": "11797", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115537Z:14d40f6c-17c0-4e83-a2a8-34644270bd11", + "x-ms-correlation-request-id": "4c202a19-393a-4b88-b615-a489a5e3cd79", + "x-ms-ratelimit-remaining-subscription-reads": "11729", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224835Z:4c202a19-393a-4b88-b615-a489a5e3cd79", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11594,7 +14074,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11602,7 +14082,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:38 GMT", + "Date": "Tue, 25 Oct 2022 22:48:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11610,9 +14090,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2deb30d8-dd83-4161-9633-8571da7c0ac1", - "x-ms-ratelimit-remaining-subscription-reads": "11796", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115539Z:2deb30d8-dd83-4161-9633-8571da7c0ac1", + "x-ms-correlation-request-id": "d97ab4e7-bfba-4a1c-9a4c-555646bebbfb", + "x-ms-ratelimit-remaining-subscription-reads": "11728", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224837Z:d97ab4e7-bfba-4a1c-9a4c-555646bebbfb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11630,7 +14110,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11638,7 +14118,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:40 GMT", + "Date": "Tue, 25 Oct 2022 22:48:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11646,9 +14126,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed031e02-bae0-4a07-b7eb-dcd58f631f8c", - "x-ms-ratelimit-remaining-subscription-reads": "11795", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115540Z:ed031e02-bae0-4a07-b7eb-dcd58f631f8c", + "x-ms-correlation-request-id": "374b19be-f6a8-478c-9145-369fd011e0e6", + "x-ms-ratelimit-remaining-subscription-reads": "11727", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224838Z:374b19be-f6a8-478c-9145-369fd011e0e6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11666,7 +14146,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11674,7 +14154,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:41 GMT", + "Date": "Tue, 25 Oct 2022 22:48:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11682,9 +14162,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ca12900-7f9f-4c2b-b6af-191dcef71ea7", - "x-ms-ratelimit-remaining-subscription-reads": "11794", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115541Z:1ca12900-7f9f-4c2b-b6af-191dcef71ea7", + "x-ms-correlation-request-id": "fa750762-12ba-4cd0-b533-2a48e418a894", + "x-ms-ratelimit-remaining-subscription-reads": "11726", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224839Z:fa750762-12ba-4cd0-b533-2a48e418a894", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11702,7 +14182,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11710,7 +14190,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:43 GMT", + "Date": "Tue, 25 Oct 2022 22:48:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11718,9 +14198,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c0e090c-d011-45e4-acd1-5d890b2da5b6", - "x-ms-ratelimit-remaining-subscription-reads": "11793", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115543Z:9c0e090c-d011-45e4-acd1-5d890b2da5b6", + "x-ms-correlation-request-id": "3be503cb-1bf4-40f7-b16a-48be1ce96e9f", + "x-ms-ratelimit-remaining-subscription-reads": "11725", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224841Z:3be503cb-1bf4-40f7-b16a-48be1ce96e9f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11738,7 +14218,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11746,7 +14226,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:44 GMT", + "Date": "Tue, 25 Oct 2022 22:48:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11754,9 +14234,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "256ac7a6-6528-4fb9-8056-223bb9386680", - "x-ms-ratelimit-remaining-subscription-reads": "11792", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115545Z:256ac7a6-6528-4fb9-8056-223bb9386680", + "x-ms-correlation-request-id": "c0e751d0-5da9-41f0-a9bc-ace0c4486917", + "x-ms-ratelimit-remaining-subscription-reads": "11724", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224842Z:c0e751d0-5da9-41f0-a9bc-ace0c4486917", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11774,7 +14254,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11782,7 +14262,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:46 GMT", + "Date": "Tue, 25 Oct 2022 22:48:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11790,9 +14270,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc30575a-21f6-4525-9662-96ff14bb9806", - "x-ms-ratelimit-remaining-subscription-reads": "11791", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115546Z:bc30575a-21f6-4525-9662-96ff14bb9806", + "x-ms-correlation-request-id": "869e6a9e-7f52-4416-b926-bacbb11e5d62", + "x-ms-ratelimit-remaining-subscription-reads": "11723", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224844Z:869e6a9e-7f52-4416-b926-bacbb11e5d62", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11810,7 +14290,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11818,7 +14298,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:47 GMT", + "Date": "Tue, 25 Oct 2022 22:48:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11826,9 +14306,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39c7e3ce-3211-494e-a452-32b50c1bed44", - "x-ms-ratelimit-remaining-subscription-reads": "11790", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115547Z:39c7e3ce-3211-494e-a452-32b50c1bed44", + "x-ms-correlation-request-id": "ef75af14-e3a3-4289-be23-7c94979af38f", + "x-ms-ratelimit-remaining-subscription-reads": "11722", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224845Z:ef75af14-e3a3-4289-be23-7c94979af38f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11846,7 +14326,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11854,7 +14334,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:48 GMT", + "Date": "Tue, 25 Oct 2022 22:48:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11862,9 +14342,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8dd10c4a-3961-4dab-b44b-96ca8729c8a5", - "x-ms-ratelimit-remaining-subscription-reads": "11789", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115549Z:8dd10c4a-3961-4dab-b44b-96ca8729c8a5", + "x-ms-correlation-request-id": "d555bd4b-e11d-4f6a-ada8-02fbbead2d0f", + "x-ms-ratelimit-remaining-subscription-reads": "11721", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224846Z:d555bd4b-e11d-4f6a-ada8-02fbbead2d0f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11882,7 +14362,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11890,7 +14370,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:50 GMT", + "Date": "Tue, 25 Oct 2022 22:48:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11898,9 +14378,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2cb7a9cc-d427-4a3f-8cd8-a3a9f5898094", - "x-ms-ratelimit-remaining-subscription-reads": "11788", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115550Z:2cb7a9cc-d427-4a3f-8cd8-a3a9f5898094", + "x-ms-correlation-request-id": "34817669-13fa-43cd-9b3f-926dad37cdb3", + "x-ms-ratelimit-remaining-subscription-reads": "11720", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224848Z:34817669-13fa-43cd-9b3f-926dad37cdb3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11918,7 +14398,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11926,7 +14406,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:51 GMT", + "Date": "Tue, 25 Oct 2022 22:48:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11934,9 +14414,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "607cbbd5-1e40-41b4-9991-e7bb4fe31470", - "x-ms-ratelimit-remaining-subscription-reads": "11787", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115551Z:607cbbd5-1e40-41b4-9991-e7bb4fe31470", + "x-ms-correlation-request-id": "4d81e22a-be52-4655-be0b-1f9e52460b1b", + "x-ms-ratelimit-remaining-subscription-reads": "11719", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224849Z:4d81e22a-be52-4655-be0b-1f9e52460b1b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11954,7 +14434,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11962,7 +14442,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:52 GMT", + "Date": "Tue, 25 Oct 2022 22:48:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -11970,9 +14450,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e80c8bf-5150-49e0-b521-bbb2d6dd09b7", - "x-ms-ratelimit-remaining-subscription-reads": "11786", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115553Z:6e80c8bf-5150-49e0-b521-bbb2d6dd09b7", + "x-ms-correlation-request-id": "d6cdaccf-4a54-4d45-9655-7e8727e9348b", + "x-ms-ratelimit-remaining-subscription-reads": "11718", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224850Z:d6cdaccf-4a54-4d45-9655-7e8727e9348b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -11990,7 +14470,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -11998,7 +14478,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:54 GMT", + "Date": "Tue, 25 Oct 2022 22:48:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12006,9 +14486,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53f5c65c-091a-471c-8da6-8ec7236658ec", - "x-ms-ratelimit-remaining-subscription-reads": "11785", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115554Z:53f5c65c-091a-471c-8da6-8ec7236658ec", + "x-ms-correlation-request-id": "0d17b546-26c3-4983-a8f8-441063d913d1", + "x-ms-ratelimit-remaining-subscription-reads": "11717", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224852Z:0d17b546-26c3-4983-a8f8-441063d913d1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -12026,7 +14506,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12034,7 +14514,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:55 GMT", + "Date": "Tue, 25 Oct 2022 22:48:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12042,9 +14522,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91f23c6a-2adb-45bc-a7d6-661e4017e977", - "x-ms-ratelimit-remaining-subscription-reads": "11784", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115555Z:91f23c6a-2adb-45bc-a7d6-661e4017e977", + "x-ms-correlation-request-id": "c1a2cc80-3570-4640-993e-cd0faa9b37e5", + "x-ms-ratelimit-remaining-subscription-reads": "11716", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224853Z:c1a2cc80-3570-4640-993e-cd0faa9b37e5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -12062,7 +14542,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12070,7 +14550,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:56 GMT", + "Date": "Tue, 25 Oct 2022 22:48:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12078,9 +14558,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79286da7-4018-4bc6-b2ab-2a4dca6f255f", - "x-ms-ratelimit-remaining-subscription-reads": "11783", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115557Z:79286da7-4018-4bc6-b2ab-2a4dca6f255f", + "x-ms-correlation-request-id": "2af6265f-71ac-42f4-bda7-a8b3f1f56bd8", + "x-ms-ratelimit-remaining-subscription-reads": "11715", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224855Z:2af6265f-71ac-42f4-bda7-a8b3f1f56bd8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -12098,7 +14578,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12106,7 +14586,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:58 GMT", + "Date": "Tue, 25 Oct 2022 22:48:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12114,9 +14594,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "428cd092-ffcf-467c-852b-941d2abc7952", - "x-ms-ratelimit-remaining-subscription-reads": "11782", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115558Z:428cd092-ffcf-467c-852b-941d2abc7952", + "x-ms-correlation-request-id": "15ea8384-caaa-4c13-ad9e-986b9895d3fa", + "x-ms-ratelimit-remaining-subscription-reads": "11714", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224856Z:15ea8384-caaa-4c13-ad9e-986b9895d3fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -12134,7 +14614,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12142,7 +14622,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:55:59 GMT", + "Date": "Tue, 25 Oct 2022 22:48:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12150,9 +14630,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "437c750c-413e-4dd3-ae6b-995df93f962b", - "x-ms-ratelimit-remaining-subscription-reads": "11781", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115559Z:437c750c-413e-4dd3-ae6b-995df93f962b", + "x-ms-correlation-request-id": "6e22550f-25a4-46f9-8492-b2357ddd3409", + "x-ms-ratelimit-remaining-subscription-reads": "11713", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224858Z:6e22550f-25a4-46f9-8492-b2357ddd3409", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -12170,7 +14650,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12178,7 +14658,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:00 GMT", + "Date": "Tue, 25 Oct 2022 22:48:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12186,9 +14666,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "098185b5-e657-40eb-a4c9-a3f2423e70c6", - "x-ms-ratelimit-remaining-subscription-reads": "11780", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115601Z:098185b5-e657-40eb-a4c9-a3f2423e70c6", + "x-ms-correlation-request-id": "86f2906c-acb8-4692-afc7-c55915d508cb", + "x-ms-ratelimit-remaining-subscription-reads": "11712", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224859Z:86f2906c-acb8-4692-afc7-c55915d508cb", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -12206,7 +14686,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12214,7 +14694,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:02 GMT", + "Date": "Tue, 25 Oct 2022 22:49:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12222,9 +14702,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4cf134a-2faa-49db-95be-36cc16d99314", - "x-ms-ratelimit-remaining-subscription-reads": "11779", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115602Z:f4cf134a-2faa-49db-95be-36cc16d99314", + "x-ms-correlation-request-id": "0e8013aa-e9ef-4760-9339-0d27cee1f8e5", + "x-ms-ratelimit-remaining-subscription-reads": "11711", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224900Z:0e8013aa-e9ef-4760-9339-0d27cee1f8e5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -12242,7 +14722,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12250,7 +14730,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:03 GMT", + "Date": "Tue, 25 Oct 2022 22:49:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12258,9 +14738,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76999e5b-42fd-479d-9513-32196694bd83", - "x-ms-ratelimit-remaining-subscription-reads": "11778", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115603Z:76999e5b-42fd-479d-9513-32196694bd83", + "x-ms-correlation-request-id": "e023f0c8-7791-46ad-b7f6-20572ee14a4e", + "x-ms-ratelimit-remaining-subscription-reads": "11710", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224902Z:e023f0c8-7791-46ad-b7f6-20572ee14a4e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -12278,7 +14758,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12286,7 +14766,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:04 GMT", + "Date": "Tue, 25 Oct 2022 22:49:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12294,9 +14774,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05ce725a-319c-4162-8b87-5708bad0b865", - "x-ms-ratelimit-remaining-subscription-reads": "11777", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115605Z:05ce725a-319c-4162-8b87-5708bad0b865", + "x-ms-correlation-request-id": "d3cc8125-e594-4103-98f7-c9391a7d3841", + "x-ms-ratelimit-remaining-subscription-reads": "11709", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224903Z:d3cc8125-e594-4103-98f7-c9391a7d3841", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -12314,7 +14794,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12322,7 +14802,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:06 GMT", + "Date": "Tue, 25 Oct 2022 22:49:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12330,28 +14810,27 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9d57be6-81f2-422f-acff-f32435709e1b", - "x-ms-ratelimit-remaining-subscription-reads": "11776", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115606Z:e9d57be6-81f2-422f-acff-f32435709e1b", + "x-ms-correlation-request-id": "21c34f1b-ab7c-4567-a6a3-44edbde5bd11", + "x-ms-ratelimit-remaining-subscription-reads": "11708", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224904Z:21c34f1b-ab7c-4567-a6a3-44edbde5bd11", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Mirrored", - "totalProgress": "18032", + "mirrorState": "Uninitialized", + "totalProgress": "0", "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b/listReplications?api-version=2022-05-01", - "RequestMethod": "POST", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12359,7 +14838,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:08 GMT", + "Date": "Tue, 25 Oct 2022 22:49:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12367,53 +14846,54 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69b8dc08-bf97-4b4d-929b-0f858f927f0c", - "x-ms-ratelimit-remaining-subscription-writes": "1198", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115608Z:69b8dc08-bf97-4b4d-929b-0f858f927f0c", + "x-ms-correlation-request-id": "78af3197-5356-401d-96cd-3c3a5a0fc342", + "x-ms-ratelimit-remaining-subscription-reads": "11707", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224906Z:78af3197-5356-401d-96cd-3c3a5a0fc342", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "value": [ - { - "replicationId": "a1135fa0-9dc8-0301-0eb1-c5d26d3113ff", - "endpointType": "Src", - "replicationSchedule": "", - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "remoteVolumeRegion": "eastus2" - } - ] + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/breakReplication?api-version=2022-05-01", - "RequestMethod": "POST", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/31316adc-8af0-40eb-a513-728cc21fc184?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:56:08 GMT", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:49:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/31316adc-8af0-40eb-a513-728cc21fc184?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa7cbac6-4af3-4dcd-9565-10f58dcad93d", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115609Z:fa7cbac6-4af3-4dcd-9565-10f58dcad93d", + "x-ms-correlation-request-id": "1cdb21ca-ebfc-4f8f-a8ba-0ef68ae3e451", + "x-ms-ratelimit-remaining-subscription-reads": "11706", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224907Z:1cdb21ca-ebfc-4f8f-a8ba-0ef68ae3e451", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", @@ -12422,7 +14902,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12430,7 +14910,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:09 GMT", + "Date": "Tue, 25 Oct 2022 22:49:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12438,27 +14918,27 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36532a1e-299b-4133-b024-0ec1c0c53429", - "x-ms-ratelimit-remaining-subscription-reads": "11775", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115609Z:36532a1e-299b-4133-b024-0ec1c0c53429", + "x-ms-correlation-request-id": "9e7fb6d7-d640-4870-b1f7-73e9d54f15a5", + "x-ms-ratelimit-remaining-subscription-reads": "11705", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224909Z:9e7fb6d7-d640-4870-b1f7-73e9d54f15a5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Mirrored", - "totalProgress": "18032", + "mirrorState": "Uninitialized", + "totalProgress": "0", "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/31316adc-8af0-40eb-a513-728cc21fc184?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12466,7 +14946,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:38 GMT", + "Date": "Tue, 25 Oct 2022 22:49:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12474,31 +14954,27 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ab71cd3-0476-41f5-b924-2eb2290c09b2", - "x-ms-ratelimit-remaining-subscription-reads": "11774", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115639Z:4ab71cd3-0476-41f5-b924-2eb2290c09b2", + "x-ms-correlation-request-id": "da79cb2b-3e18-4fb3-bfbc-651e71199b0f", + "x-ms-ratelimit-remaining-subscription-reads": "11704", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224910Z:da79cb2b-3e18-4fb3-bfbc-651e71199b0f", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/31316adc-8af0-40eb-a513-728cc21fc184", - "name": "31316adc-8af0-40eb-a513-728cc21fc184", - "status": "Succeeded", - "startTime": "2022-09-19T11:56:09.0848825Z", - "endTime": "2022-09-19T11:56:18.2590139Z", - "percentComplete": 100.0, - "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" - } + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/31316adc-8af0-40eb-a513-728cc21fc184?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12506,7 +14982,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:38 GMT", + "Date": "Tue, 25 Oct 2022 22:49:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12514,119 +14990,27 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b826402a-7c75-4278-b225-6063bd85d7aa", - "x-ms-ratelimit-remaining-subscription-reads": "11773", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115639Z:b826402a-7c75-4278-b225-6063bd85d7aa", + "x-ms-correlation-request-id": "2c264333-4f0c-40c6-91ee-96d98a1e0037", + "x-ms-ratelimit-remaining-subscription-reads": "11703", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224911Z:2c264333-4f0c-40c6-91ee-96d98a1e0037", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A56%3A18.2567272Z\u0027\u0022", - "location": "eastus2", - "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" - }, - "properties": { - "volumeType": "", - "dataProtection": { - "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", - "endpointType": "Dst", - "replicationSchedule": "_10minutely", - "replicationPolicy": "MirrorAllSnapshots", - "replicationStatus": "Mirrored", - "remotePath": { - "externalHostName": "az-bn1-f01c10-af1016-sto", - "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", - "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_1fd92a" - }, - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", - "remoteVolumeRegion": "westus2" - } - }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "serviceLevel": "Premium", - "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", - "ownerId": "1a1854d0-5b82-11e9-9e4a-3a8c013b5748", - "usageThreshold": 107374182400, - "usedBytes": 0, - "exportPolicy": { - "rules": [ - { - "ruleIndex": 1, - "unixReadOnly": false, - "unixReadWrite": true, - "cifs": false, - "nfsv3": true, - "nfsv4": false, - "nfsv41": false, - "allowedClients": "0.0.0.0/0", - "kerberos5ReadOnly": false, - "kerberos5ReadWrite": false, - "kerberos5iReadOnly": false, - "kerberos5iReadWrite": false, - "kerberos5pReadOnly": false, - "kerberos5pReadWrite": false, - "hasRootAccess": true, - "chownMode": "Restricted" - } - ] - }, - "protocolTypes": [ - "NFSv3" - ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", - "networkFeatures": "Basic", - "storageToNetworkProximity": "Default", - "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "poolId": "a34fac4d-8c48-1ba1-30a0-b412ae03d210", - "mountTargets": [ - { - "provisioningState": "", - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "startIp": "", - "endIp": "", - "gateway": "", - "netmask": "", - "subnet": "", - "ipAddress": "10.0.0.4" - } - ], - "throughputMibps": 6.25, - "kerberosEnabled": false, - "securityStyle": "Unix", - "smbEncryption": false, - "smbContinuouslyAvailable": false, - "ldapEnabled": false, - "unixPermissions": "0770", - "coolAccess": false, - "avsDataStore": "Disabled", - "smbAccessBasedEnumeration": "Disabled", - "smbNonBrowsable": "Disabled", - "provisioningState": "Succeeded" - }, - "systemData": { - "createdBy": "00000000-0000-0000-0000-000000000000", - "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", - "lastModifiedBy": "00000000-0000-0000-0000-000000000000", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" - } + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12634,8 +15018,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:39 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A52%3A07.4110393Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:49:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12643,107 +15026,27 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83885c0d-f266-4891-abb0-b5a52a9f8e39", - "x-ms-ratelimit-remaining-subscription-reads": "11772", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115640Z:83885c0d-f266-4891-abb0-b5a52a9f8e39", + "x-ms-correlation-request-id": "303ca7aa-7dc9-48ca-9285-5638071bc2aa", + "x-ms-ratelimit-remaining-subscription-reads": "11702", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224913Z:303ca7aa-7dc9-48ca-9285-5638071bc2aa", "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", - "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A52%3A07.4110393Z\u0027\u0022", - "location": "westus2", - "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" - }, - "properties": { - "dataProtection": { - "replication": { - "endpointType": "Src", - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "remoteVolumeRegion": "eastus2" - } - }, - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "serviceLevel": "Premium", - "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", - "usageThreshold": 107374182400, - "exportPolicy": { - "rules": [ - { - "ruleIndex": 1, - "unixReadOnly": false, - "unixReadWrite": true, - "cifs": false, - "nfsv3": true, - "nfsv41": false, - "allowedClients": "0.0.0.0/0", - "kerberos5ReadOnly": false, - "kerberos5ReadWrite": false, - "kerberos5iReadOnly": false, - "kerberos5iReadWrite": false, - "kerberos5pReadOnly": false, - "kerberos5pReadWrite": false, - "hasRootAccess": true, - "chownMode": "Restricted" - } - ] - }, - "protocolTypes": [ - "NFSv3" - ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", - "networkFeatures": "Basic", - "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", - "storageToNetworkProximity": "T2", - "snapshotDirectoryVisible": true, - "kerberosEnabled": false, - "securityStyle": "Unix", - "smbEncryption": false, - "smbContinuouslyAvailable": false, - "encryptionKeySource": "Microsoft.NetApp", - "ldapEnabled": false, - "unixPermissions": "0770", - "mountTargets": [ - { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "ipAddress": "10.0.0.4" - } - ], - "throughputMibps": 6.25, - "volumeSpecName": "generic", - "coolAccess": false, - "avsDataStore": "Disabled", - "isDefaultQuotaEnabled": false, - "defaultUserQuotaInKiBs": 0, - "defaultGroupQuotaInKiBs": 0, - "enableSubvolumes": "Disabled", - "maximumNumberOfFiles": 100000000, - "smbNonBrowsable": "Disabled", - "smbAccessBasedEnumeration": "Disabled", - "provisioningState": "Succeeded" - }, - "systemData": { - "createdBy": "00000000-0000-0000-0000-000000000000", - "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", - "lastModifiedBy": "00000000-0000-0000-0000-000000000000", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" - } + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12751,8 +15054,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:39 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A56%3A18.2567272Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:49:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12760,123 +15062,54 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc808386-2f13-4707-a68d-4b37b6d02c36", - "x-ms-ratelimit-remaining-subscription-reads": "11771", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115640Z:dc808386-2f13-4707-a68d-4b37b6d02c36", + "x-ms-correlation-request-id": "826ec862-43b1-4730-8750-fa6dcbd2afa2", + "x-ms-ratelimit-remaining-subscription-reads": "11701", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224914Z:826ec862-43b1-4730-8750-fa6dcbd2afa2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A56%3A18.2567272Z\u0027\u0022", - "location": "eastus2", - "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" - }, - "properties": { - "volumeType": "", - "dataProtection": { - "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", - "endpointType": "Dst", - "replicationSchedule": "_10minutely", - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", - "remoteVolumeRegion": "westus2" - } - }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "serviceLevel": "Premium", - "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", - "usageThreshold": 107374182400, - "exportPolicy": { - "rules": [ - { - "ruleIndex": 1, - "unixReadOnly": false, - "unixReadWrite": true, - "cifs": false, - "nfsv3": true, - "nfsv41": false, - "allowedClients": "0.0.0.0/0", - "kerberos5ReadOnly": false, - "kerberos5ReadWrite": false, - "kerberos5iReadOnly": false, - "kerberos5iReadWrite": false, - "kerberos5pReadOnly": false, - "kerberos5pReadWrite": false, - "hasRootAccess": true, - "chownMode": "Restricted" - } - ] - }, - "protocolTypes": [ - "NFSv3" - ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", - "networkFeatures": "Basic", - "storageToNetworkProximity": "Default", - "kerberosEnabled": false, - "securityStyle": "Unix", - "smbEncryption": false, - "smbContinuouslyAvailable": false, - "ldapEnabled": false, - "unixPermissions": "0770", - "mountTargets": [ - { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "ipAddress": "10.0.0.4" - } - ], - "throughputMibps": 6.25, - "coolAccess": false, - "avsDataStore": "Disabled", - "maximumNumberOfFiles": 100000000, - "smbNonBrowsable": "Disabled", - "smbAccessBasedEnumeration": "Disabled", - "provisioningState": "Succeeded" - }, - "systemData": { - "createdBy": "00000000-0000-0000-0000-000000000000", - "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", - "lastModifiedBy": "00000000-0000-0000-0000-000000000000", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" - } + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/resyncReplication?api-version=2022-05-01", - "RequestMethod": "POST", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8c45c07b-ba22-4878-8aae-c46250a5282b?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:56:40 GMT", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:49:15 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8c45c07b-ba22-4878-8aae-c46250a5282b?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1901092-4f4d-494a-b0a8-b7ca1c0ef8d8", - "x-ms-ratelimit-remaining-subscription-writes": "1196", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115640Z:d1901092-4f4d-494a-b0a8-b7ca1c0ef8d8", + "x-ms-correlation-request-id": "dcebe2c3-ce24-44f9-9c2a-139bf1e9f6b3", + "x-ms-ratelimit-remaining-subscription-reads": "11700", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224916Z:dcebe2c3-ce24-44f9-9c2a-139bf1e9f6b3", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Uninitialized", + "totalProgress": "0", + "errorMessage": "" + } }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", @@ -12885,7 +15118,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12893,7 +15126,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:40 GMT", + "Date": "Tue, 25 Oct 2022 22:49:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12901,16 +15134,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10f33283-94d7-4d26-8066-f97c689e04fe", - "x-ms-ratelimit-remaining-subscription-reads": "11770", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115641Z:10f33283-94d7-4d26-8066-f97c689e04fe", + "x-ms-correlation-request-id": "422b75ed-1436-4a3b-a10a-20eaf47a7120", + "x-ms-ratelimit-remaining-subscription-reads": "11699", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224917Z:422b75ed-1436-4a3b-a10a-20eaf47a7120", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", + "mirrorState": "Uninitialized", + "totalProgress": "0", "errorMessage": "" } }, @@ -12921,7 +15154,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12929,7 +15162,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:41 GMT", + "Date": "Tue, 25 Oct 2022 22:49:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12937,16 +15170,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a81a3af-cd48-4e56-aeb6-8ec06d6abe02", - "x-ms-ratelimit-remaining-subscription-reads": "11769", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115642Z:2a81a3af-cd48-4e56-aeb6-8ec06d6abe02", + "x-ms-correlation-request-id": "5a4a4774-8702-4627-9bcd-92a6335c6b5c", + "x-ms-ratelimit-remaining-subscription-reads": "11698", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224918Z:5a4a4774-8702-4627-9bcd-92a6335c6b5c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", + "mirrorState": "Uninitialized", + "totalProgress": "0", "errorMessage": "" } }, @@ -12957,7 +15190,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -12965,7 +15198,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:43 GMT", + "Date": "Tue, 25 Oct 2022 22:49:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -12973,16 +15206,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a000ac1c-f7b9-4141-bd02-46bc9c3e8975", - "x-ms-ratelimit-remaining-subscription-reads": "11768", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115644Z:a000ac1c-f7b9-4141-bd02-46bc9c3e8975", + "x-ms-correlation-request-id": "ce4c7d6d-ccb5-44f3-a5ae-ac843ac9d8ee", + "x-ms-ratelimit-remaining-subscription-reads": "11697", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224920Z:ce4c7d6d-ccb5-44f3-a5ae-ac843ac9d8ee", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", + "mirrorState": "Uninitialized", + "totalProgress": "0", "errorMessage": "" } }, @@ -12993,7 +15226,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13001,7 +15234,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:44 GMT", + "Date": "Tue, 25 Oct 2022 22:49:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13009,16 +15242,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "158e5f49-b798-4ded-abe4-a83924681db2", - "x-ms-ratelimit-remaining-subscription-reads": "11767", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115645Z:158e5f49-b798-4ded-abe4-a83924681db2", + "x-ms-correlation-request-id": "bb65da6d-f79e-4092-8d8b-c98c3b1a20bc", + "x-ms-ratelimit-remaining-subscription-reads": "11696", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224921Z:bb65da6d-f79e-4092-8d8b-c98c3b1a20bc", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", + "mirrorState": "Uninitialized", + "totalProgress": "0", "errorMessage": "" } }, @@ -13029,7 +15262,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13037,7 +15270,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:46 GMT", + "Date": "Tue, 25 Oct 2022 22:49:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13045,16 +15278,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a504d8b-14ff-49f2-ae88-c76cb548aa1b", - "x-ms-ratelimit-remaining-subscription-reads": "11766", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115647Z:6a504d8b-14ff-49f2-ae88-c76cb548aa1b", + "x-ms-correlation-request-id": "b1334157-806b-4167-bc96-3c74f9b5ff7b", + "x-ms-ratelimit-remaining-subscription-reads": "11695", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224922Z:b1334157-806b-4167-bc96-3c74f9b5ff7b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", + "mirrorState": "Uninitialized", + "totalProgress": "0", "errorMessage": "" } }, @@ -13065,7 +15298,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13073,7 +15306,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:47 GMT", + "Date": "Tue, 25 Oct 2022 22:49:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13081,16 +15314,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "507be166-16b6-4761-9c26-048aafb3dcbb", - "x-ms-ratelimit-remaining-subscription-reads": "11765", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115648Z:507be166-16b6-4761-9c26-048aafb3dcbb", + "x-ms-correlation-request-id": "4c020522-0406-4651-84a5-c8e63485108d", + "x-ms-ratelimit-remaining-subscription-reads": "11694", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224926Z:4c020522-0406-4651-84a5-c8e63485108d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", + "mirrorState": "Uninitialized", + "totalProgress": "0", "errorMessage": "" } }, @@ -13101,7 +15334,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13109,7 +15342,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:49 GMT", + "Date": "Tue, 25 Oct 2022 22:49:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13117,19 +15350,131 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ee1d990-aa35-4104-93b5-521a022853fc", - "x-ms-ratelimit-remaining-subscription-reads": "11764", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115649Z:5ee1d990-aa35-4104-93b5-521a022853fc", + "x-ms-correlation-request-id": "5babd2d2-4789-412c-939b-027a00f4d45b", + "x-ms-ratelimit-remaining-subscription-reads": "11693", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224927Z:5babd2d2-4789-412c-939b-027a00f4d45b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Broken", + "mirrorState": "Mirrored", "totalProgress": "18032", "errorMessage": "" } }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b/listReplications?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:49:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f8eecb38-7f12-483a-bbf2-d53fa58d2f60", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224929Z:f8eecb38-7f12-483a-bbf2-d53fa58d2f60", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "value": [ + { + "replicationId": "6dc95b0c-9f71-5c35-13a4-5b23e4b0bce4", + "endpointType": "Src", + "replicationSchedule": "", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "remoteVolumeRegion": "eastus2" + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/breakReplication?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 202, + "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/650186f3-71ba-4566-99fe-2cf40cc8e7af?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 22:49:29 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/650186f3-71ba-4566-99fe-2cf40cc8e7af?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d8942456-db22-4e35-ac06-195c6dbe2ad7", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224929Z:d8942456-db22-4e35-ac06-195c6dbe2ad7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/650186f3-71ba-4566-99fe-2cf40cc8e7af?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:49:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "4672b597-36c1-4327-a7f3-f858493e9fbd", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224929Z:4672b597-36c1-4327-a7f3-f858493e9fbd", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/650186f3-71ba-4566-99fe-2cf40cc8e7af", + "name": "650186f3-71ba-4566-99fe-2cf40cc8e7af", + "status": "BreakReplication", + "startTime": "2022-10-25T22:49:29.6385506Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } + } + }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", "RequestMethod": "GET", @@ -13137,7 +15482,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13145,7 +15490,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:50 GMT", + "Date": "Tue, 25 Oct 2022 22:49:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13153,27 +15498,27 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "becd381a-18a5-4697-bcee-2b4fd1565b9d", - "x-ms-ratelimit-remaining-subscription-reads": "11763", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115651Z:becd381a-18a5-4697-bcee-2b4fd1565b9d", + "x-ms-correlation-request-id": "bf2ed714-96df-46de-b227-cc16b4d4c926", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T224930Z:bf2ed714-96df-46de-b227-cc16b4d4c926", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Broken", + "mirrorState": "Mirrored", "totalProgress": "18032", "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13181,7 +15526,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:51 GMT", + "Date": "Tue, 25 Oct 2022 22:49:59 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A44%3A22.1074426Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13189,27 +15535,107 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fa53f79-592e-4c4d-9754-486d9d89911e", - "x-ms-ratelimit-remaining-subscription-reads": "11762", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115652Z:8fa53f79-592e-4c4d-9754-486d9d89911e", + "x-ms-correlation-request-id": "a50634f5-2cf3-4753-b561-0fe90a780978", + "x-ms-ratelimit-remaining-subscription-reads": "11692", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225000Z:a50634f5-2cf3-4753-b561-0fe90a780978", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", - "errorMessage": "" + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A44%3A22.1074426Z\u0027\u0022", + "location": "westus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" + }, + "properties": { + "dataProtection": { + "replication": { + "endpointType": "Src", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "remoteVolumeRegion": "eastus2" + } + }, + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", + "storageToNetworkProximity": "T2", + "snapshotDirectoryVisible": true, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "encryptionKeySource": "Microsoft.NetApp", + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "volumeSpecName": "generic", + "coolAccess": false, + "avsDataStore": "Disabled", + "isDefaultQuotaEnabled": false, + "defaultUserQuotaInKiBs": 0, + "defaultGroupQuotaInKiBs": 0, + "enableSubvolumes": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:33:12.1169593Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" + } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/650186f3-71ba-4566-99fe-2cf40cc8e7af?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13217,7 +15643,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:52 GMT", + "Date": "Tue, 25 Oct 2022 22:49:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13225,27 +15651,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae21d5e6-5831-4b21-8c58-b2543516f1a5", - "x-ms-ratelimit-remaining-subscription-reads": "11761", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115653Z:ae21d5e6-5831-4b21-8c58-b2543516f1a5", + "x-ms-correlation-request-id": "44346e9b-413c-48e2-8675-8f74abbd41ab", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225000Z:44346e9b-413c-48e2-8675-8f74abbd41ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", - "errorMessage": "" + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/650186f3-71ba-4566-99fe-2cf40cc8e7af", + "name": "650186f3-71ba-4566-99fe-2cf40cc8e7af", + "status": "Succeeded", + "startTime": "2022-10-25T22:49:29.6385506Z", + "endTime": "2022-10-25T22:49:37.2835982Z", + "percentComplete": 100.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13253,7 +15683,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:54 GMT", + "Date": "Tue, 25 Oct 2022 22:50:00 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A49%3A37.276392Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13261,27 +15692,102 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73044633-e38e-4fec-b4b9-f1712f4518be", - "x-ms-ratelimit-remaining-subscription-reads": "11760", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115655Z:73044633-e38e-4fec-b4b9-f1712f4518be", + "x-ms-correlation-request-id": "c62ba174-f78b-4dd5-9e62-066425640561", + "x-ms-ratelimit-remaining-subscription-reads": "11691", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225000Z:c62ba174-f78b-4dd5-9e62-066425640561", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", - "errorMessage": "" + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A49%3A37.276392Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "", + "dataProtection": { + "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "usageThreshold": 107374182400, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "storageToNetworkProximity": "Default", + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "mountTargets": [ + { + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "coolAccess": false, + "avsDataStore": "Disabled", + "maximumNumberOfFiles": 100000000, + "smbNonBrowsable": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:38:34.3076433Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/650186f3-71ba-4566-99fe-2cf40cc8e7af?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13289,7 +15795,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:55 GMT", + "Date": "Tue, 25 Oct 2022 22:50:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13297,63 +15803,149 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "049ad21d-9cdd-4154-8dc2-be325c8c97a8", - "x-ms-ratelimit-remaining-subscription-reads": "11759", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115656Z:049ad21d-9cdd-4154-8dc2-be325c8c97a8", + "x-ms-correlation-request-id": "23cb55ba-3c74-469d-8227-08316a46f29b", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225001Z:23cb55ba-3c74-469d-8227-08316a46f29b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", - "errorMessage": "" + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A49%3A37.276392Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "", + "dataProtection": { + "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "replicationPolicy": "MirrorAllSnapshots", + "replicationStatus": "Mirrored", + "remotePath": { + "externalHostName": "az-bn13-f01c01-bs118-sto", + "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_45c6cd" + }, + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "ownerId": "1a1854d0-5b82-11e9-9e4a-3a8c013b5748", + "usageThreshold": 107374182400, + "usedBytes": 0, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv4": false, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "storageToNetworkProximity": "Default", + "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "poolId": "8905b6d9-5b7d-b789-987b-70bbe780ff92", + "mountTargets": [ + { + "provisioningState": "", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "startIp": "", + "endIp": "", + "gateway": "", + "netmask": "", + "subnet": "", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "coolAccess": false, + "avsDataStore": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "smbNonBrowsable": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:38:34.3076433Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } } }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", - "RequestMethod": "GET", + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/resyncReplication?api-version=2022-05-01", + "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f4709e87-c1fe-4578-8a4f-89c8954cfaef?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:57 GMT", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 22:50:00 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f4709e87-c1fe-4578-8a4f-89c8954cfaef?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff23e4df-824a-4b42-9db9-a0f07a12dab2", - "x-ms-ratelimit-remaining-subscription-reads": "11758", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115657Z:ff23e4df-824a-4b42-9db9-a0f07a12dab2", + "x-ms-correlation-request-id": "98f28f74-1e4d-4db7-833b-665dc2d3deb3", + "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225001Z:98f28f74-1e4d-4db7-833b-665dc2d3deb3", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", - "errorMessage": "" - } + "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f4709e87-c1fe-4578-8a4f-89c8954cfaef?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13361,7 +15953,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:58 GMT", + "Date": "Tue, 25 Oct 2022 22:50:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13369,17 +15961,21 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5be02df-3784-436a-afb6-506d0177c30b", - "x-ms-ratelimit-remaining-subscription-reads": "11757", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115659Z:b5be02df-3784-436a-afb6-506d0177c30b", + "x-ms-correlation-request-id": "7bdaca50-5f8b-4a6a-af65-d7bfd383b5ba", + "x-ms-ratelimit-remaining-subscription-reads": "11690", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225001Z:7bdaca50-5f8b-4a6a-af65-d7bfd383b5ba", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Broken", - "totalProgress": "18032", - "errorMessage": "" + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f4709e87-c1fe-4578-8a4f-89c8954cfaef", + "name": "f4709e87-c1fe-4578-8a4f-89c8954cfaef", + "status": "ResyncReplication", + "startTime": "2022-10-25T22:50:01.2583005Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } } }, { @@ -13389,7 +15985,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13397,7 +15993,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:56:59 GMT", + "Date": "Tue, 25 Oct 2022 22:50:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13405,9 +16001,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e678bc98-e1d0-486d-8f18-9f36d1f4b93b", - "x-ms-ratelimit-remaining-subscription-reads": "11756", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115700Z:e678bc98-e1d0-486d-8f18-9f36d1f4b93b", + "x-ms-correlation-request-id": "d2733fd4-c695-420a-a7bd-4a5caf3f5aab", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225002Z:d2733fd4-c695-420a-a7bd-4a5caf3f5aab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13425,7 +16021,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13433,7 +16029,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:01 GMT", + "Date": "Tue, 25 Oct 2022 22:50:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13441,9 +16037,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6659467e-e32d-43df-acfe-b75169709897", - "x-ms-ratelimit-remaining-subscription-reads": "11755", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115702Z:6659467e-e32d-43df-acfe-b75169709897", + "x-ms-correlation-request-id": "b27b1fe9-7130-4d8b-81cb-4b7d752bce8e", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225004Z:b27b1fe9-7130-4d8b-81cb-4b7d752bce8e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13461,7 +16057,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13469,7 +16065,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:02 GMT", + "Date": "Tue, 25 Oct 2022 22:50:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13477,9 +16073,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a91e5f2f-0adc-43d1-8dca-7e22b5a27dd2", - "x-ms-ratelimit-remaining-subscription-reads": "11754", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115703Z:a91e5f2f-0adc-43d1-8dca-7e22b5a27dd2", + "x-ms-correlation-request-id": "88f3ef08-7b3d-497f-87a4-f1b206522550", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225005Z:88f3ef08-7b3d-497f-87a4-f1b206522550", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13497,7 +16093,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13505,7 +16101,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:03 GMT", + "Date": "Tue, 25 Oct 2022 22:50:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13513,9 +16109,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf21ec51-48be-44e1-a3ed-1bda0052bed7", - "x-ms-ratelimit-remaining-subscription-reads": "11753", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115704Z:bf21ec51-48be-44e1-a3ed-1bda0052bed7", + "x-ms-correlation-request-id": "b121f51b-331a-4517-b0dd-016ce186ac12", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225006Z:b121f51b-331a-4517-b0dd-016ce186ac12", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13533,7 +16129,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13541,7 +16137,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:05 GMT", + "Date": "Tue, 25 Oct 2022 22:50:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13549,9 +16145,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "551c7ed1-3a26-4846-8854-3767e058a6ff", - "x-ms-ratelimit-remaining-subscription-reads": "11752", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115706Z:551c7ed1-3a26-4846-8854-3767e058a6ff", + "x-ms-correlation-request-id": "4ed29096-6a1b-4447-a6bf-b1633978a540", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225008Z:4ed29096-6a1b-4447-a6bf-b1633978a540", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13569,7 +16165,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13577,7 +16173,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:06 GMT", + "Date": "Tue, 25 Oct 2022 22:50:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13585,9 +16181,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d499f1d-d8d7-4c1e-a377-b618afdf7f88", - "x-ms-ratelimit-remaining-subscription-reads": "11751", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115707Z:6d499f1d-d8d7-4c1e-a377-b618afdf7f88", + "x-ms-correlation-request-id": "2af88522-a743-43ec-9c47-77e2f1106b06", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225009Z:2af88522-a743-43ec-9c47-77e2f1106b06", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13605,7 +16201,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13613,7 +16209,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:07 GMT", + "Date": "Tue, 25 Oct 2022 22:50:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13621,9 +16217,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d862b87d-f6f8-495d-a987-149eebf091cd", - "x-ms-ratelimit-remaining-subscription-reads": "11750", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115708Z:d862b87d-f6f8-495d-a987-149eebf091cd", + "x-ms-correlation-request-id": "a8f0863a-311b-4285-803e-58d8edb169bd", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225010Z:a8f0863a-311b-4285-803e-58d8edb169bd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13641,7 +16237,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13649,7 +16245,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:09 GMT", + "Date": "Tue, 25 Oct 2022 22:50:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13657,9 +16253,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ecb08cb-a7f2-4a57-bce1-446252d6cf4d", - "x-ms-ratelimit-remaining-subscription-reads": "11749", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115710Z:3ecb08cb-a7f2-4a57-bce1-446252d6cf4d", + "x-ms-correlation-request-id": "6ce8c3ce-897d-4878-ad33-1d7237494fb5", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225012Z:6ce8c3ce-897d-4878-ad33-1d7237494fb5", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13670,46 +16266,6 @@ "errorMessage": "" } }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8c45c07b-ba22-4878-8aae-c46250a5282b?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c48b8cfd-1a52-4ad1-be4f-8a2b16d8be72", - "x-ms-ratelimit-remaining-subscription-reads": "11748", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115711Z:c48b8cfd-1a52-4ad1-be4f-8a2b16d8be72", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8c45c07b-ba22-4878-8aae-c46250a5282b", - "name": "8c45c07b-ba22-4878-8aae-c46250a5282b", - "status": "ResyncReplication", - "startTime": "2022-09-19T11:56:40.7582019Z", - "endTime": "0001-01-01T00:00:00Z", - "percentComplete": 0.0, - "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" - } - } - }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", "RequestMethod": "GET", @@ -13717,7 +16273,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13725,7 +16281,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:10 GMT", + "Date": "Tue, 25 Oct 2022 22:50:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13733,9 +16289,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b67eb8c-e534-4147-8d77-40db2b64fd0d", - "x-ms-ratelimit-remaining-subscription-reads": "11747", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115711Z:4b67eb8c-e534-4147-8d77-40db2b64fd0d", + "x-ms-correlation-request-id": "68a49ca9-b9bd-4dc5-a06a-3a6bbc67f27a", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225013Z:68a49ca9-b9bd-4dc5-a06a-3a6bbc67f27a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13753,7 +16309,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13761,7 +16317,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:12 GMT", + "Date": "Tue, 25 Oct 2022 22:50:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13769,9 +16325,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05f05313-b710-4ce8-b191-44a480e58d53", - "x-ms-ratelimit-remaining-subscription-reads": "11746", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115712Z:05f05313-b710-4ce8-b191-44a480e58d53", + "x-ms-correlation-request-id": "9efe4a82-1701-47be-98ff-b404809129a7", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225014Z:9efe4a82-1701-47be-98ff-b404809129a7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13789,7 +16345,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13797,7 +16353,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:13 GMT", + "Date": "Tue, 25 Oct 2022 22:50:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13805,9 +16361,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fcbe302-b244-4a1c-a934-54087bdb006a", - "x-ms-ratelimit-remaining-subscription-reads": "11745", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115714Z:6fcbe302-b244-4a1c-a934-54087bdb006a", + "x-ms-correlation-request-id": "a2871a4a-99bf-441b-99ee-09cb8a648e86", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225016Z:a2871a4a-99bf-441b-99ee-09cb8a648e86", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13825,7 +16381,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13833,7 +16389,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:18 GMT", + "Date": "Tue, 25 Oct 2022 22:50:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13841,9 +16397,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62f65012-7422-460f-8850-aba536302b6b", - "x-ms-ratelimit-remaining-subscription-reads": "11744", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115718Z:62f65012-7422-460f-8850-aba536302b6b", + "x-ms-correlation-request-id": "0c311c11-ff27-4eff-b2fe-2826db7a25d3", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225017Z:0c311c11-ff27-4eff-b2fe-2826db7a25d3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13861,7 +16417,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13869,7 +16425,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:19 GMT", + "Date": "Tue, 25 Oct 2022 22:50:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13877,9 +16433,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6758cf30-7f99-4a5e-bd18-1424d423ba92", - "x-ms-ratelimit-remaining-subscription-reads": "11743", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115719Z:6758cf30-7f99-4a5e-bd18-1424d423ba92", + "x-ms-correlation-request-id": "70842748-dd9c-4180-a66b-475333abd1a3", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225018Z:70842748-dd9c-4180-a66b-475333abd1a3", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13897,7 +16453,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13905,7 +16461,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:20 GMT", + "Date": "Tue, 25 Oct 2022 22:50:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13913,9 +16469,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b6afd69-d83f-4c93-bd96-7d47d0650d6f", - "x-ms-ratelimit-remaining-subscription-reads": "11742", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115720Z:0b6afd69-d83f-4c93-bd96-7d47d0650d6f", + "x-ms-correlation-request-id": "07e5bc7a-13d0-4daf-bb74-a3fe79d8f065", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225020Z:07e5bc7a-13d0-4daf-bb74-a3fe79d8f065", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13933,7 +16489,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -13941,7 +16497,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:22 GMT", + "Date": "Tue, 25 Oct 2022 22:50:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -13949,9 +16505,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c916ab6-6443-4678-9cb3-a7b499d9e3b4", - "x-ms-ratelimit-remaining-subscription-reads": "11741", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115722Z:4c916ab6-6443-4678-9cb3-a7b499d9e3b4", + "x-ms-correlation-request-id": "567f0d44-287b-414b-a867-01a29da37daa", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225021Z:567f0d44-287b-414b-a867-01a29da37daa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -13969,83 +16525,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e9f2b6a-0bde-46be-9e0d-931af35a8b91", - "x-ms-ratelimit-remaining-subscription-reads": "11740", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115723Z:3e9f2b6a-0bde-46be-9e0d-931af35a8b91", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "healthy": true, - "relationshipStatus": "Idle", - "mirrorState": "Mirrored", - "totalProgress": "21312", - "errorMessage": "" - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8c45c07b-ba22-4878-8aae-c46250a5282b?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:41 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "11815c51-73c4-4881-b33a-ed0831df91a2", - "x-ms-ratelimit-remaining-subscription-reads": "11739", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115741Z:11815c51-73c4-4881-b33a-ed0831df91a2", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8c45c07b-ba22-4878-8aae-c46250a5282b", - "name": "8c45c07b-ba22-4878-8aae-c46250a5282b", - "status": "Succeeded", - "startTime": "2022-09-19T11:56:40.7582019Z", - "endTime": "2022-09-19T11:57:37.0163742Z", - "percentComplete": 100.0, - "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8c45c07b-ba22-4878-8aae-c46250a5282b?api-version=2022-05-01\u0026operationResultResponseType=Location", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14053,149 +16533,62 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:41 GMT", + "Date": "Tue, 25 Oct 2022 22:50:22 GMT", "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "78ac10b0-7df4-4501-ac04-f2767380654b", - "x-ms-ratelimit-remaining-subscription-reads": "11738", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115741Z:78ac10b0-7df4-4501-ac04-f2767380654b", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A57%3A37.0206739Z\u0027\u0022", - "location": "eastus2", - "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" - }, - "properties": { - "volumeType": "DataProtection", - "dataProtection": { - "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", - "endpointType": "Dst", - "replicationSchedule": "_10minutely", - "replicationPolicy": "MirrorAllSnapshots", - "replicationStatus": "Mirrored", - "remotePath": { - "externalHostName": "az-bn1-f01c10-af1016-sto", - "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", - "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_1fd92a" - }, - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", - "remoteVolumeRegion": "westus2" - } - }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "serviceLevel": "Premium", - "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", - "ownerId": "1a1854d0-5b82-11e9-9e4a-3a8c013b5748", - "usageThreshold": 107374182400, - "usedBytes": 0, - "exportPolicy": { - "rules": [ - { - "ruleIndex": 1, - "unixReadOnly": false, - "unixReadWrite": true, - "cifs": false, - "nfsv3": true, - "nfsv4": false, - "nfsv41": false, - "allowedClients": "0.0.0.0/0", - "kerberos5ReadOnly": false, - "kerberos5ReadWrite": false, - "kerberos5iReadOnly": false, - "kerberos5iReadWrite": false, - "kerberos5pReadOnly": false, - "kerberos5pReadWrite": false, - "hasRootAccess": true, - "chownMode": "Restricted" - } - ] - }, - "protocolTypes": [ - "NFSv3" - ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", - "networkFeatures": "Basic", - "storageToNetworkProximity": "Default", - "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "poolId": "a34fac4d-8c48-1ba1-30a0-b412ae03d210", - "mountTargets": [ - { - "provisioningState": "", - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "startIp": "", - "endIp": "", - "gateway": "", - "netmask": "", - "subnet": "", - "ipAddress": "10.0.0.4" - } - ], - "throughputMibps": 6.25, - "kerberosEnabled": false, - "securityStyle": "Unix", - "smbEncryption": false, - "smbContinuouslyAvailable": false, - "ldapEnabled": false, - "unixPermissions": "0770", - "coolAccess": false, - "avsDataStore": "Disabled", - "smbAccessBasedEnumeration": "Disabled", - "smbNonBrowsable": "Disabled", - "provisioningState": "Succeeded" - }, - "systemData": { - "createdBy": "00000000-0000-0000-0000-000000000000", - "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", - "lastModifiedBy": "00000000-0000-0000-0000-000000000000", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" - } + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "67270995-c8d6-4ef1-a1f5-0535c087935e", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225023Z:67270995-c8d6-4ef1-a1f5-0535c087935e", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Broken", + "totalProgress": "18032", + "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/breakReplication?api-version=2022-05-01", - "RequestMethod": "POST", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "Content-Type": "application/json", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/06025fd2-7c04-4d1e-84e4-1a9e79b2a6dd?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:57:53 GMT", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:50:23 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/06025fd2-7c04-4d1e-84e4-1a9e79b2a6dd?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47e95c86-21f9-477e-bc29-fb3846b82888", - "x-ms-ratelimit-remaining-subscription-writes": "1195", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115754Z:47e95c86-21f9-477e-bc29-fb3846b82888", + "x-ms-correlation-request-id": "5a19d97f-7f96-4259-abb9-e338b2426179", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225024Z:5a19d97f-7f96-4259-abb9-e338b2426179", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Broken", + "totalProgress": "18032", + "errorMessage": "" + } }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", @@ -14204,7 +16597,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14212,7 +16605,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:57:54 GMT", + "Date": "Tue, 25 Oct 2022 22:50:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14220,27 +16613,27 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72576ee8-56ee-4f22-91a3-7267ebab828d", - "x-ms-ratelimit-remaining-subscription-reads": "11737", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115755Z:72576ee8-56ee-4f22-91a3-7267ebab828d", + "x-ms-correlation-request-id": "a56048bf-9412-4c99-8f54-c295b65543f1", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225025Z:a56048bf-9412-4c99-8f54-c295b65543f1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", - "mirrorState": "Mirrored", - "totalProgress": "21312", + "mirrorState": "Broken", + "totalProgress": "18032", "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/06025fd2-7c04-4d1e-84e4-1a9e79b2a6dd?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14248,7 +16641,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:23 GMT", + "Date": "Tue, 25 Oct 2022 22:50:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14256,31 +16649,27 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1e7a8ad-921d-4e30-aad1-3d579dd56472", - "x-ms-ratelimit-remaining-subscription-reads": "11736", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115824Z:d1e7a8ad-921d-4e30-aad1-3d579dd56472", + "x-ms-correlation-request-id": "14fcd008-a163-4aed-8def-177d4b81d0ab", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225027Z:14fcd008-a163-4aed-8def-177d4b81d0ab", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/06025fd2-7c04-4d1e-84e4-1a9e79b2a6dd", - "name": "06025fd2-7c04-4d1e-84e4-1a9e79b2a6dd", - "status": "Succeeded", - "startTime": "2022-09-19T11:57:53.9589942Z", - "endTime": "2022-09-19T11:58:03.7353104Z", - "percentComplete": 100.0, - "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" - } + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Broken", + "totalProgress": "18032", + "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/06025fd2-7c04-4d1e-84e4-1a9e79b2a6dd?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14288,7 +16677,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:23 GMT", + "Date": "Tue, 25 Oct 2022 22:50:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14296,140 +16685,54 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8448e25-ebc9-4f75-a107-2069764ccf75", - "x-ms-ratelimit-remaining-subscription-reads": "11735", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115824Z:a8448e25-ebc9-4f75-a107-2069764ccf75", + "x-ms-correlation-request-id": "2162edc2-fea4-4abe-b603-023aa3ffd2ae", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225028Z:2162edc2-fea4-4abe-b603-023aa3ffd2ae", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A58%3A03.7263361Z\u0027\u0022", - "location": "eastus2", - "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" - }, - "properties": { - "volumeType": "", - "dataProtection": { - "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", - "endpointType": "Dst", - "replicationSchedule": "_10minutely", - "replicationPolicy": "MirrorAllSnapshots", - "replicationStatus": "Mirrored", - "remotePath": { - "externalHostName": "az-bn1-f01c10-af1016-sto", - "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", - "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_1fd92a" - }, - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", - "remoteVolumeRegion": "westus2" - } - }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "serviceLevel": "Premium", - "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", - "ownerId": "1a1854d0-5b82-11e9-9e4a-3a8c013b5748", - "usageThreshold": 107374182400, - "usedBytes": 0, - "exportPolicy": { - "rules": [ - { - "ruleIndex": 1, - "unixReadOnly": false, - "unixReadWrite": true, - "cifs": false, - "nfsv3": true, - "nfsv4": false, - "nfsv41": false, - "allowedClients": "0.0.0.0/0", - "kerberos5ReadOnly": false, - "kerberos5ReadWrite": false, - "kerberos5iReadOnly": false, - "kerberos5iReadWrite": false, - "kerberos5pReadOnly": false, - "kerberos5pReadWrite": false, - "hasRootAccess": true, - "chownMode": "Restricted" - } - ] - }, - "protocolTypes": [ - "NFSv3" - ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", - "networkFeatures": "Basic", - "storageToNetworkProximity": "Default", - "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "poolId": "a34fac4d-8c48-1ba1-30a0-b412ae03d210", - "mountTargets": [ - { - "provisioningState": "", - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "startIp": "", - "endIp": "", - "gateway": "", - "netmask": "", - "subnet": "", - "ipAddress": "10.0.0.4" - } - ], - "throughputMibps": 6.25, - "kerberosEnabled": false, - "securityStyle": "Unix", - "smbEncryption": false, - "smbContinuouslyAvailable": false, - "ldapEnabled": false, - "unixPermissions": "0770", - "coolAccess": false, - "avsDataStore": "Disabled", - "smbAccessBasedEnumeration": "Disabled", - "smbNonBrowsable": "Disabled", - "provisioningState": "Succeeded" - }, - "systemData": { - "createdBy": "00000000-0000-0000-0000-000000000000", - "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", - "lastModifiedBy": "00000000-0000-0000-0000-000000000000", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" - } + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Broken", + "totalProgress": "18032", + "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/deleteReplication?api-version=2022-05-01", - "RequestMethod": "POST", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestMethod": "GET", "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a88310d0-755d-4a9d-ad9b-40421f8b1aed?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:58:24 GMT", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:50:29 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a88310d0-755d-4a9d-ad9b-40421f8b1aed?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c084ce69-d06e-48a7-812b-8791d0249b64", - "x-ms-ratelimit-remaining-subscription-writes": "1194", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115825Z:c084ce69-d06e-48a7-812b-8791d0249b64", + "x-ms-correlation-request-id": "403d985e-2778-4c51-a1fc-d53fe167680d", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225029Z:403d985e-2778-4c51-a1fc-d53fe167680d", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": { + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Broken", + "totalProgress": "18032", + "errorMessage": "" + } }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", @@ -14438,7 +16741,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14446,7 +16749,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:25 GMT", + "Date": "Tue, 25 Oct 2022 22:50:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14454,19 +16757,59 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5d92a58b-2483-4967-b819-d97fb7d86988", - "x-ms-ratelimit-remaining-subscription-reads": "11734", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115825Z:5d92a58b-2483-4967-b819-d97fb7d86988", + "x-ms-correlation-request-id": "265c2b96-b346-4a58-8008-a13de2b5463d", + "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225031Z:265c2b96-b346-4a58-8008-a13de2b5463d", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "healthy": true, "relationshipStatus": "Idle", "mirrorState": "Broken", - "totalProgress": "21312", + "totalProgress": "18032", "errorMessage": "" } }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f4709e87-c1fe-4578-8a4f-89c8954cfaef?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:50:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ce789145-75c0-4fc5-a015-7bfb5e6a38d7", + "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225031Z:ce789145-75c0-4fc5-a015-7bfb5e6a38d7", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f4709e87-c1fe-4578-8a4f-89c8954cfaef", + "name": "f4709e87-c1fe-4578-8a4f-89c8954cfaef", + "status": "ResyncReplication", + "startTime": "2022-10-25T22:50:01.2583005Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } + } + }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", "RequestMethod": "GET", @@ -14474,7 +16817,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14482,7 +16825,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:26 GMT", + "Date": "Tue, 25 Oct 2022 22:50:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14490,27 +16833,67 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cce26017-ecd2-4d8d-8386-1af701eeba04", - "x-ms-ratelimit-remaining-subscription-reads": "11733", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115827Z:cce26017-ecd2-4d8d-8386-1af701eeba04", + "x-ms-correlation-request-id": "5f5b5c5a-655b-446e-a544-051e8cee6525", + "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225032Z:5f5b5c5a-655b-446e-a544-051e8cee6525", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": false, - "relationshipStatus": "", - "mirrorState": "", - "totalProgress": "", - "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted." + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Mirrored", + "totalProgress": "21312", + "errorMessage": "" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f4709e87-c1fe-4578-8a4f-89c8954cfaef?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:51:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a1bb918a-a1bf-46d3-a0bc-4cbf5f98e113", + "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225101Z:a1bb918a-a1bf-46d3-a0bc-4cbf5f98e113", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f4709e87-c1fe-4578-8a4f-89c8954cfaef", + "name": "f4709e87-c1fe-4578-8a4f-89c8954cfaef", + "status": "Succeeded", + "startTime": "2022-10-25T22:50:01.2583005Z", + "endTime": "2022-10-25T22:50:41.656927Z", + "percentComplete": 100.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/f4709e87-c1fe-4578-8a4f-89c8954cfaef?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14518,7 +16901,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:27 GMT", + "Date": "Tue, 25 Oct 2022 22:51:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14526,63 +16909,150 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf747085-ceda-44db-a2c3-869f269990c8", - "x-ms-ratelimit-remaining-subscription-reads": "11732", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115828Z:cf747085-ceda-44db-a2c3-869f269990c8", + "x-ms-correlation-request-id": "ae620ecb-9279-4fdf-8ef4-81c3908255f8", + "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225102Z:ae620ecb-9279-4fdf-8ef4-81c3908255f8", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": false, - "relationshipStatus": "", - "mirrorState": "", - "totalProgress": "", - "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted." + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A50%3A41.6417081Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "DataProtection", + "dataProtection": { + "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "replicationPolicy": "MirrorAllSnapshots", + "replicationStatus": "Mirrored", + "remotePath": { + "externalHostName": "az-bn13-f01c01-bs118-sto", + "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_45c6cd" + }, + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "ownerId": "1a1854d0-5b82-11e9-9e4a-3a8c013b5748", + "usageThreshold": 107374182400, + "usedBytes": 0, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv4": false, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "storageToNetworkProximity": "Default", + "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "poolId": "8905b6d9-5b7d-b789-987b-70bbe780ff92", + "mountTargets": [ + { + "provisioningState": "", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "startIp": "", + "endIp": "", + "gateway": "", + "netmask": "", + "subnet": "", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "coolAccess": false, + "avsDataStore": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "smbNonBrowsable": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:38:34.3076433Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/breakReplication?api-version=2022-05-01", + "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "Content-Type": "application/json", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8e3ba367-6a58-461f-aa51-67b0ab769c4a?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:29 GMT", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 22:51:02 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8e3ba367-6a58-461f-aa51-67b0ab769c4a?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "232eff86-0993-41a1-b04d-0bb7e349dc0b", - "x-ms-ratelimit-remaining-subscription-reads": "11731", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115829Z:232eff86-0993-41a1-b04d-0bb7e349dc0b", + "x-ms-correlation-request-id": "f5ddc5c3-a826-4c3e-80a8-a8b26708192c", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225102Z:f5ddc5c3-a826-4c3e-80a8-a8b26708192c", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "healthy": false, - "relationshipStatus": "", - "mirrorState": "", - "totalProgress": "", - "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted." - } + "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8e3ba367-6a58-461f-aa51-67b0ab769c4a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14590,7 +17060,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:30 GMT", + "Date": "Tue, 25 Oct 2022 22:51:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14598,17 +17068,21 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea58491a-b8ca-4277-95b9-ddf306cdcd73", - "x-ms-ratelimit-remaining-subscription-reads": "11730", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115831Z:ea58491a-b8ca-4277-95b9-ddf306cdcd73", + "x-ms-correlation-request-id": "c9ea3073-f7cb-482d-87fa-fee75bdab9b7", + "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225103Z:c9ea3073-f7cb-482d-87fa-fee75bdab9b7", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": false, - "relationshipStatus": "", - "mirrorState": "", - "totalProgress": "", - "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted." + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8e3ba367-6a58-461f-aa51-67b0ab769c4a", + "name": "8e3ba367-6a58-461f-aa51-67b0ab769c4a", + "status": "BreakReplication", + "startTime": "2022-10-25T22:51:02.8694078Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } } }, { @@ -14618,7 +17092,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14626,7 +17100,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:31 GMT", + "Date": "Tue, 25 Oct 2022 22:51:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14634,27 +17108,27 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd93ddca-b5bd-4db2-9fc7-4aae7c873a44", - "x-ms-ratelimit-remaining-subscription-reads": "11729", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115832Z:bd93ddca-b5bd-4db2-9fc7-4aae7c873a44", + "x-ms-correlation-request-id": "9cc52e05-64d1-4b85-93e0-847e885dd066", + "x-ms-ratelimit-remaining-subscription-reads": "11689", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225104Z:9cc52e05-64d1-4b85-93e0-847e885dd066", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": false, - "relationshipStatus": "", - "mirrorState": "", - "totalProgress": "", - "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted." + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Mirrored", + "totalProgress": "21312", + "errorMessage": "" } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8e3ba367-6a58-461f-aa51-67b0ab769c4a?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14662,7 +17136,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:33 GMT", + "Date": "Tue, 25 Oct 2022 22:51:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14670,27 +17144,31 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e20011fb-1ca6-41f4-8af7-3d20877dd4aa", - "x-ms-ratelimit-remaining-subscription-reads": "11728", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115833Z:e20011fb-1ca6-41f4-8af7-3d20877dd4aa", + "x-ms-correlation-request-id": "d08adb43-5102-4a87-a64f-6c5ccb218164", + "x-ms-ratelimit-remaining-subscription-reads": "11688", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225133Z:d08adb43-5102-4a87-a64f-6c5ccb218164", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": false, - "relationshipStatus": "", - "mirrorState": "", - "totalProgress": "", - "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted." + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8e3ba367-6a58-461f-aa51-67b0ab769c4a", + "name": "8e3ba367-6a58-461f-aa51-67b0ab769c4a", + "status": "Succeeded", + "startTime": "2022-10-25T22:51:02.8694078Z", + "endTime": "2022-10-25T22:51:11.817279Z", + "percentComplete": 100.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/8e3ba367-6a58-461f-aa51-67b0ab769c4a?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14698,7 +17176,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:34 GMT", + "Date": "Tue, 25 Oct 2022 22:51:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14706,63 +17184,149 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b56e3253-fac6-4741-ac8c-e12e6fd84be8", - "x-ms-ratelimit-remaining-subscription-reads": "11727", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115835Z:b56e3253-fac6-4741-ac8c-e12e6fd84be8", + "x-ms-correlation-request-id": "eb9b8f1a-7a46-4b4c-9660-33f3aaa76a7c", + "x-ms-ratelimit-remaining-subscription-reads": "11687", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225133Z:eb9b8f1a-7a46-4b4c-9660-33f3aaa76a7c", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": false, - "relationshipStatus": "", - "mirrorState": "", - "totalProgress": "", - "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted." + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", + "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A51%3A11.8032206Z\u0027\u0022", + "location": "eastus2", + "tags": { + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" + }, + "properties": { + "volumeType": "", + "dataProtection": { + "replication": { + "replicationId": "23625654-60e8-f90b-606d-8808f31641ce", + "endpointType": "Dst", + "replicationSchedule": "_10minutely", + "replicationPolicy": "MirrorAllSnapshots", + "replicationStatus": "Mirrored", + "remotePath": { + "externalHostName": "az-bn13-f01c01-bs118-sto", + "serverName": "svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "volumeName": "vol_sdk_py_tests_vol_4_b2_86eb264b_45c6cd" + }, + "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", + "remoteVolumeRegion": "westus2" + } + }, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "serviceLevel": "Premium", + "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", + "ownerId": "1a1854d0-5b82-11e9-9e4a-3a8c013b5748", + "usageThreshold": 107374182400, + "usedBytes": 0, + "exportPolicy": { + "rules": [ + { + "ruleIndex": 1, + "unixReadOnly": false, + "unixReadWrite": true, + "cifs": false, + "nfsv3": true, + "nfsv4": false, + "nfsv41": false, + "allowedClients": "0.0.0.0/0", + "kerberos5ReadOnly": false, + "kerberos5ReadWrite": false, + "kerberos5iReadOnly": false, + "kerberos5iReadWrite": false, + "kerberos5pReadOnly": false, + "kerberos5pReadWrite": false, + "hasRootAccess": true, + "chownMode": "Restricted" + } + ] + }, + "protocolTypes": [ + "NFSv3" + ], + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", + "networkFeatures": "Basic", + "storageToNetworkProximity": "Default", + "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", + "poolId": "8905b6d9-5b7d-b789-987b-70bbe780ff92", + "mountTargets": [ + { + "provisioningState": "", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "startIp": "", + "endIp": "", + "gateway": "", + "netmask": "", + "subnet": "", + "ipAddress": "10.0.0.4" + } + ], + "throughputMibps": 6.25, + "kerberosEnabled": false, + "securityStyle": "Unix", + "smbEncryption": false, + "smbContinuouslyAvailable": false, + "ldapEnabled": false, + "unixPermissions": "0770", + "coolAccess": false, + "avsDataStore": "Disabled", + "smbAccessBasedEnumeration": "Disabled", + "smbNonBrowsable": "Disabled", + "provisioningState": "Succeeded" + }, + "systemData": { + "createdBy": "00000000-0000-0000-0000-000000000000", + "createdByType": "Application", + "createdAt": "2022-10-25T22:38:34.3076433Z", + "lastModifiedBy": "00000000-0000-0000-0000-000000000000", + "lastModifiedByType": "Application", + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" + } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/deleteReplication?api-version=2022-05-01", + "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4e76c7df-b9d4-4c51-9e5c-7e32fbb0ea17?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:35 GMT", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 22:51:33 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4e76c7df-b9d4-4c51-9e5c-7e32fbb0ea17?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec01bfca-a958-4531-962f-bb2688de692b", - "x-ms-ratelimit-remaining-subscription-reads": "11726", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115836Z:ec01bfca-a958-4531-962f-bb2688de692b", + "x-ms-correlation-request-id": "db2b9f3c-23e0-4c62-abd6-8e7f1dd6e752", + "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225134Z:db2b9f3c-23e0-4c62-abd6-8e7f1dd6e752", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "healthy": false, - "relationshipStatus": "", - "mirrorState": "", - "totalProgress": "", - "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted." - } + "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b/replicationStatus?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4e76c7df-b9d4-4c51-9e5c-7e32fbb0ea17?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14770,7 +17334,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:37 GMT", + "Date": "Tue, 25 Oct 2022 22:51:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14778,17 +17342,21 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cac77f6e-5aea-4cd7-93d0-4548151220cf", - "x-ms-ratelimit-remaining-subscription-reads": "11725", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115837Z:cac77f6e-5aea-4cd7-93d0-4548151220cf", + "x-ms-correlation-request-id": "d7e6d1b9-e7c6-4292-8db1-429f79c523b6", + "x-ms-ratelimit-remaining-subscription-reads": "11686", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225134Z:d7e6d1b9-e7c6-4292-8db1-429f79c523b6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": false, - "relationshipStatus": "", - "mirrorState": "", - "totalProgress": "", - "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted." + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4e76c7df-b9d4-4c51-9e5c-7e32fbb0ea17", + "name": "4e76c7df-b9d4-4c51-9e5c-7e32fbb0ea17", + "status": "DeleteReplication", + "startTime": "2022-10-25T22:51:34.4508679Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } } }, { @@ -14798,7 +17366,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14806,7 +17374,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:38 GMT", + "Date": "Tue, 25 Oct 2022 22:51:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14814,17 +17382,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43947aef-a4e1-4246-96b9-0d19013afb31", - "x-ms-ratelimit-remaining-subscription-reads": "11724", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115839Z:43947aef-a4e1-4246-96b9-0d19013afb31", + "x-ms-correlation-request-id": "ec24819e-5018-4d0f-ae21-cbf6571dcb2a", + "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225134Z:ec24819e-5018-4d0f-ae21-cbf6571dcb2a", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "healthy": false, - "relationshipStatus": "", - "mirrorState": "", - "totalProgress": "", - "errorMessage": "The replication for volume: sdk-py-tests-vol-4-b2-86eb264b is currently being deleted." + "healthy": true, + "relationshipStatus": "Idle", + "mirrorState": "Broken", + "totalProgress": "21312", + "errorMessage": "" } }, { @@ -14834,7 +17402,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14842,7 +17410,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:39 GMT", + "Date": "Tue, 25 Oct 2022 22:51:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14850,9 +17418,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80096073-9877-4107-880c-e354fd69efe0", - "x-ms-ratelimit-remaining-subscription-reads": "11723", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115840Z:80096073-9877-4107-880c-e354fd69efe0", + "x-ms-correlation-request-id": "9350aaa1-a4c9-4758-a882-ee83abcbcf56", + "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225136Z:9350aaa1-a4c9-4758-a882-ee83abcbcf56", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -14870,7 +17438,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14878,7 +17446,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:41 GMT", + "Date": "Tue, 25 Oct 2022 22:51:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14886,9 +17454,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e27e6369-c8ab-47b9-94f9-8dec4b12e40e", - "x-ms-ratelimit-remaining-subscription-reads": "11722", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115841Z:e27e6369-c8ab-47b9-94f9-8dec4b12e40e", + "x-ms-correlation-request-id": "7ae09caa-a76b-478b-b6fd-3f68d83bc76e", + "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225137Z:7ae09caa-a76b-478b-b6fd-3f68d83bc76e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -14906,7 +17474,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14914,7 +17482,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:42 GMT", + "Date": "Tue, 25 Oct 2022 22:51:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14922,9 +17490,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a636d3f-6bc4-4778-83ad-60f1f1d68b21", - "x-ms-ratelimit-remaining-subscription-reads": "11721", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115843Z:3a636d3f-6bc4-4778-83ad-60f1f1d68b21", + "x-ms-correlation-request-id": "2ada94a6-96d8-461b-91ec-df98c1857355", + "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225139Z:2ada94a6-96d8-461b-91ec-df98c1857355", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -14942,7 +17510,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14950,7 +17518,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:43 GMT", + "Date": "Tue, 25 Oct 2022 22:51:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14958,9 +17526,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55343e95-3f3b-42c2-abdf-b0eb7bf05fd7", - "x-ms-ratelimit-remaining-subscription-reads": "11720", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115844Z:55343e95-3f3b-42c2-abdf-b0eb7bf05fd7", + "x-ms-correlation-request-id": "9545dc23-75d3-4d27-b3c8-0796595a172e", + "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225140Z:9545dc23-75d3-4d27-b3c8-0796595a172e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -14978,7 +17546,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -14986,7 +17554,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:45 GMT", + "Date": "Tue, 25 Oct 2022 22:51:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -14994,9 +17562,9 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5034de3d-4834-4e93-ad85-50908f0683b5", - "x-ms-ratelimit-remaining-subscription-reads": "11719", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115845Z:5034de3d-4834-4e93-ad85-50908f0683b5", + "x-ms-correlation-request-id": "c60ecaff-819e-4f01-8a35-84b18ebcaf23", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225141Z:c60ecaff-819e-4f01-8a35-84b18ebcaf23", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -15014,7 +17582,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 400, @@ -15022,15 +17590,15 @@ "Cache-Control": "no-cache", "Content-Length": "105", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:46 GMT", + "Date": "Tue, 25 Oct 2022 22:51:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "44101876-fd74-483d-9ecb-e80dff408403", - "x-ms-ratelimit-remaining-subscription-reads": "11718", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115847Z:44101876-fd74-483d-9ecb-e80dff408403", + "x-ms-correlation-request-id": "57f684a9-ef55-4053-91fc-c9517823158b", + "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225143Z:57f684a9-ef55-4053-91fc-c9517823158b", "X-Powered-By": "ASP.NET" }, "ResponseBody": { @@ -15047,7 +17615,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15055,8 +17623,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A58%3A32.0297394Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:51:46 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A51%3A39.7333269Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -15064,24 +17632,24 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "142e039f-27d7-450b-8247-f90baf31d1eb", - "x-ms-ratelimit-remaining-subscription-reads": "11717", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115849Z:142e039f-27d7-450b-8247-f90baf31d1eb", + "x-ms-correlation-request-id": "c1742779-a434-444a-9616-f9788eb4ff7e", + "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225146Z:c1742779-a434-444a-9616-f9788eb4ff7e", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A58%3A32.0297394Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A51%3A39.7333269Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { "volumeType": "", "dataProtection": {}, - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "usageThreshold": 107374182400, @@ -15109,7 +17677,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", @@ -15124,8 +17692,8 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "ipAddress": "10.0.0.4" } ], @@ -15145,10 +17713,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -15159,7 +17727,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15167,8 +17735,8 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:48 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A58%3A25.3373819Z\u0027\u0022", + "Date": "Tue, 25 Oct 2022 22:51:46 GMT", + "ETag": "W/\u0022datetime\u00272022-10-25T22%3A51%3A43.2640169Z\u0027\u0022", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -15176,32 +17744,24 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ecd4696-c823-4905-8d06-2b0df40c2dd4", - "x-ms-ratelimit-remaining-subscription-reads": "11716", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115849Z:2ecd4696-c823-4905-8d06-2b0df40c2dd4", + "x-ms-correlation-request-id": "930394d8-6034-4302-a912-e262286fd326", + "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225147Z:930394d8-6034-4302-a912-e262286fd326", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A58%3A25.3373819Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A51%3A43.2640169Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "", - "dataProtection": { - "replication": { - "replicationId": "22c46e73-38b5-8132-7797-52d45ef54a9a", - "endpointType": "Dst", - "replicationSchedule": "_10minutely", - "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", - "remoteVolumeRegion": "westus2" - } - }, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "dataProtection": {}, + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "usageThreshold": 107374182400, @@ -15229,7 +17789,7 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", @@ -15241,126 +17801,14 @@ "unixPermissions": "0770", "mountTargets": [ { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "ipAddress": "10.0.0.4" - } - ], - "throughputMibps": 6.25, - "coolAccess": false, - "avsDataStore": "Disabled", - "maximumNumberOfFiles": 100000000, - "smbNonBrowsable": "Disabled", - "smbAccessBasedEnumeration": "Disabled", - "provisioningState": "DeleteReplication" - }, - "systemData": { - "createdBy": "00000000-0000-0000-0000-000000000000", - "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", - "lastModifiedBy": "00000000-0000-0000-0000-000000000000", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:50 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A58%3A32.0297394Z\u0027\u0022", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ece00fa5-3899-4db9-be1d-4d93fed03c99", - "x-ms-ratelimit-remaining-subscription-reads": "11715", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115851Z:ece00fa5-3899-4db9-be1d-4d93fed03c99", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", - "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A58%3A32.0297394Z\u0027\u0022", - "location": "westus2", - "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" - }, - "properties": { - "volumeType": "", - "dataProtection": {}, - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "serviceLevel": "Premium", - "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", - "usageThreshold": 107374182400, - "exportPolicy": { - "rules": [ - { - "ruleIndex": 1, - "unixReadOnly": false, - "unixReadWrite": true, - "cifs": false, - "nfsv3": true, - "nfsv41": false, - "allowedClients": "0.0.0.0/0", - "kerberos5ReadOnly": false, - "kerberos5ReadWrite": false, - "kerberos5iReadOnly": false, - "kerberos5iReadWrite": false, - "kerberos5pReadOnly": false, - "kerberos5pReadWrite": false, - "hasRootAccess": true, - "chownMode": "Restricted" - } - ] - }, - "protocolTypes": [ - "NFSv3" - ], - "baremetalTenantId": "baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", - "networkFeatures": "Basic", - "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", - "storageToNetworkProximity": "T2", - "snapshotDirectoryVisible": true, - "kerberosEnabled": false, - "securityStyle": "Unix", - "smbEncryption": false, - "smbContinuouslyAvailable": false, - "encryptionKeySource": "Microsoft.NetApp", - "ldapEnabled": false, - "unixPermissions": "0770", - "mountTargets": [ - { - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "ipAddress": "10.0.0.4" } ], "throughputMibps": 6.25, - "volumeSpecName": "generic", "coolAccess": false, "avsDataStore": "Disabled", - "isDefaultQuotaEnabled": false, - "defaultUserQuotaInKiBs": 0, - "defaultGroupQuotaInKiBs": 0, - "enableSubvolumes": "Disabled", "maximumNumberOfFiles": 100000000, "smbNonBrowsable": "Disabled", "smbAccessBasedEnumeration": "Disabled", @@ -15369,155 +17817,91 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestMethod": "DELETE", "RequestHeaders": { - "Accept": "application/json", + "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "Content-Length": "0", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 202, "ResponseHeaders": { + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:50 GMT", - "ETag": "W/\u0022datetime\u00272022-09-19T11%3A58%3A50.540642Z\u0027\u0022", + "Content-Length": "0", + "Date": "Tue, 25 Oct 2022 22:51:48 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a68ed3ec-6011-4dca-a9e8-b1b216a9b9d8", - "x-ms-ratelimit-remaining-subscription-reads": "11714", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115851Z:a68ed3ec-6011-4dca-a9e8-b1b216a9b9d8", + "x-ms-correlation-request-id": "0e69cdad-ca66-4732-bfab-2ee13e836824", + "x-ms-ratelimit-remaining-subscription-deletes": "14999", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225149Z:0e69cdad-ca66-4732-bfab-2ee13e836824", "X-Powered-By": "ASP.NET" }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", - "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A58%3A50.540642Z\u0027\u0022", - "location": "eastus2", - "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" - }, - "properties": { - "volumeType": "", - "dataProtection": {}, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "serviceLevel": "Premium", - "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", - "usageThreshold": 107374182400, - "exportPolicy": { - "rules": [ - { - "ruleIndex": 1, - "unixReadOnly": false, - "unixReadWrite": true, - "cifs": false, - "nfsv3": true, - "nfsv41": false, - "allowedClients": "0.0.0.0/0", - "kerberos5ReadOnly": false, - "kerberos5ReadWrite": false, - "kerberos5iReadOnly": false, - "kerberos5iReadWrite": false, - "kerberos5pReadOnly": false, - "kerberos5pReadWrite": false, - "hasRootAccess": true, - "chownMode": "Restricted" - } - ] - }, - "protocolTypes": [ - "NFSv3" - ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", - "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", - "networkFeatures": "Basic", - "storageToNetworkProximity": "Default", - "kerberosEnabled": false, - "securityStyle": "Unix", - "smbEncryption": false, - "smbContinuouslyAvailable": false, - "ldapEnabled": false, - "unixPermissions": "0770", - "mountTargets": [ - { - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "ipAddress": "10.0.0.4" - } - ], - "throughputMibps": 6.25, - "coolAccess": false, - "avsDataStore": "Disabled", - "maximumNumberOfFiles": 100000000, - "smbNonBrowsable": "Disabled", - "smbAccessBasedEnumeration": "Disabled", - "provisioningState": "Succeeded" - }, - "systemData": { - "createdBy": "00000000-0000-0000-0000-000000000000", - "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", - "lastModifiedBy": "00000000-0000-0000-0000-000000000000", - "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" - } - } + "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b?api-version=2022-05-01", - "RequestMethod": "DELETE", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476?api-version=2022-05-01", + "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 200, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6a04c070-2a83-4cbd-a2f6-2793d9e9bad3?api-version=2022-05-01", "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 11:58:51 GMT", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:51:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6a04c070-2a83-4cbd-a2f6-2793d9e9bad3?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6c68f86-37c5-4410-b46c-f367283878a7", - "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115851Z:f6c68f86-37c5-4410-b46c-f367283878a7", + "x-ms-correlation-request-id": "51143b5f-2211-4abd-a1bc-d50246e0d866", + "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225149Z:51143b5f-2211-4abd-a1bc-d50246e0d866", "X-Powered-By": "ASP.NET" }, - "ResponseBody": null + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476", + "name": "078a9414-ac20-4c2d-b4db-888725d68476", + "status": "Deleting", + "startTime": "2022-10-25T22:51:48.9178894Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" + } + } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a88310d0-755d-4a9d-ad9b-40421f8b1aed?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4e76c7df-b9d4-4c51-9e5c-7e32fbb0ea17?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15525,7 +17909,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:54 GMT", + "Date": "Tue, 25 Oct 2022 22:52:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -15533,17 +17917,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d2e51b8-ca76-4e81-9b27-121a2506ac42", - "x-ms-ratelimit-remaining-subscription-reads": "11713", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115855Z:2d2e51b8-ca76-4e81-9b27-121a2506ac42", + "x-ms-correlation-request-id": "1dcf4190-2d81-440b-9241-c460e7c479cd", + "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225204Z:1dcf4190-2d81-440b-9241-c460e7c479cd", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a88310d0-755d-4a9d-ad9b-40421f8b1aed", - "name": "a88310d0-755d-4a9d-ad9b-40421f8b1aed", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4e76c7df-b9d4-4c51-9e5c-7e32fbb0ea17", + "name": "4e76c7df-b9d4-4c51-9e5c-7e32fbb0ea17", "status": "Succeeded", - "startTime": "2022-09-19T11:58:25.3368331Z", - "endTime": "2022-09-19T11:58:50.5467168Z", + "startTime": "2022-10-25T22:51:34.4508679Z", + "endTime": "2022-10-25T22:51:43.2679256Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" @@ -15551,13 +17935,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/a88310d0-755d-4a9d-ad9b-40421f8b1aed?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/4e76c7df-b9d4-4c51-9e5c-7e32fbb0ea17?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15565,7 +17949,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:58:54 GMT", + "Date": "Tue, 25 Oct 2022 22:52:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -15573,24 +17957,24 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "971750b9-ca6f-412d-8af6-6b6279552a85", - "x-ms-ratelimit-remaining-subscription-reads": "11712", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115855Z:971750b9-ca6f-412d-8af6-6b6279552a85", + "x-ms-correlation-request-id": "ed83a863-b8ad-4341-8f4c-fe16442f4e91", + "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225205Z:ed83a863-b8ad-4341-8f4c-fe16442f4e91", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A58%3A50.540642Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A51%3A43.2640169Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "", "dataProtection": {}, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "ownerId": "1a1854d0-5b82-11e9-9e4a-3a8c013b5748", @@ -15621,17 +18005,17 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "poolId": "a34fac4d-8c48-1ba1-30a0-b412ae03d210", + "poolId": "8905b6d9-5b7d-b789-987b-70bbe780ff92", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "startIp": "", "endIp": "", "gateway": "", @@ -15656,21 +18040,21 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6a04c070-2a83-4cbd-a2f6-2793d9e9bad3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15678,7 +18062,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:59:22 GMT", + "Date": "Tue, 25 Oct 2022 22:52:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -15686,16 +18070,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f6c3e18-4c15-4173-93aa-23f7e3d1860f", - "x-ms-ratelimit-remaining-subscription-reads": "11711", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115922Z:8f6c3e18-4c15-4173-93aa-23f7e3d1860f", + "x-ms-correlation-request-id": "f8991f8b-a7dd-4c28-a9b4-8d94641c15d2", + "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225219Z:f8991f8b-a7dd-4c28-a9b4-8d94641c15d2", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6a04c070-2a83-4cbd-a2f6-2793d9e9bad3", - "name": "6a04c070-2a83-4cbd-a2f6-2793d9e9bad3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476", + "name": "078a9414-ac20-4c2d-b4db-888725d68476", "status": "Deleting", - "startTime": "2022-09-19T11:58:51.8749907Z", + "startTime": "2022-10-25T22:51:48.9178894Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -15704,13 +18088,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6a04c070-2a83-4cbd-a2f6-2793d9e9bad3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15718,7 +18102,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 11:59:52 GMT", + "Date": "Tue, 25 Oct 2022 22:52:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -15726,16 +18110,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86d4b48f-e813-499c-9853-9d3c8439ac99", - "x-ms-ratelimit-remaining-subscription-reads": "11710", - "x-ms-routing-request-id": "WESTEUROPE:20220919T115952Z:86d4b48f-e813-499c-9853-9d3c8439ac99", + "x-ms-correlation-request-id": "09bc0baf-71eb-41d2-9bf8-c070821cd8a9", + "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225249Z:09bc0baf-71eb-41d2-9bf8-c070821cd8a9", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6a04c070-2a83-4cbd-a2f6-2793d9e9bad3", - "name": "6a04c070-2a83-4cbd-a2f6-2793d9e9bad3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476", + "name": "078a9414-ac20-4c2d-b4db-888725d68476", "status": "Deleting", - "startTime": "2022-09-19T11:58:51.8749907Z", + "startTime": "2022-10-25T22:51:48.9178894Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -15744,13 +18128,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6a04c070-2a83-4cbd-a2f6-2793d9e9bad3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15758,7 +18142,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:00:22 GMT", + "Date": "Tue, 25 Oct 2022 22:53:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -15766,17 +18150,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ff48075-2c6a-4c4e-b6fe-08d763c32dff", - "x-ms-ratelimit-remaining-subscription-reads": "11709", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120023Z:6ff48075-2c6a-4c4e-b6fe-08d763c32dff", + "x-ms-correlation-request-id": "3e3cabd8-081c-459c-8502-596a88bdedf6", + "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225319Z:3e3cabd8-081c-459c-8502-596a88bdedf6", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6a04c070-2a83-4cbd-a2f6-2793d9e9bad3", - "name": "6a04c070-2a83-4cbd-a2f6-2793d9e9bad3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476", + "name": "078a9414-ac20-4c2d-b4db-888725d68476", "status": "Succeeded", - "startTime": "2022-09-19T11:58:51.8749907Z", - "endTime": "2022-09-19T11:59:58.1471724Z", + "startTime": "2022-10-25T22:51:48.9178894Z", + "endTime": "2022-10-25T22:52:52.651574Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b" @@ -15784,13 +18168,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/6a04c070-2a83-4cbd-a2f6-2793d9e9bad3?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/078a9414-ac20-4c2d-b4db-888725d68476?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15798,7 +18182,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:00:22 GMT", + "Date": "Tue, 25 Oct 2022 22:53:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -15806,24 +18190,24 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "190599e6-9c2f-4288-a7ee-d9a73b954b34", - "x-ms-ratelimit-remaining-subscription-reads": "11708", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120023Z:190599e6-9c2f-4288-a7ee-d9a73b954b34", + "x-ms-correlation-request-id": "2127bfdb-7420-4404-8420-fb6db02ae1d0", + "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225320Z:2127bfdb-7420-4404-8420-fb6db02ae1d0", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2/sdk-py-tests-vol-4-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T11%3A59%3A49.069468Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A52%3A43.6268182Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:47:02.2269593Z" + "CreatedOnDate": "2022-10-25T22:38:33.6305947Z" }, "properties": { "volumeType": "", "dataProtection": {}, - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-4-b2-86eb264b", "ownerId": "1a1854d0-5b82-11e9-9e4a-3a8c013b5748", @@ -15854,17 +18238,17 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_b4971377", + "baremetalTenantId": "DELETED_baremetalTenant_svm_1a1854d05b8211e99e4a3a8c013b5748_3ff5c9f9", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "storageToNetworkProximity": "Default", "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-4-b2-86eb264b", - "poolId": "a34fac4d-8c48-1ba1-30a0-b412ae03d210", + "poolId": "8905b6d9-5b7d-b789-987b-70bbe780ff92", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "7638ca56-916c-28cf-85d0-6849467c9db9", - "fileSystemId": "7638ca56-916c-28cf-85d0-6849467c9db9", + "mountTargetId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", + "fileSystemId": "4bc0c480-7b58-6f41-7907-129ae4dc6156", "startIp": "", "endIp": "", "gateway": "", @@ -15889,10 +18273,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:47:02.9524952Z", + "createdAt": "2022-10-25T22:38:34.3076433Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:47:02.9524952Z" + "lastModifiedAt": "2022-10-25T22:38:34.3076433Z" } } }, @@ -15903,7 +18287,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -15911,14 +18295,14 @@ "Cache-Control": "no-cache", "Content-Length": "332", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:03:44 GMT", + "Date": "Tue, 25 Oct 2022 22:56:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8292e3f-ac78-4a3a-991c-cc1cccdd0948", + "x-ms-correlation-request-id": "c4107782-0c55-4dc2-9b4e-208dad90d3e6", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120344Z:f8292e3f-ac78-4a3a-991c-cc1cccdd0948" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225642Z:c4107782-0c55-4dc2-9b4e-208dad90d3e6" }, "ResponseBody": { "error": { @@ -15935,36 +18319,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/29fc6831-3096-4ee5-9472-9f06c4ad48f2?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b1aa96b0-624f-4c5f-9f87-6d64be04e41b?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:03:55 GMT", + "Date": "Tue, 25 Oct 2022 22:56:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/29fc6831-3096-4ee5-9472-9f06c4ad48f2?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b1aa96b0-624f-4c5f-9f87-6d64be04e41b?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99bf4076-bbdc-41d1-8d86-0318164734a5", + "x-ms-correlation-request-id": "11b57548-69d2-4eb0-98dd-ce027dd51471", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120355Z:99bf4076-bbdc-41d1-8d86-0318164734a5", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225654Z:11b57548-69d2-4eb0-98dd-ce027dd51471", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/29fc6831-3096-4ee5-9472-9f06c4ad48f2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b1aa96b0-624f-4c5f-9f87-6d64be04e41b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15972,7 +18356,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:04:25 GMT", + "Date": "Tue, 25 Oct 2022 22:56:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -15980,17 +18364,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ce4e87b-e596-4080-a204-b0f73bba06e1", + "x-ms-correlation-request-id": "eab6fefc-b8f3-4617-9c35-0a50cd26af2d", "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120425Z:0ce4e87b-e596-4080-a204-b0f73bba06e1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225654Z:eab6fefc-b8f3-4617-9c35-0a50cd26af2d", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b1aa96b0-624f-4c5f-9f87-6d64be04e41b", + "name": "b1aa96b0-624f-4c5f-9f87-6d64be04e41b", + "status": "Deleting", + "startTime": "2022-10-25T22:56:54.4552267Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b1aa96b0-624f-4c5f-9f87-6d64be04e41b?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 22:57:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "68a814e8-6737-493b-888b-6656f3ccd097", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225724Z:68a814e8-6737-493b-888b-6656f3ccd097", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/29fc6831-3096-4ee5-9472-9f06c4ad48f2", - "name": "29fc6831-3096-4ee5-9472-9f06c4ad48f2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b1aa96b0-624f-4c5f-9f87-6d64be04e41b", + "name": "b1aa96b0-624f-4c5f-9f87-6d64be04e41b", "status": "Succeeded", - "startTime": "2022-09-19T12:03:55.3272465Z", - "endTime": "2022-09-19T12:03:55.8458578Z", + "startTime": "2022-10-25T22:56:54.4552267Z", + "endTime": "2022-10-25T22:56:55.0646479Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2" @@ -15998,13 +18422,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/29fc6831-3096-4ee5-9472-9f06c4ad48f2?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/b1aa96b0-624f-4c5f-9f87-6d64be04e41b?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -16012,7 +18436,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:04:25 GMT", + "Date": "Tue, 25 Oct 2022 22:57:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -16020,22 +18444,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1bcaa9a-176c-4147-a56f-6b01ac2f6235", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120425Z:b1bcaa9a-176c-4147-a56f-6b01ac2f6235", + "x-ms-correlation-request-id": "38361827-6f23-4eb1-91df-dffc15e4d656", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225725Z:38361827-6f23-4eb1-91df-dffc15e4d656", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2", "name": "sdk-py-tests-acc-2-b2-86eb264b/sdk-py-tests-pool-2", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A03%3A55.3243719Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A56%3A54.4422119Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:46:19.9978489Z" + "CreatedOnDate": "2022-10-25T22:38:21.4661099Z" }, "properties": { - "poolId": "a34fac4d-8c48-1ba1-30a0-b412ae03d210", + "poolId": "8905b6d9-5b7d-b789-987b-70bbe780ff92", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b/capacityPools/sdk-py-tests-pool-2", @@ -16049,10 +18473,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:46:20.6902839Z", + "createdAt": "2022-10-25T22:38:22.1435356Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:46:20.6902839Z" + "lastModifiedAt": "2022-10-25T22:38:22.1435356Z" } } }, @@ -16064,20 +18488,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:04:35 GMT", + "Date": "Tue, 25 Oct 2022 22:57:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18d73f44-efa8-4220-8085-c57e21e9d8af", + "x-ms-correlation-request-id": "3813cb2f-a563-47e4-a35c-9a3ca4030305", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120436Z:18d73f44-efa8-4220-8085-c57e21e9d8af" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225735Z:3813cb2f-a563-47e4-a35c-9a3ca4030305" }, "ResponseBody": null }, @@ -16089,20 +18513,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:04:45 GMT", + "Date": "Tue, 25 Oct 2022 22:57:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66c71249-a80e-421a-9db5-6ac4fb933330", + "x-ms-correlation-request-id": "15e8b8dc-25ba-4c8d-b9be-b6ed491b6b55", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120446Z:66c71249-a80e-421a-9db5-6ac4fb933330" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225745Z:15e8b8dc-25ba-4c8d-b9be-b6ed491b6b55" }, "ResponseBody": null }, @@ -16114,20 +18538,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:04:56 GMT", + "Date": "Tue, 25 Oct 2022 22:57:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a34d32bb-dea0-476d-89cb-3687a6ab9240", + "x-ms-correlation-request-id": "759fc434-d028-4454-8fee-80acf0a07794", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120456Z:a34d32bb-dea0-476d-89cb-3687a6ab9240" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225755Z:759fc434-d028-4454-8fee-80acf0a07794" }, "ResponseBody": null }, @@ -16139,20 +18563,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:05:06 GMT", + "Date": "Tue, 25 Oct 2022 22:58:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b27c0079-fe5a-4297-a9c4-fddb4f4b1821", + "x-ms-correlation-request-id": "e70cb187-8c05-460e-8fbd-444700d3ad53", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120506Z:b27c0079-fe5a-4297-a9c4-fddb4f4b1821" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225806Z:e70cb187-8c05-460e-8fbd-444700d3ad53" }, "ResponseBody": null }, @@ -16163,7 +18587,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -16171,14 +18595,14 @@ "Cache-Control": "no-cache", "Content-Length": "293", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:05:16 GMT", + "Date": "Tue, 25 Oct 2022 22:58:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c20a9811-b734-4fc1-86d0-f327acaa39ae", + "x-ms-correlation-request-id": "34b61be9-77cd-4600-8243-f17e27996bd5", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120517Z:c20a9811-b734-4fc1-86d0-f327acaa39ae" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225816Z:34b61be9-77cd-4600-8243-f17e27996bd5" }, "ResponseBody": { "error": { @@ -16195,36 +18619,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5518caba-c735-425c-8056-b307b7d29891?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/788b890a-7d41-4bbc-a79d-5980829719a0?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:05:17 GMT", + "Date": "Tue, 25 Oct 2022 22:58:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5518caba-c735-425c-8056-b307b7d29891?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/788b890a-7d41-4bbc-a79d-5980829719a0?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6574fc9-f4a9-4d6f-98bd-4399c33e8dba", + "x-ms-correlation-request-id": "31cb3bb6-a508-4c89-b152-a1578ba5c560", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120518Z:c6574fc9-f4a9-4d6f-98bd-4399c33e8dba", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225817Z:31cb3bb6-a508-4c89-b152-a1578ba5c560", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5518caba-c735-425c-8056-b307b7d29891?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/788b890a-7d41-4bbc-a79d-5980829719a0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -16232,7 +18656,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:05:48 GMT", + "Date": "Tue, 25 Oct 2022 22:58:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -16240,17 +18664,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a94f1da3-7bf6-401a-ad35-a81daf393b4d", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120548Z:a94f1da3-7bf6-401a-ad35-a81daf393b4d", + "x-ms-correlation-request-id": "a38b4a18-977c-40b3-afe8-8ec4c8d14dfa", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225817Z:a38b4a18-977c-40b3-afe8-8ec4c8d14dfa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5518caba-c735-425c-8056-b307b7d29891", - "name": "5518caba-c735-425c-8056-b307b7d29891", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/788b890a-7d41-4bbc-a79d-5980829719a0", + "name": "788b890a-7d41-4bbc-a79d-5980829719a0", "status": "Succeeded", - "startTime": "2022-09-19T12:05:17.9412288Z", - "endTime": "2022-09-19T12:05:18.0036611Z", + "startTime": "2022-10-25T22:58:17.2213278Z", + "endTime": "2022-10-25T22:58:17.2525788Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b" @@ -16258,13 +18682,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/5518caba-c735-425c-8056-b307b7d29891?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/eastus2/operationResults/788b890a-7d41-4bbc-a79d-5980829719a0?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -16272,7 +18696,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:05:48 GMT", + "Date": "Tue, 25 Oct 2022 22:58:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -16280,19 +18704,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4727a93b-fe3c-4d06-8e3b-e3e4e6222c5c", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120548Z:4727a93b-fe3c-4d06-8e3b-e3e4e6222c5c", + "x-ms-correlation-request-id": "b575012b-9963-4e25-ba61-fc7c8959f1b1", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225817Z:b575012b-9963-4e25-ba61-fc7c8959f1b1", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b", "name": "sdk-py-tests-acc-2-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A05%3A17.9453056Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A58%3A17.2184705Z\u0027\u0022", "location": "eastus2", "tags": { - "CreatedOnDate": "2022-09-19T11:45:46.6251215Z" + "CreatedOnDate": "2022-10-25T22:38:17.7135428Z" }, "properties": { "encryption": { @@ -16303,10 +18727,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:45:47.6471062Z", + "createdAt": "2022-10-25T22:38:19.1421279Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:45:47.6471062Z" + "lastModifiedAt": "2022-10-25T22:38:19.1421279Z" } } }, @@ -16317,27 +18741,29 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "259", + "Content-Length": "260", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:05:48 GMT", + "Date": "Tue, 25 Oct 2022 22:58:17 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a855c7e-cf36-472c-8136-642e34b367dc", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120548Z:0a855c7e-cf36-472c-8136-642e34b367dc" + "x-ms-correlation-request-id": "f92ebee8-21f3-4b6f-8875-a7dacd756728", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225818Z:f92ebee8-21f3-4b6f-8875-a7dacd756728", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b\u0027 under resource group \u0027sdk-python-tests-rg-R-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2-b2-86eb264b\u0027 is not found." } } }, @@ -16349,76 +18775,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:05:50 GMT", + "Date": "Tue, 25 Oct 2022 22:58:20 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bdd7e36-9b5a-4b07-9862-92bff16af7d1", + "x-ms-correlation-request-id": "a178fa8d-fda0-48d0-9201-7d215dba3fe8", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120550Z:0bdd7e36-9b5a-4b07-9862-92bff16af7d1", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225821Z:a178fa8d-fda0-48d0-9201-7d215dba3fe8", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:06:21 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Server": "Microsoft-IIS/10.0", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56948da6-dcfa-461c-bb6b-3f6a894897cc", - "x-ms-ratelimit-remaining-subscription-reads": "11992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120621Z:56948da6-dcfa-461c-bb6b-3f6a894897cc", - "X-Powered-By": "ASP.NET" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9", - "name": "8654a76a-ff77-447e-af70-de0b20c33eb9", - "status": "Deleting", - "startTime": "2022-09-19T12:05:50.8056025Z", - "endTime": "0001-01-01T00:00:00Z", - "percentComplete": 0.0, - "properties": { - "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -16426,7 +18812,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:06:51 GMT", + "Date": "Tue, 25 Oct 2022 22:58:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -16434,16 +18820,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ec977e9-5460-4578-8a5b-85809733091e", + "x-ms-correlation-request-id": "1f1290d9-b593-45e9-a270-62c9c34f9f35", "x-ms-ratelimit-remaining-subscription-reads": "11991", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120651Z:6ec977e9-5460-4578-8a5b-85809733091e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225821Z:1f1290d9-b593-45e9-a270-62c9c34f9f35", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9", - "name": "8654a76a-ff77-447e-af70-de0b20c33eb9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490", + "name": "598db60c-f023-4270-92ee-cacda2b38490", "status": "Deleting", - "startTime": "2022-09-19T12:05:50.8056025Z", + "startTime": "2022-10-25T22:58:20.8967906Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -16452,13 +18838,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -16466,7 +18852,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:07:21 GMT", + "Date": "Tue, 25 Oct 2022 22:58:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -16474,16 +18860,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c46de598-64cc-49fd-9585-6cd206eadb42", + "x-ms-correlation-request-id": "48dcbdc2-121e-47ef-b4dd-2c9b4d232a58", "x-ms-ratelimit-remaining-subscription-reads": "11990", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120721Z:c46de598-64cc-49fd-9585-6cd206eadb42", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225851Z:48dcbdc2-121e-47ef-b4dd-2c9b4d232a58", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9", - "name": "8654a76a-ff77-447e-af70-de0b20c33eb9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490", + "name": "598db60c-f023-4270-92ee-cacda2b38490", "status": "Deleting", - "startTime": "2022-09-19T12:05:50.8056025Z", + "startTime": "2022-10-25T22:58:20.8967906Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -16492,13 +18878,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -16506,7 +18892,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:07:51 GMT", + "Date": "Tue, 25 Oct 2022 22:59:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -16514,16 +18900,16 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39662ef5-051c-45e2-bc3a-8624052c3452", + "x-ms-correlation-request-id": "0061b02e-c632-449f-8eff-3a671a320504", "x-ms-ratelimit-remaining-subscription-reads": "11989", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120751Z:39662ef5-051c-45e2-bc3a-8624052c3452", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225921Z:0061b02e-c632-449f-8eff-3a671a320504", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9", - "name": "8654a76a-ff77-447e-af70-de0b20c33eb9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490", + "name": "598db60c-f023-4270-92ee-cacda2b38490", "status": "Deleting", - "startTime": "2022-09-19T12:05:50.8056025Z", + "startTime": "2022-10-25T22:58:20.8967906Z", "endTime": "0001-01-01T00:00:00Z", "percentComplete": 0.0, "properties": { @@ -16532,13 +18918,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -16546,7 +18932,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:08:21 GMT", + "Date": "Tue, 25 Oct 2022 22:59:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -16554,17 +18940,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2264ae43-c81a-4a41-afdb-f22906b09b03", + "x-ms-correlation-request-id": "3ae2b4fa-b129-42dc-9963-38f25088bfc4", "x-ms-ratelimit-remaining-subscription-reads": "11988", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120822Z:2264ae43-c81a-4a41-afdb-f22906b09b03", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225952Z:3ae2b4fa-b129-42dc-9963-38f25088bfc4", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9", - "name": "8654a76a-ff77-447e-af70-de0b20c33eb9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490", + "name": "598db60c-f023-4270-92ee-cacda2b38490", "status": "Succeeded", - "startTime": "2022-09-19T12:05:50.8056025Z", - "endTime": "2022-09-19T12:08:15.807996Z", + "startTime": "2022-10-25T22:58:20.8967906Z", + "endTime": "2022-10-25T22:59:41.709591Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b" @@ -16572,13 +18958,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8654a76a-ff77-447e-af70-de0b20c33eb9?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/598db60c-f023-4270-92ee-cacda2b38490?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -16586,7 +18972,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:08:21 GMT", + "Date": "Tue, 25 Oct 2022 22:59:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -16594,24 +18980,24 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a14e6f79-f45b-49d2-86df-792677cb6c3e", + "x-ms-correlation-request-id": "20cfc467-e417-4df1-8771-c86586e62940", "x-ms-ratelimit-remaining-subscription-reads": "11987", - "x-ms-routing-request-id": "WESTEUROPE:20220919T120822Z:a14e6f79-f45b-49d2-86df-792677cb6c3e", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T225952Z:20cfc467-e417-4df1-8771-c86586e62940", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1/sdk-py-tests-vol-3-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts/capacityPools/volumes", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A08%3A06.8772224Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T22%3A59%3A36.2876867Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:41:11.4389459Z" + "CreatedOnDate": "2022-10-25T22:33:11.1307001Z" }, "properties": { "volumeType": "", "dataProtection": {}, - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-3-b2-86eb264b", "ownerId": "8f82c7b4-0509-489d-9e97-d719b9b955b4", @@ -16642,19 +19028,19 @@ "protocolTypes": [ "NFSv3" ], - "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5cfc964a", + "baremetalTenantId": "DELETED_baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_18b0956f", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b/subnets/default", "networkFeatures": "Basic", "networkSiblingSetId": "8dd1978e-584b-5087-bfc6-c261b926b7ba", "storageToNetworkProximity": "T2", "snapshotDirectoryVisible": true, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-3-b2-86eb264b", - "poolId": "6df5feb3-c1da-ac0d-f471-e20b9b4c9a21", + "poolId": "991b8608-5139-9f8b-67da-a062eae36741", "mountTargets": [ { "provisioningState": "", - "mountTargetId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", - "fileSystemId": "9e7d248c-c96d-ba5d-a924-9f68ed3961ad", + "mountTargetId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", + "fileSystemId": "cd82e663-3fc9-4dc7-91f0-e2a853c14398", "startIp": "", "endIp": "", "gateway": "", @@ -16686,10 +19072,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:41:12.5302219Z", + "createdAt": "2022-10-25T22:33:12.1169593Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:41:12.5302219Z" + "lastModifiedAt": "2022-10-25T22:33:12.1169593Z" } } }, @@ -16700,7 +19086,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -16708,14 +19094,14 @@ "Cache-Control": "no-cache", "Content-Length": "330", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:11:43 GMT", + "Date": "Tue, 25 Oct 2022 23:03:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6e197d76-861b-4c8d-be0e-bbc05bb42d73", + "x-ms-correlation-request-id": "1fa53ac2-3c00-44eb-ba97-5dc0ac75775b", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121144Z:6e197d76-861b-4c8d-be0e-bbc05bb42d73" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230314Z:1fa53ac2-3c00-44eb-ba97-5dc0ac75775b" }, "ResponseBody": { "error": { @@ -16732,36 +19118,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a63dadc3-54bb-4b1b-bd65-3599029992d2?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4831f548-dd3a-4f2b-8c0f-fc71bc913202?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:11:55 GMT", + "Date": "Tue, 25 Oct 2022 23:03:26 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a63dadc3-54bb-4b1b-bd65-3599029992d2?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4831f548-dd3a-4f2b-8c0f-fc71bc913202?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "233d7997-75a8-424d-80d7-efe44c394602", + "x-ms-correlation-request-id": "24b692b7-5957-49db-a065-cd612fd5bb81", "x-ms-ratelimit-remaining-subscription-deletes": "14999", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121156Z:233d7997-75a8-424d-80d7-efe44c394602", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230327Z:24b692b7-5957-49db-a065-cd612fd5bb81", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a63dadc3-54bb-4b1b-bd65-3599029992d2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4831f548-dd3a-4f2b-8c0f-fc71bc913202?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -16769,7 +19155,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:12:26 GMT", + "Date": "Tue, 25 Oct 2022 23:03:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -16777,17 +19163,57 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04fc6385-a54b-41e0-914a-dfe31b3472d7", - "x-ms-ratelimit-remaining-subscription-reads": "11998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121226Z:04fc6385-a54b-41e0-914a-dfe31b3472d7", + "x-ms-correlation-request-id": "c5a0dcad-9c49-40f2-9447-00ce1e79d5f1", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230327Z:c5a0dcad-9c49-40f2-9447-00ce1e79d5f1", + "X-Powered-By": "ASP.NET" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4831f548-dd3a-4f2b-8c0f-fc71bc913202", + "name": "4831f548-dd3a-4f2b-8c0f-fc71bc913202", + "status": "Deleting", + "startTime": "2022-10-25T23:03:26.900237Z", + "endTime": "0001-01-01T00:00:00Z", + "percentComplete": 0.0, + "properties": { + "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4831f548-dd3a-4f2b-8c0f-fc71bc913202?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 23:03:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8d594854-c4fc-4d6b-b44a-5a87ea6e9392", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230357Z:8d594854-c4fc-4d6b-b44a-5a87ea6e9392", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a63dadc3-54bb-4b1b-bd65-3599029992d2", - "name": "a63dadc3-54bb-4b1b-bd65-3599029992d2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4831f548-dd3a-4f2b-8c0f-fc71bc913202", + "name": "4831f548-dd3a-4f2b-8c0f-fc71bc913202", "status": "Succeeded", - "startTime": "2022-09-19T12:11:56.3033307Z", - "endTime": "2022-09-19T12:11:57.2095754Z", + "startTime": "2022-10-25T23:03:26.900237Z", + "endTime": "2022-10-25T23:03:28.0878414Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1" @@ -16795,13 +19221,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a63dadc3-54bb-4b1b-bd65-3599029992d2?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4831f548-dd3a-4f2b-8c0f-fc71bc913202?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -16809,7 +19235,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:12:26 GMT", + "Date": "Tue, 25 Oct 2022 23:03:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -16817,22 +19243,22 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a43ed116-0165-4f48-b72f-81dc4d44ea9d", - "x-ms-ratelimit-remaining-subscription-reads": "11997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121227Z:a43ed116-0165-4f48-b72f-81dc4d44ea9d", + "x-ms-correlation-request-id": "6090fdbd-219c-4db2-a492-8e3873a707fa", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230357Z:6090fdbd-219c-4db2-a492-8e3873a707fa", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1", "name": "sdk-py-tests-acc-1-b2-86eb264b/sdk-py-tests-pool-1", "type": "Microsoft.NetApp/netAppAccounts/capacityPools", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A11%3A56.3002259Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T23%3A03%3A26.9025094Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:40:28.1532692Z" + "CreatedOnDate": "2022-10-25T22:32:58.1703180Z" }, "properties": { - "poolId": "6df5feb3-c1da-ac0d-f471-e20b9b4c9a21", + "poolId": "991b8608-5139-9f8b-67da-a062eae36741", "serviceLevel": "Premium", "size": 4398046511104, "vendorID": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b/capacityPools/sdk-py-tests-pool-1", @@ -16846,10 +19272,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:40:29.3403523Z", + "createdAt": "2022-10-25T22:32:59.1392759Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:40:29.3403523Z" + "lastModifiedAt": "2022-10-25T22:32:59.1392759Z" } } }, @@ -16861,20 +19287,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:12:37 GMT", + "Date": "Tue, 25 Oct 2022 23:04:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bad91bf1-b5bb-4da5-a80d-9d8732791fe5", + "x-ms-correlation-request-id": "6af7aceb-6ceb-4a25-bed0-153ac0d9d713", "x-ms-ratelimit-remaining-subscription-deletes": "14998", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121237Z:bad91bf1-b5bb-4da5-a80d-9d8732791fe5" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230408Z:6af7aceb-6ceb-4a25-bed0-153ac0d9d713" }, "ResponseBody": null }, @@ -16886,20 +19312,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:12:47 GMT", + "Date": "Tue, 25 Oct 2022 23:04:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d1a6146a-9b82-4080-a60f-591f876bb0d6", + "x-ms-correlation-request-id": "0c64b402-8f05-42f8-ae0f-e8340453b77c", "x-ms-ratelimit-remaining-subscription-deletes": "14997", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121248Z:d1a6146a-9b82-4080-a60f-591f876bb0d6" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230419Z:0c64b402-8f05-42f8-ae0f-e8340453b77c" }, "ResponseBody": null }, @@ -16911,20 +19337,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:12:57 GMT", + "Date": "Tue, 25 Oct 2022 23:04:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd655a9c-22f4-437e-a53d-45a0b7d0bea5", + "x-ms-correlation-request-id": "ab862dfe-9f0b-40b4-a0f2-aa2a73326ae2", "x-ms-ratelimit-remaining-subscription-deletes": "14996", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121258Z:cd655a9c-22f4-437e-a53d-45a0b7d0bea5" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230429Z:ab862dfe-9f0b-40b4-a0f2-aa2a73326ae2" }, "ResponseBody": null }, @@ -16936,20 +19362,20 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 204, "ResponseHeaders": { "Cache-Control": "no-cache", - "Date": "Mon, 19 Sep 2022 12:13:08 GMT", + "Date": "Tue, 25 Oct 2022 23:04:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1069360-3f06-499c-8db3-634f4e0e98c7", + "x-ms-correlation-request-id": "c4e5fc8d-7229-477f-985f-9c76b7d62f05", "x-ms-ratelimit-remaining-subscription-deletes": "14995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121308Z:f1069360-3f06-499c-8db3-634f4e0e98c7" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230439Z:c4e5fc8d-7229-477f-985f-9c76b7d62f05" }, "ResponseBody": null }, @@ -16960,7 +19386,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, @@ -16968,14 +19394,14 @@ "Cache-Control": "no-cache", "Content-Length": "291", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:13:18 GMT", + "Date": "Tue, 25 Oct 2022 23:04:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97588c57-a6c1-41af-af8e-6765f61af5f0", + "x-ms-correlation-request-id": "f97a17d6-26e4-496c-83ca-b5ce9e1f01e3", "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121318Z:97588c57-a6c1-41af-af8e-6765f61af5f0" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230449Z:f97a17d6-26e4-496c-83ca-b5ce9e1f01e3" }, "ResponseBody": { "error": { @@ -16992,36 +19418,36 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/35b579d1-8935-4c23-87c7-f710ae68006a?api-version=2022-05-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4be9e691-5c76-4d55-b046-4a9380e32cd5?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:13:19 GMT", + "Date": "Tue, 25 Oct 2022 23:04:50 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/35b579d1-8935-4c23-87c7-f710ae68006a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4be9e691-5c76-4d55-b046-4a9380e32cd5?api-version=2022-05-01\u0026operationResultResponseType=Location", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "764ff56c-de75-46bb-8bfd-bb0016a130cc", + "x-ms-correlation-request-id": "f97d2ae9-8c2f-4467-8955-5eaf24b726de", "x-ms-ratelimit-remaining-subscription-deletes": "14994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121320Z:764ff56c-de75-46bb-8bfd-bb0016a130cc", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230451Z:f97d2ae9-8c2f-4467-8955-5eaf24b726de", "X-Powered-By": "ASP.NET" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/35b579d1-8935-4c23-87c7-f710ae68006a?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4be9e691-5c76-4d55-b046-4a9380e32cd5?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17029,7 +19455,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:13:49 GMT", + "Date": "Tue, 25 Oct 2022 23:04:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -17037,17 +19463,17 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1625968-c2e1-4b0b-93ec-316ef4c2257e", - "x-ms-ratelimit-remaining-subscription-reads": "11995", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121350Z:b1625968-c2e1-4b0b-93ec-316ef4c2257e", + "x-ms-correlation-request-id": "a8a9aa1c-fef3-44bc-9301-975949774777", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230451Z:a8a9aa1c-fef3-44bc-9301-975949774777", "X-Powered-By": "ASP.NET" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/35b579d1-8935-4c23-87c7-f710ae68006a", - "name": "35b579d1-8935-4c23-87c7-f710ae68006a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4be9e691-5c76-4d55-b046-4a9380e32cd5", + "name": "4be9e691-5c76-4d55-b046-4a9380e32cd5", "status": "Succeeded", - "startTime": "2022-09-19T12:13:20.4171834Z", - "endTime": "2022-09-19T12:13:20.4640871Z", + "startTime": "2022-10-25T23:04:51.3890308Z", + "endTime": "2022-10-25T23:04:51.4202762Z", "percentComplete": 100.0, "properties": { "resourceName": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b" @@ -17055,13 +19481,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/35b579d1-8935-4c23-87c7-f710ae68006a?api-version=2022-05-01\u0026operationResultResponseType=Location", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4be9e691-5c76-4d55-b046-4a9380e32cd5?api-version=2022-05-01\u0026operationResultResponseType=Location", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -17069,7 +19495,7 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:13:50 GMT", + "Date": "Tue, 25 Oct 2022 23:04:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Server": "Microsoft-IIS/10.0", @@ -17077,19 +19503,19 @@ "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9bb3631-25f5-4e04-8cde-26293fea486f", - "x-ms-ratelimit-remaining-subscription-reads": "11994", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121351Z:c9bb3631-25f5-4e04-8cde-26293fea486f", + "x-ms-correlation-request-id": "72f9bf57-ab4f-4bc3-aa68-047f3c636792", + "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230451Z:72f9bf57-ab4f-4bc3-aa68-047f3c636792", "X-Powered-By": "ASP.NET" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b", "name": "sdk-py-tests-acc-1-b2-86eb264b", "type": "Microsoft.NetApp/netAppAccounts", - "etag": "W/\u0022datetime\u00272022-09-19T12%3A13%3A20.412747Z\u0027\u0022", + "etag": "W/\u0022datetime\u00272022-10-25T23%3A04%3A51.3804366Z\u0027\u0022", "location": "westus2", "tags": { - "CreatedOnDate": "2022-09-19T11:39:53.2039976Z" + "CreatedOnDate": "2022-10-25T22:32:53.6501295Z" }, "properties": { "encryption": { @@ -17100,10 +19526,10 @@ "systemData": { "createdBy": "00000000-0000-0000-0000-000000000000", "createdByType": "Application", - "createdAt": "2022-09-19T11:39:54.384695Z", + "createdAt": "2022-10-25T22:32:54.4809308Z", "lastModifiedBy": "00000000-0000-0000-0000-000000000000", "lastModifiedByType": "Application", - "lastModifiedAt": "2022-09-19T11:39:54.384695Z" + "lastModifiedAt": "2022-10-25T22:32:54.4809308Z" } } }, @@ -17114,50 +19540,52 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-mgmt-netapp/9.0.0 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-mgmt-netapp/9.0.1 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "257", + "Content-Length": "258", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 12:13:50 GMT", + "Date": "Tue, 25 Oct 2022 23:04:51 GMT", "Expires": "-1", "Pragma": "no-cache", + "Server": "Microsoft-IIS/10.0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1eaaf4f3-9a62-43ee-a6ca-39ab8d1b5f9b", - "x-ms-failure-cause": "gateway", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121351Z:1eaaf4f3-9a62-43ee-a6ca-39ab8d1b5f9b" + "x-ms-correlation-request-id": "5c91d983-cf79-4cc0-97dc-e5330f51aae9", + "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230452Z:5c91d983-cf79-4cc0-97dc-e5330f51aae9", + "X-Powered-By": "ASP.NET" }, "ResponseBody": { "error": { "code": "ResourceNotFound", - "message": "The Resource \u0027Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b\u0027 under resource group \u0027sdk-python-tests-rg-tmp\u0027 was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix" + "message": "The resource with identifier \u0027/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1-b2-86eb264b\u0027 is not found." } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-westus2-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/db8be7f3-de65-4cae-b446-c997dfccd869?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f2cf4b95-69f7-4ac4-93f7-670e09ecf09a?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:13:51 GMT", + "Date": "Tue, 25 Oct 2022 23:04:52 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/db8be7f3-de65-4cae-b446-c997dfccd869?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/f2cf4b95-69f7-4ac4-93f7-670e09ecf09a?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -17166,33 +19594,101 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "4e5b2a0f-f50f-409b-a1bb-3c0e8f50fcf0", - "x-ms-correlation-request-id": "7426a8e7-4597-4dd0-a9ca-11d14d983742", + "x-ms-arm-service-request-id": "7c8ff48f-7bc2-4c2f-8bea-e4132e0f3fbe", + "x-ms-correlation-request-id": "87a97b7c-45f2-4991-b013-6860f2bbaefb", "x-ms-ratelimit-remaining-subscription-deletes": "14993", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121352Z:7426a8e7-4597-4dd0-a9ca-11d14d983742" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230453Z:87a97b7c-45f2-4991-b013-6860f2bbaefb" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f2cf4b95-69f7-4ac4-93f7-670e09ecf09a?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 23:04:52 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "cd548823-f0a8-4294-8a1f-37bf026f3654", + "x-ms-correlation-request-id": "c09232cd-5788-4b22-b7a1-9f6eb5fc018c", + "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230453Z:c09232cd-5788-4b22-b7a1-9f6eb5fc018c" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/f2cf4b95-69f7-4ac4-93f7-670e09ecf09a?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/f2cf4b95-69f7-4ac4-93f7-670e09ecf09a?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 23:04:53 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operationResults/f2cf4b95-69f7-4ac4-93f7-670e09ecf09a?api-version=2022-05-01", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "7c8ff48f-7bc2-4c2f-8bea-e4132e0f3fbe", + "x-ms-correlation-request-id": "87a97b7c-45f2-4991-b013-6860f2bbaefb", + "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230454Z:cb4a0f02-8e8c-452c-8bc6-ced699e7c927" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b?api-version=2022-01-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-python-tests-rg-R-tmp/providers/Microsoft.Network/virtualNetworks/sdk-python-tests-vnet-R-b2-86eb264b?api-version=2022-05-01", "RequestMethod": "DELETE", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-azure-mgmt-network/21.0.1 Python/3.8.10 (macOS-12.5.1-x86_64-i386-64bit)" + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" }, "RequestBody": null, "StatusCode": 202, "ResponseHeaders": { "Azure-AsyncNotification": "Enabled", - "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/f55f8d44-3239-4952-9b37-41062dcc4a00?api-version=2022-01-01", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3cc52b8f-2954-4e37-8148-6bf63d3a7437?api-version=2022-05-01", "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Mon, 19 Sep 2022 12:13:52 GMT", + "Date": "Tue, 25 Oct 2022 23:04:54 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operationResults/f55f8d44-3239-4952-9b37-41062dcc4a00?api-version=2022-01-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operationResults/3cc52b8f-2954-4e37-8148-6bf63d3a7437?api-version=2022-05-01", "Pragma": "no-cache", "Retry-After": "10", "Server": [ @@ -17201,10 +19697,78 @@ ], "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "X-Content-Type-Options": "nosniff", - "x-ms-arm-service-request-id": "7be0d7cf-668a-4175-90b4-d2318ccf6c78", - "x-ms-correlation-request-id": "9a9ae259-5d09-42e3-9794-a6e06c88bd57", + "x-ms-arm-service-request-id": "1c1adef2-724c-4664-a330-336f9a8e14e2", + "x-ms-correlation-request-id": "cc4cf889-a4a5-410d-b98b-cf6b01ceb6b4", "x-ms-ratelimit-remaining-subscription-deletes": "14992", - "x-ms-routing-request-id": "WESTEUROPE:20220919T121353Z:9a9ae259-5d09-42e3-9794-a6e06c88bd57" + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230455Z:cc4cf889-a4a5-410d-b98b-cf6b01ceb6b4" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3cc52b8f-2954-4e37-8148-6bf63d3a7437?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 23:04:54 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "d8885daa-aa9e-4d4e-8955-25d5f0a9b700", + "x-ms-correlation-request-id": "a31e2f77-65c0-44d7-b374-732447405fd5", + "x-ms-ratelimit-remaining-subscription-reads": "11841", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230455Z:a31e2f77-65c0-44d7-b374-732447405fd5" + }, + "ResponseBody": { + "status": "Succeeded" + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operationResults/3cc52b8f-2954-4e37-8148-6bf63d3a7437?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-azure-mgmt-network/22.0.0 Python/3.9.5 (Windows-10-10.0.19044-SP0)" + }, + "RequestBody": null, + "StatusCode": 204, + "ResponseHeaders": { + "Azure-AsyncNotification": "Enabled", + "Azure-AsyncOperation": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operations/3cc52b8f-2954-4e37-8148-6bf63d3a7437?api-version=2022-05-01", + "Cache-Control": "no-cache", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 25 Oct 2022 23:04:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2/operationResults/3cc52b8f-2954-4e37-8148-6bf63d3a7437?api-version=2022-05-01", + "Pragma": "no-cache", + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "X-Content-Type-Options": "nosniff", + "x-ms-arm-service-request-id": "1c1adef2-724c-4664-a330-336f9a8e14e2", + "x-ms-correlation-request-id": "cc4cf889-a4a5-410d-b98b-cf6b01ceb6b4", + "x-ms-ratelimit-remaining-subscription-reads": "11840", + "x-ms-routing-request-id": "FRANCESOUTH:20221025T230455Z:c1cef9d7-75f5-4eea-9b64-04eed74fdb00" }, "ResponseBody": null } diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_backup.py b/sdk/netapp/azure-mgmt-netapp/tests/test_backup.py index 745e1af3f85e..6b351b9af1a9 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/test_backup.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/test_backup.py @@ -170,7 +170,7 @@ def test_get_backup_by_name(self): clean_up(self, account_name=ACCOUNT1, volume_name=volumeName1, vnet=VNETNAME, live=self.is_live) - @pytest.mark.skip(reason="CBS is not working properly on any region") + #@pytest.mark.skip(reason="CBS is not working properly on any region") @recorded_by_proxy def test_update_backup(self): set_bodiless_matcher() @@ -189,7 +189,7 @@ def test_update_backup(self): clean_up(self, account_name=ACCOUNT1, volume_name=volumeName1, backup_name=backup1, vnet=VNETNAME, live=self.is_live) - @pytest.mark.skip(reason="CBS is not working properly on any region") + #@pytest.mark.skip(reason="CBS is not working properly on any region") @recorded_by_proxy def test_get_backup_status(self): set_bodiless_matcher() diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_backup_policies.py b/sdk/netapp/azure-mgmt-netapp/tests/test_backup_policies.py index 4bd918f8baa7..e847b1efcd1a 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/test_backup_policies.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/test_backup_policies.py @@ -75,10 +75,12 @@ def test_create_delete_backup_policy(self): assert len(list(backup_policies_list)) == 1 delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1, live=self.is_live) - + if self.is_live: + time.sleep(50) backup_policies_list = self.client.backup_policies.list(TEST_RG, ACCOUNT1) assert len(list(backup_policies_list)) == 0 - + if self.is_live: + time.sleep(5) delete_account(self.client, TEST_RG, ACCOUNT1, live=self.is_live) @recorded_by_proxy @@ -96,10 +98,12 @@ def test_list_backup_policies(self): delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1, live=self.is_live) delete_backup_policy(self.client, TEST_BACKUP_POLICY_2, account_name=ACCOUNT1, live=self.is_live) - + if self.is_live: + time.sleep(50) backup_policies_list = self.client.backup_policies.list(TEST_RG, ACCOUNT1) assert len(list(backup_policies_list)) == 0 - + if self.is_live: + time.sleep(5) delete_account(self.client, TEST_RG, ACCOUNT1) @recorded_by_proxy @@ -111,6 +115,9 @@ def test_get_backup_policy_by_name(self): assert backup_policy.name == ACCOUNT1 + "/" + TEST_BACKUP_POLICY_1 delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1, live=self.is_live) + if self.is_live: + time.sleep(50) + delete_account(self.client, TEST_RG, ACCOUNT1) @recorded_by_proxy @@ -129,4 +136,7 @@ def test_update_backup_policies(self): assert backup_policy.weekly_backups_to_keep == 1 delete_backup_policy(self.client, TEST_BACKUP_POLICY_1, account_name=ACCOUNT1, live=self.is_live) + if self.is_live: + time.sleep(50) + delete_account(self.client, TEST_RG, ACCOUNT1) diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_net_app_resource_quota_limits.py b/sdk/netapp/azure-mgmt-netapp/tests/test_net_app_resource_quota_limits.py index 8e8b109ab470..3ff8bd75f594 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/test_net_app_resource_quota_limits.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/test_net_app_resource_quota_limits.py @@ -15,3 +15,4 @@ def test_list_resource_quota_limit(self): limits = self.client.net_app_resource_quota_limits.list(LOCATION) assert limits is not None + assert len(list(limits)) > 0 diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot_policies.py b/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot_policies.py index 67b058397f34..0a8ab477b331 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot_policies.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot_policies.py @@ -70,7 +70,8 @@ def test_create_delete_snapshot_policy(self): snapshot_policies_list = self.client.snapshot_policies.list(TEST_RG, ACCOUNT1) assert len(list(snapshot_policies_list)) == 0 - + if self.is_live: + time.sleep(50) delete_account(self.client, TEST_RG, ACCOUNT1, live=self.is_live) @recorded_by_proxy @@ -93,6 +94,8 @@ def test_list_snapshot_policies(self): snapshot_policies_list = self.client.snapshot_policies.list(TEST_RG, ACCOUNT1) assert len(list(snapshot_policies_list)) == 0 + if self.is_live: + time.sleep(50) delete_account(self.client, TEST_RG, ACCOUNT1) @@ -105,6 +108,8 @@ def test_get_snapshot_policy_by_name(self): assert snapshot_policy.name == ACCOUNT1 + "/" + TEST_SNAPSHOT_POLICY_1 delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1, live=self.is_live) + if self.is_live: + time.sleep(50) delete_account(self.client, TEST_RG, ACCOUNT1) @recorded_by_proxy @@ -126,6 +131,8 @@ def test_update_snapshot_policies(self): assert snapshot_policy.daily_schedule.minute == 50 delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1, live=self.is_live) + if self.is_live: + time.sleep(50) delete_account(self.client, TEST_RG, ACCOUNT1) @recorded_by_proxy @@ -152,6 +159,8 @@ def test_assign_snapshot_policy_to_volume(self): delete_volume(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, volumeName1, live=self.is_live) delete_snapshot_policy(self.client, TEST_SNAPSHOT_POLICY_1, account_name=ACCOUNT1, live=self.is_live) delete_pool(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, live=self.is_live) + if self.is_live: + time.sleep(50) delete_account(self.client, TEST_RG, ACCOUNT1, live=self.is_live) if self.is_live: self.network_client.virtual_networks.begin_delete(TEST_RG, VNETNAME) diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py b/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py index 378e6b1130e7..6d7f5b8ed5a4 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py @@ -378,8 +378,8 @@ def test_volume_replication(self): delete_pool(self.client, TEST_RG, ACCOUNT1, TEST_POOL_1, live=self.is_live) delete_account(self.client, TEST_RG, ACCOUNT1, live=self.is_live) if self.is_live: - self.network_client.virtual_networks.begin_delete(TEST_RG, VNETNAME) - self.network_client.virtual_networks.begin_delete(TEST_REPL_REMOTE_RG, dpVNET_NAME) + self.network_client.virtual_networks.begin_delete(TEST_RG, VNETNAME).wait() + self.network_client.virtual_networks.begin_delete(TEST_REPL_REMOTE_RG, dpVNET_NAME).wait() @recorded_by_proxy def test_get_volume_by_name(self):